/* style/promo.css */

/* Base styles for the promo page */
.page-promo {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
}

.page-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promo__section {
    padding: 60px 0;
    position: relative;
}

.page-promo__dark-bg {
    background-color: #111111; /* Card BG */
    color: #FFF6D6;
}

.page-promo__text-center {
    text-align: center;
}

.page-promo__section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #F2C14E; /* Main Color */
    line-height: 1.2;
}

.page-promo__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promo__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 60px;
    background-color: #0A0A0A;
}

.page-promo__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-promo__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: 900;
    color: #F2C14E;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promo__description {
    font-size: 1.3em;
    color: #FFF6D6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promo__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-promo__cta-button--large {
    padding: 18px 45px;
    font-size: 1.2em;
}

.page-promo__cta-button--small {
    padding: 12px 25px;
    font-size: 1em;
}

/* Why Choose Section */
.page-promo__why-choose .page-promo__section-title, 
.page-promo__why-choose .page-promo__text-block {
    color: #FFF6D6;
}

.page-promo__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__feature-item {
    text-align: center;
    padding: 25px;
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12; /* Border */
}

.page-promo__feature-title {
    font-size: 1.4em;
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
}

.page-promo__feature-item p {
    color: #FFF6D6;
}

/* Promo Types Section */
.page-promo__promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__card {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
    display: flex;
    flex-direction: column;
    color: #FFF6D6;
}

.page-promo__card-image {
    width: 100%;
    height: 267px; /* Fixed height for consistent cards */
    object-fit: cover;
    display: block;
}

.page-promo__card-title {
    font-size: 1.3em;
    color: #F2C14E;
    margin: 20px 20px 10px 20px;
}

.page-promo__card-description {
    font-size: 0.95em;
    color: #FFF6D6;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-promo__card-button {
    display: block;
    text-align: center;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.page-promo__card-button:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

/* How to Claim Section */
.page-promo__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__step-item {
    text-align: center;
    background-color: #111111; /* Card BG */
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #3A2A12;
    position: relative;
    padding-top: 60px;
}

.page-promo__step-number {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2C14E;
    color: #0A0A0A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promo__step-title {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-promo__step-item p {
    color: #FFF6D6;
}

.page-promo__step-item a {
    color: #FFD36B;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__step-item a:hover {
    text-decoration: underline;
}

.page-promo__cta-buttons {
    text-align: center;
    margin-top: 50px;
}

/* Featured Games Section */
.page-promo__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__game-card {
    text-align: center;
}

.page-promo__game-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #3A2A12;
}

.page-promo__game-title {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-promo__game-description {
    font-size: 0.95em;
    color: #FFF6D6;
    margin-bottom: 20px;
}

.page-promo__game-button {
    display: inline-block;
    background: #FFD36B; /* Accent Color */
    color: #0A0A0A;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promo__game-button:hover {
    background: #F2C14E;
}

/* VIP Club Section */
.page-promo__vip-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-promo__vip-feature-item {
    text-align: center;
    max-width: 250px;
}

.page-promo__vip-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #3A2A12;
}

.page-promo__vip-feature-title {
    font-size: 1.2em;
    color: #FFD36B;
}

/* Security Section */
.page-promo__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__security-item {
    text-align: center;
    background-color: #111111; /* Card BG */
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #3A2A12;
}

.page-promo__security-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #3A2A12;
}

.page-promo__security-title {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-promo__security-item p {
    color: #FFF6D6;
}

.page-promo__security-item a {
    color: #FFD36B;
    text-decoration: none;
    font-weight: bold;
}

/* FAQ Section */
.page-promo__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promo__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #F2C14E;
    transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1);
}

.page-promo__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
    transform: rotate(45deg);
}

.page-promo__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6;
}

.page-promo__faq-item.active .page-promo__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px;
}

.page-promo__faq-answer p {
    margin-bottom: 0;
    padding-bottom: 10px;
}

/* Final CTA Section */
.page-promo__final-cta {
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__description {
        font-size: 1.1em;
    }
    .page-promo__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-promo {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promo__section {
        padding: 40px 0;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__text-block {
        font-size: 1em;
    }
    .page-promo__main-title {
        font-size: clamp(1.8em, 7vw, 2.8em);
    }

    .page-promo__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-promo__hero-content {
        padding: 0 15px;
    }
    .page-promo__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Images responsive */
    .page-promo img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    /* Containers responsive */
    .page-promo__section,
    .page-promo__card,
    .page-promo__container,
    .page-promo__promo-cards-grid,
    .page-promo__games-grid,
    .page-promo__faq-list,
    .page-promo__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero section padding for mobile */
    .page-promo__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    /* Buttons responsive */
    .page-promo__cta-button,
    .page-promo__card-button,
    .page-promo__game-button {
        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-promo__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-promo__features-grid,
    .page-promo__promo-cards-grid,
    .page-promo__steps-grid,
    .page-promo__games-grid,
    .page-promo__security-features {
        grid-template-columns: 1fr;
    }

    .page-promo__vip-features {
        flex-direction: column;
        align-items: center;
    }
    .page-promo__vip-feature-item {
        max-width: 100%;
    }

    .page-promo__card-image {
        height: 200px; /* Adjust card image height for mobile */
    }
    .page-promo__game-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__main-title {
        font-size: clamp(1.5em, 8vw, 2.5em);
    }
    .page-promo__description {
        font-size: 0.95em;
    }
    .page-promo__cta-button--large {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-promo__card-title, .page-promo__feature-title, .page-promo__step-title, .page-promo__game-title, .page-promo__security-title {
        font-size: 1.1em;
    }
    .page-promo__faq-question h3 {
        font-size: 1em;
    }
}