/* style/blog-how-to-choose-safe-cash-out-slots.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-how-to-choose-safe-cash-out-slots {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-color);
}

.page-blog-how-to-choose-safe-cash-out-slots__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as shared.css handles body padding */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-blog-how-to-choose-safe-cash-out-slots__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed for visual balance */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-how-to-choose-safe-cash-out-slots__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text contrast, but not changing color */
}

.page-blog-how-to-choose-safe-cash-out-slots__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-main);
}

.page-blog-how-to-choose-safe-cash-out-slots__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-safe-cash-out-slots__intro-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-choose-safe-cash-out-slots__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-how-to-choose-safe-cash-out-slots__btn-primary,
.page-blog-how-to-choose-safe-cash-out-slots__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 300px; /* Limit button width */
    width: 100%; /* Ensure it takes full width when needed */
}

.page-blog-how-to-choose-safe-cash-out-slots__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for primary button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-safe-cash-out-slots__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-safe-cash-out-slots__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-safe-cash-out-slots__btn-secondary:hover {
    background: rgba(var(--gold-color), 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-safe-cash-out-slots__content-section {
    padding: 60px 0;
}

.page-blog-how-to-choose-safe-cash-out-slots__dark-bg {
    background-color: var(--background-color);
    color: var(--text-main);
}

.page-blog-how-to-choose-safe-cash-out-slots__light-bg {
    background-color: #111e17; /* A slightly lighter dark green for contrast */
    color: var(--text-main);
}

.page-blog-how-to-choose-safe-cash-out-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-how-to-choose-safe-cash-out-slots__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-how-to-choose-safe-cash-out-slots__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold-color);
    border-radius: 2px;
}

.page-blog-how-to-choose-safe-cash-out-slots__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: justify;
}

.page-blog-how-to-choose-safe-cash-out-slots__paragraph a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-how-to-choose-safe-cash-out-slots__paragraph a:hover {
    text-decoration: underline;
}

.page-blog-how-to-choose-safe-cash-out-slots__feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-blog-how-to-choose-safe-cash-out-slots__feature-card:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-choose-safe-cash-out-slots__card-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-how-to-choose-safe-cash-out-slots__card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-blog-how-to-choose-safe-cash-out-slots__cta-buttons--center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-blog-how-to-choose-safe-cash-out-slots__error-list {
    list-style: none;
    padding: 0;
}

.page-blog-how-to-choose-safe-cash-out-slots__list-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-choose-safe-cash-out-slots__list-item-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-blog-how-to-choose-safe-cash-out-slots__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: var(--deep-green-color);
}

.page-blog-how-to-choose-safe-cash-out-slots__cta-section .page-blog-how-to-choose-safe-cash-out-slots__section-title {
    color: var(--gold-color);
}

.page-blog-how-to-choose-safe-cash-out-slots__cta-section .page-blog-how-to-choose-safe-cash-out-slots__paragraph {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.page-blog-how-to-choose-safe-cash-out-slots__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-section {
    padding: 60px 0;
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; /* For details/summary */
    position: relative;
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--gold-color);
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-item[open] .page-blog-how-to-choose-safe-cash-out-slots__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    border-top: 1px solid var(--divider-color);
}

.page-blog-how-to-choose-safe-cash-out-slots__faq-item:not([open]) .page-blog-how-to-choose-safe-cash-out-slots__faq-answer {
    display: none;
}

/* Universal image responsiveness */
.page-blog-how-to-choose-safe-cash-out-slots img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-safe-cash-out-slots__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }

    .page-blog-how-to-choose-safe-cash-out-slots__section-title {
        font-size: 2em;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__feature-card,
    .page-blog-how-to-choose-safe-cash-out-slots__list-item {
        padding: 25px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__card-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-safe-cash-out-slots {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__hero-content {
        padding: 15px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 10px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__intro-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* Buttons and button containers */
    .page-blog-how-to-choose-safe-cash-out-slots__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__btn-primary,
    .page-blog-how-to-choose-safe-cash-out-slots__btn-secondary,
    .page-blog-how-to-choose-safe-cash-out-slots a[class*="button"],
    .page-blog-how-to-choose-safe-cash-out-slots a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__cta-buttons--center {
        padding: 0 15px;
    }

    /* General images and containers */
    .page-blog-how-to-choose-safe-cash-out-slots img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__container,
    .page-blog-how-to-choose-safe-cash-out-slots__content-section,
    .page-blog-how-to-choose-safe-safe-cash-out-slots__feature-card,
    .page-blog-how-to-choose-safe-cash-out-slots__list-item,
    .page-blog-how-to-choose-safe-cash-out-slots__cta-section,
    .page-blog-how-to-choose-safe-cash-out-slots__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__card-title,
    .page-blog-how-to-choose-safe-cash-out-slots__list-item-title {
        font-size: 1.4em;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__paragraph {
        font-size: 1em;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-blog-how-to-choose-safe-cash-out-slots__faq-answer {
        padding: 0 20px 15px 20px;
    }
}