/* style/promotions-vip-benefits.css */

/* Base styles for the VIP benefits page */
.page-promotions-vip-benefits {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #000000; /* Ensure body background is respected */
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

/* Sections padding and max-width */
.page-promotions-vip-benefits__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-promotions-vip-benefits__hero-section {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    background-color: #0d0d0d; /* Slightly lighter dark for hero */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-promotions-vip-benefits__hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; /* Subtle background image */
}

.page-promotions-vip-benefits__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-vip-benefits__hero-title {
    font-size: 3.5em;
    color: #26A9E0;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Buttons */
.page-promotions-vip-benefits__btn-primary {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-promotions-vip-benefits__btn-primary:hover {
    background-color: #1e87c0;
}

/* Benefit Cards */
.page-promotions-vip-benefits__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-benefits__benefit-card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff; /* Light text */
}

.page-promotions-vip-benefits__benefit-card:hover {
    transform: translateY(-10px);
}

.page-promotions-vip-benefits__benefit-icon {
    font-size: 3em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions-vip-benefits__benefit-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-promotions-vip-benefits__benefit-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* VIP Tiers */
.page-promotions-vip-benefits__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-benefits__tier-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-promotions-vip-benefits__tier-card--highlight {
    border-color: #26A9E0;
    box-shadow: 0 0 20px rgba(38, 169, 224, 0.5);
}

.page-promotions-vip-benefits__tier-name {
    font-size: 2em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions-vip-benefits__tier-requirement {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-promotions-vip-benefits__tier-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-vip-benefits__tier-benefits-list li {
    margin-bottom: 10px;
    color: #f0f0f0;
}

.page-promotions-vip-benefits__tier-benefits-list li::before {
    content: "✅";
    margin-right: 10px;
    color: #26A9E0;
}

/* How to become VIP steps */
.page-promotions-vip-benefits__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-promotions-vip-benefits__step-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-benefits__step-number {
    width: 50px;
    height: 50px;
    background-color: #26A9E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8em;
    font-weight: bold;
    color: #ffffff;
}

.page-promotions-vip-benefits__step-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions-vip-benefits__step-description {
    font-size: 0.95em;
    color: #cccccc;
}

/* CTA container */
.page-promotions-vip-benefits__cta-container {
    text-align: center;
    margin-top: 60px;
}

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

.page-promotions-vip-benefits__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    color: #ffffff;
}

.page-promotions-vip-benefits__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #26A9E0;
    list-style: none; /* Remove default marker */
}

.page-promotions-vip-benefits__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-promotions-vip-benefits__faq-item summary::marker {
  display: none;
}

.page-promotions-vip-benefits__faq-toggle {
    font-size: 1.5em;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.page-promotions-vip-benefits__faq-item[open] .page-promotions-vip-benefits__faq-toggle {
    transform: rotate(45deg); /* Change + to X or rotate */
}

.page-promotions-vip-benefits__faq-answer {
    padding-top: 15px;
    font-size: 0.95em;
    color: #cccccc;
}

/* General headings and paragraphs */
.page-promotions-vip-benefits__section-title {
    font-size: 2.5em;
    text-align: center;
    color: #26A9E0;
    margin-bottom: 50px;
    padding-top: 20px;
}

.page-promotions-vip-benefits__section-description {
    text-align: center;
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Image styling */
.page-promotions-vip-benefits img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto;
    object-fit: cover;
}

.page-promotions-vip-benefits__content-image {
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Dark section for contrast */
.page-promotions-vip-benefits__dark-section {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-promotions-vip-benefits {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions-vip-benefits__section {
        padding: 40px 15px;
    }

    .page-promotions-vip-benefits__hero-section {
        padding: 80px 15px;
        min-height: 400px;
    }

    .page-promotions-vip-benefits__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-vip-benefits__hero-description {
        font-size: 1em;
    }

    .page-promotions-vip-benefits__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-vip-benefits__benefits-grid,
    .page-promotions-vip-benefits__tiers-grid,
    .page-promotions-vip-benefits__steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-vip-benefits__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-promotions-vip-benefits__section-description {
        font-size: 1em;
    }

    /* Mobile image/video adaptation */
    .page-promotions-vip-benefits img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-vip-benefits video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-vip-benefits__video-section,
    .page-promotions-vip-benefits__video-container,
    .page-promotions-vip-benefits__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-vip-benefits__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions-vip-benefits__cta-buttons,
    .page-promotions-vip-benefits__button-group,
    .page-promotions-vip-benefits__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-promotions-vip-benefits__cta-buttons {
        display: flex;
        flex-direction: column;
    }
    .page-promotions-vip-benefits__faq-item {
        padding: 15px;
    }
    .page-promotions-vip-benefits__faq-question {
        font-size: 1em;
    }
    .page-promotions-vip-benefits__faq-toggle {
        font-size: 1.2em;
    }
    .page-promotions-vip-benefits__faq-answer {
        font-size: 0.9em;
    }
}