/* style/vip-program-levels.css */

/* --- General Styles --- */
.page-vip-program-levels {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

.page-vip-program-levels__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-vip-program-levels__container--center {
    text-align: center;
}

.page-vip-program-levels__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-vip-program-levels__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-vip-program-levels__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program-levels__intro-text,
.page-vip-program-levels__text-block {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: center;
}

.page-vip-program-levels__text-block {
    text-align: left;
}

/* --- Buttons --- */
.page-vip-program-levels__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-vip-program-levels__btn-primary,
.page-vip-program-levels__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* Responsive button width */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

.page-vip-program-levels__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-vip-program-levels__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-vip-program-levels__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Main color for secondary button text */
    border: 2px solid #2AD16F;
}

.page-vip-program-levels__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #F2FFF6; /* Text Main */
}

.page-vip-program-levels__btn-primary--large {
    font-size: 1.2em;
    padding: 18px 40px;
    min-width: 250px;
}

/* --- Hero Section --- */
.page-vip-program-levels__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Minimal top padding */
    min-height: 500px;
    background-color: #08160F; /* Ensure dark background for hero content */
}

.page-vip-program-levels__hero-image-wrapper {
    width: 100%;
    position: relative;
    z-index: 1; /* Image below text logically but visually above if positioned */
    margin-bottom: 40px; /* Space between image and content */
}

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

.page-vip-program-levels__hero-content {
    position: relative;
    z-index: 2; /* Text above image */
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- VIP Levels Table --- */
.page-vip-program-levels__table-responsive {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #2E7A4E; /* Border */
    background-color: #11271B; /* Card BG */
}

.page-vip-program-levels__vip-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure table is wide enough for content */
}

.page-vip-program-levels__vip-table th,
.page-vip-program-levels__vip-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    color: #F2FFF6; /* Text Main */
}

.page-vip-program-levels__vip-table th {
    background-color: #0A4B2C; /* Deep Green */
    font-weight: bold;
    color: #F2C14E; /* Gold */
}

.page-vip-program-levels__vip-table tr:last-child td {
    border-bottom: none;
}

.page-vip-program-levels__vip-table tbody tr:hover {
    background-color: rgba(42, 209, 111, 0.05);
}

/* --- Privilege Items --- */
.page-vip-program-levels__privilege-item {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels__privilege-title {
    font-size: 1.8em;
    color: #57E38D; /* Glow */
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-vip-program-levels__privilege-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-vip-program-levels__privilege-content .page-vip-program-levels__text-block {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
}

.page-vip-program-levels__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #2E7A4E; /* Border */
}

.page-vip-program-levels__content-image--left {
    order: -1; /* Image on left */
}

.page-vip-program-levels__content-image--right {
    order: 1; /* Image on right */
}

/* --- List Styles --- */
.page-vip-program-levels__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels__list-item {
    padding: 15px 25px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    color: #A7D9B8; /* Text Secondary */
}

.page-vip-program-levels__list-item:last-child {
    border-bottom: none;
}

.page-vip-program-levels__list-item strong {
    color: #F2FFF6; /* Text Main */
}

/* --- FAQ Section --- */
.page-vip-program-levels__faq-list {
    margin-top: 30px;
}

.page-vip-program-levels__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-vip-program-levels__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
}

.page-vip-program-levels__faq-question:hover {
    background-color: #13994A; /* Darker green on hover */
}

.page-vip-program-levels__faq-item[open] > .page-vip-program-levels__faq-question {
    background-color: #13994A; /* Darker green when open */
}

.page-vip-program-levels__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-vip-program-levels__faq-item[open] .page-vip-program-levels__faq-toggle {
    content: "−"; /* Change to minus when open */
}

.page-vip-program-levels__faq-answer {
    padding: 15px 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-vip-program-levels__faq-answer p {
    margin-bottom: 0;
}

/* Hide default details marker */
.page-vip-program-levels__faq-item > summary {
    list-style: none;
}
.page-vip-program-levels__faq-item > summary::-webkit-details-marker {
    display: none;
}


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-vip-program-levels__hero-content {
        padding: 0 15px;
    }

    .page-vip-program-levels__main-title {
        font-size: clamp(1.8em, 6vw, 3em);
    }

    .page-vip-program-levels__section-title {
        font-size: 2em;
    }

    .page-vip-program-levels__privilege-content {
        flex-direction: column;
        text-align: center;
    }

    .page-vip-program-levels__content-image--left,
    .page-vip-program-levels__content-image--right {
        order: initial; /* Reset order for mobile */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-vip-program-levels__section {
        padding: 40px 0;
    }

    .page-vip-program-levels__container {
        padding: 0 15px; /* Add horizontal padding for content */
    }

    .page-vip-program-levels__hero-section {
        padding-bottom: 40px;
    }

    .page-vip-program-levels__main-title {
        font-size: clamp(1.5em, 8vw, 2.5em);
    }

    .page-vip-program-levels__section-title {
        font-size: 1.8em;
    }

    .page-vip-program-levels__intro-text,
    .page-vip-program-levels__text-block {
        font-size: 1em;
    }

    .page-vip-program-levels__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-program-levels__btn-primary,
    .page-vip-program-levels__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 10px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-vip-program-levels__vip-table {
        min-width: 500px; /* Adjust for smaller screens if needed */
    }

    .page-vip-program-levels img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-vip-program-levels__section,
    .page-vip-program-levels__card,
    .page-vip-program-levels__container,
    .page-vip-program-levels__table-responsive,
    .page-vip-program-levels__privilege-item,
    .page-vip-program-levels__list,
    .page-vip-program-levels__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-vip-program-levels__hero-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-vip-program-levels__section-title {
        font-size: 1.5em;
    }
    .page-vip-program-levels__privilege-title {
        font-size: 1.4em;
    }
    .page-vip-program-levels__faq-question {
        font-size: 0.95em;
        padding: 15px 20px;
    }
    .page-vip-program-levels__faq-toggle {
        font-size: 1.2em;
    }
}