/* style/promotions-first-deposit-bonus.css */

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

/* Base styles for the page content */
.page-promotions-first-deposit-bonus {
    color: var(--color-text-main); /* Light text for dark body background */
    background-color: var(--color-background); /* Dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space above footer */
}

.page-promotions-first-deposit-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-first-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-promotions-first-deposit-bonus__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -80px; /* Overlap image slightly for visual appeal, but text is below image in DOM */
    position: relative;
    z-index: 2;
    background-color: var(--color-card-bg); /* Dark background for content */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
}

.page-promotions-first-deposit-bonus__main-title {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem); /* Responsive font size */
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-promotions-first-deposit-bonus__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-first-deposit-bonus__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-promotions-first-deposit-bonus__intro-section,
.page-promotions-first-deposit-bonus__conditions-section,
.page-promotions-first-deposit-bonus__how-to-claim-section,
.page-promotions-first-deposit-bonus__benefits-section,
.page-promotions-first-deposit-bonus__faq-section,
.page-promotions-first-deposit-bonus__call-to-action-section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-first-deposit-bonus__section-title {
    font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-first-deposit-bonus__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

.page-promotions-first-deposit-bonus p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-promotions-first-deposit-bonus strong {
    color: var(--color-text-main);
}

.page-promotions-first-deposit-bonus__content-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block; /* Ensure it's treated as a block for margin auto */
}

/* Lists */
.page-promotions-first-deposit-bonus__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-promotions-first-deposit-bonus__list li {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--color-text-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__list li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
    color: var(--color-gold);
}

.page-promotions-first-deposit-bonus__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions-first-deposit-bonus__steps-list li {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    color: var(--color-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__steps-list li strong {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    background-color: var(--color-deep-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-promotions-first-deposit-bonus__how-to-claim-section {
    counter-reset: step-counter;
}

/* Secondary CTA Button */
.page-promotions-first-deposit-bonus__cta-button--secondary {
    background: var(--color-gold);
    color: var(--color-background);
    margin-top: 20px;
}

.page-promotions-first-deposit-bonus__cta-button--secondary:hover {
    background: linear-gradient(180deg, #F2C14E 0%, #D4A538 100%);
}

/* Dark Section */
.page-promotions-first-deposit-bonus__dark-section {
    background-color: var(--color-deep-green);
    color: var(--color-text-main);
}

.page-promotions-first-deposit-bonus__dark-section .page-promotions-first-deposit-bonus__section-title {
    color: var(--color-gold);
}

.page-promotions-first-deposit-bonus__dark-section .page-promotions-first-deposit-bonus__section-title::after {
    background-color: var(--color-primary);
}

.page-promotions-first-deposit-bonus__dark-section p {
    color: var(--color-text-secondary);
}

.page-promotions-first-deposit-bonus__dark-section .page-promotions-first-deposit-bonus__list li {
    background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent dark green */
    border-color: var(--color-primary);
}

/* Benefits Section */
.page-promotions-first-deposit-bonus__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__benefit-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__benefit-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-promotions-first-deposit-bonus__benefit-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Tertiary CTA Button (ghost style) */
.page-promotions-first-deposit-bonus__cta-button--tertiary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.page-promotions-first-deposit-bonus__cta-button--tertiary:hover {
    background: var(--color-primary);
    color: var(--color-text-main);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-promotions-first-deposit-bonus__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-promotions-first-deposit-bonus__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    list-style: none; /* Remove default marker */
    position: relative;
    user-select: none;
}

.page-promotions-first-deposit-bonus__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-promotions-first-deposit-bonus__faq-question {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-first-deposit-bonus__faq-qtext {
    color: var(--color-primary);
}

.page-promotions-first-deposit-bonus__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-item[open] .page-promotions-first-deposit-bonus__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-first-deposit-bonus__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-divider);
}

.page-promotions-first-deposit-bonus__faq-answer p {
    margin-bottom: 0;
}

/* Call to Action Section */
.page-promotions-first-deposit-bonus__call-to-action-section {
    padding: 80px 0;
}

.page-promotions-first-deposit-bonus__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__cta-button--ghost {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    box-shadow: none;
}

.page-promotions-first-deposit-bonus__cta-button--ghost:hover {
    background: var(--color-gold);
    color: var(--color-background);
}


/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions-first-deposit-bonus__hero-content {
        margin-top: -60px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__hero-image {
        max-height: 350px;
    }

    .page-promotions-first-deposit-bonus__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
    }

    .page-promotions-first-deposit-bonus__main-title {
        font-size: clamp(1.8rem, 6vw + 1rem, 2.5rem);
    }

    .page-promotions-first-deposit-bonus__description {
        font-size: 1rem;
    }

    .page-promotions-first-deposit-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-first-deposit-bonus__section-title {
        font-size: clamp(1.5rem, 5vw + 1rem, 2rem);
    }

    .page-promotions-first-deposit-bonus__intro-section,
    .page-promotions-first-deposit-bonus__conditions-section,
    .page-promotions-first-deposit-bonus__how-to-claim-section,
    .page-promotions-first-deposit-bonus__benefits-section,
    .page-promotions-first-deposit-bonus__faq-section,
    .page-promotions-first-deposit-bonus__call-to-action-section {
        padding: 40px 0;
    }

    .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Images responsiveness */
    .page-promotions-first-deposit-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Video responsiveness (if any, though none currently) */
    .page-promotions-first-deposit-bonus video,
    .page-promotions-first-deposit-bonus__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-first-deposit-bonus__video-section,
    .page-promotions-first-deposit-bonus__video-container,
    .page-promotions-first-deposit-bonus__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions-first-deposit-bonus__video-section {
        padding-top: 10px !important; /* Small top padding for video section */
    }

    .page-promotions-first-deposit-bonus__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .page-promotions-first-deposit-bonus__list li,
    .page-promotions-first-deposit-bonus__steps-list li {
        padding: 15px;
    }

    .page-promotions-first-deposit-bonus__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-promotions-first-deposit-bonus__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__hero-content {
        margin-top: -20px;
        padding: 20px 10px;
    }

    .page-promotions-first-deposit-bonus__main-title {
        font-size: clamp(1.5rem, 8vw + 1rem, 2rem);
    }

    .page-promotions-first-deposit-bonus__cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .page-promotions-first-deposit-bonus__section-title {
        font-size: clamp(1.3rem, 7vw + 1rem, 1.8rem);
    }

    .page-promotions-first-deposit-bonus__benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Contrast fix classes */
.page-promotions-first-deposit-bonus__contrast-fix {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
}

.page-promotions-first-deposit-bonus__text-contrast-fix {
    color: #333333 !important;
    text-shadow: none !important;
}