/* style/promotions-welcome-bonus.css */

/* Base styles for the page content */
.page-promotions-welcome-bonus {
    color: var(--text-main);
    background-color: var(--bg-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions-welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

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

.page-promotions-welcome-bonus__hero-content {
    position: relative; /* Changed from absolute to relative for "image above text" rule */
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg-color);
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: -80px; /* Overlap slightly for visual appeal, but text is below image */
    z-index: 1;
}

.page-promotions-welcome-bonus__main-title {
    font-size: clamp(2em, 5vw, 3em);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-welcome-bonus__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonus__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions-welcome-bonus__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-promotions-welcome-bonus__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.page-promotions-welcome-bonus__btn-secondary:hover {
    background: rgba(var(--border-color-rgb), 0.2);
    transform: translateY(-2px);
}

/* Section Titles */
.page-promotions-welcome-bonus__section-title {
    font-size: 2.2em;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 40px;
}

/* Content Sections */
.page-promotions-welcome-bonus__offer-intro-section,
.page-promotions-welcome-bonus__claim-guide-section,
.page-promotions-welcome-bonus__terms-section,
.page-promotions-welcome-bonus__why-choose-us-section,
.page-promotions-welcome-bonus__faq-section,
.page-promotions-welcome-bonus__conclusion-section {
    padding: 60px 0;
}

.page-promotions-welcome-bonus__text-content {
    font-size: 1.05em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-welcome-bonus__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Steps List */
.page-promotions-welcome-bonus__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-welcome-bonus__step-item {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-promotions-welcome-bonus__step-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-welcome-bonus__step-item p {
    color: var(--text-secondary);
    font-size: 1em;
}

/* Terms & Conditions List */
.page-promotions-welcome-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-welcome-bonus__terms-item {
    background-color: var(--card-bg-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--deep-green);
    color: var(--text-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__terms-item strong {
    color: var(--text-main);
}

/* Features Grid */
.page-promotions-welcome-bonus__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-welcome-bonus__feature-card {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-promotions-welcome-bonus__feature-title {
    font-size: 1.4em;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-welcome-bonus__feature-card p {
    color: var(--text-secondary);
    font-size: 0.95em;
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-list {
    margin-top: 40px;
}

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

.page-promotions-welcome-bonus__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none; /* Hide default marker */
    color: var(--text-main);
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions-welcome-bonus__faq-item summary:hover {
    background-color: rgba(var(--deep-green-rgb), 0.2);
}

.page-promotions-welcome-bonus__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--glow-color);
}

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

.page-promotions-welcome-bonus__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 1em;
}

/* Variables for colors */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient-start: #2AD16F;
    --button-gradient-end: #13994A;
    --card-bg-color: #11271B;
    --bg-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
    
    /* RGB values for rgba usage */
    --primary-color-rgb: 17, 168, 78;
    --secondary-color-rgb: 34, 199, 104;
    --card-bg-color-rgb: 17, 39, 27;
    --bg-color-rgb: 8, 22, 15;
    --text-main-rgb: 242, 255, 246;
    --text-secondary-rgb: 167, 217, 184;
    --border-color-rgb: 46, 122, 78;
    --glow-color-rgb: 87, 227, 141;
    --gold-color-rgb: 242, 193, 78;
    --divider-color-rgb: 30, 58, 42;
    --deep-green-rgb: 10, 75, 44;
}

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

    .page-promotions-welcome-bonus__main-title {
        font-size: clamp(1.8em, 4.5vw, 2.5em);
    }

    .page-promotions-welcome-bonus__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions-welcome-bonus__steps-list,
    .page-promotions-welcome-bonus__features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-promotions-welcome-bonus__hero-section {
        padding-top: 10px !important;
    }
    .page-promotions-welcome-bonus__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
    }

    .page-promotions-welcome-bonus__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-promotions-welcome-bonus__hero-description {
        font-size: 1em;
    }

    .page-promotions-welcome-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-welcome-bonus__btn-primary,
    .page-promotions-welcome-bonus__btn-secondary {
        padding: 12px 20px;
        font-size: 0.95em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-welcome-bonus__section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
    }

    .page-promotions-welcome-bonus__offer-intro-section,
    .page-promotions-welcome-bonus__claim-guide-section,
    .page-promotions-welcome-bonus__terms-section,
    .page-promotions-welcome-bonus__why-choose-us-section,
    .page-promotions-welcome-bonus__faq-section,
    .page-promotions-welcome-bonus__conclusion-section {
        padding: 40px 0;
    }

    .page-promotions-welcome-bonus__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-welcome-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-welcome-bonus__content-area,
    .page-promotions-welcome-bonus__card,
    .page-promotions-welcome-bonus__section,
    .page-promotions-welcome-bonus__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-welcome-bonus__video-section {
        padding-top: 10px !important;
    }

    .page-promotions-welcome-bonus video,
    .page-promotions-welcome-bonus__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions-welcome-bonus__video-section,
    .page-promotions-welcome-bonus__video-container,
    .page-promotions-welcome-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-welcome-bonus__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-welcome-bonus__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

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

/* Color Contrast Safety */
.page-promotions-welcome-bonus p,
.page-promotions-welcome-bonus li,
.page-promotions-welcome-bonus__feature-card p,
.page-promotions-welcome-bonus__step-item p,
.page-promotions-welcome-bonus__faq-answer {
    color: var(--text-secondary);
}

.page-promotions-welcome-bonus h1,
.page-promotions-welcome-bonus h2,
.page-promotions-welcome-bonus h3,
.page-promotions-welcome-bonus__feature-title,
.page-promotions-welcome-bonus__step-title,
.page-promotions-welcome-bonus__faq-item summary {
    color: var(--text-main);
}

.page-promotions-welcome-bonus__btn-primary {
    color: #ffffff;
}

.page-promotions-welcome-bonus__btn-secondary {
    color: var(--text-main);
}

.page-promotions-welcome-bonus__dark-section {
    background: var(--deep-green);
    color: #ffffff;
}