/* style/promo.css */
.page-promo {
    color: #f0f0f0; /* Light text for dark body background */
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-promo__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Minimum height for hero section */
    background-color: #1A202C;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6; /* Slightly dim the background image for text readability */
}

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promo__hero-button,
.page-promo__section-button,
.page-promo__bonus-card-button,
.page-promo__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promo__hero-button:hover,
.page-promo__section-button:hover,
.page-promo__bonus-card-button:hover,
.page-promo__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-promo__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-promo__section-intro {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #cccccc;
}

.page-promo__welcome-bonus-section,
.page-promo__daily-offers-section,
.page-promo__vip-section,
.page-promo__how-to-claim-section,
.page-promo__why-pko88-section,
.page-promo__faq-section,
.page-promo__cta-section {
    padding: 60px 0;
    background-color: #1A202C; /* Ensure sections have dark background */
}

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

.page-promo__bonus-card,
.page-promo__why-item {
    background-color: #2a3340; /* Slightly lighter dark background for cards */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promo__bonus-card:hover,
.page-promo__why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promo__bonus-card-image,
.page-promo__why-icon {
    width: 100%;
    height: 250px; /* Fixed height for consistent card images */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-promo__why-icon {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Make icons circular */
    object-fit: contain;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 15px;
}

.page-promo__bonus-card-title,
.page-promo__offer-title,
.page-promo__feature-title,
.page-promo__why-title,
.page-promo__step-title,
.page-promo__faq-question {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promo__bonus-card-description,
.page-promo__offer-description,
.page-promo__feature-description,
.page-promo__why-description,
.page-promo__step-description,
.page-promo__faq-answer {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-promo__offer-item {
    background-color: #2a3340;
    border-left: 5px solid #FFD700;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-promo__offer-item:hover {
    background-color: #3b4554;
}

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

.page-promo__feature-item {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
    transform: translateY(-5px);
}

.page-promo__claim-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.page-promo__claim-step {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 8px solid #FFD700;
}

.page-promo__faq-item {
    background-color: #2a3340;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-promo__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-promo__faq-answer.active {
    max-height: 300px; /* Adjust as needed for content */
    opacity: 1;
    padding-top: 15px;
}

.page-promo__cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A202C, #3b4554);
}

.page-promo__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__cta-description {
    font-size: 1.2em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__section-title {
        font-size: 2.5em;
    }
    .page-promo__bonus-grid,
    .page-promo__why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        min-height: 400px;
    }
    .page-promo__hero-content {
        padding: 15px;
    }
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-button,
    .page-promo__section-button,
    .page-promo__bonus-card-button,
    .page-promo__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 2em;
        padding-top: 20px;
    }
    .page-promo__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promo__bonus-grid,
    .page-promo__offer-list,
    .page-promo__vip-features,
    .page-promo__why-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__bonus-card-image,
    .page-promo__why-icon {
        height: auto;
        width: 80%;
        max-width: 300px;
    }
    .page-promo__cta-title {
        font-size: 2.5em;
    }
    .page-promo__cta-description {
        font-size: 1em;
    }
    .page-promo__claim-step,
    .page-promo__offer-item,
    .page-promo__feature-item,
    .page-promo__bonus-card,
    .page-promo__why-item,
    .page-promo__faq-item {
        padding: 20px;
    }
    /* Mobile content area images must use max-width: 100%; height: auto; */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not smaller than 200px */
    .page-promo__bonus-card-image,
    .page-promo__why-icon {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__bonus-card-title,
    .page-promo__offer-title,
    .page-promo__feature-title,
    .page-promo__why-title,
    .page-promo__step-title,
    .page-promo__faq-question {
        font-size: 1.3em;
    }
    .page-promo__cta-title {
        font-size: 2em;
    }
}