/* style/vip-club-levels-privileges.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-vip-club-levels-privileges {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page content */
    background-color: var(--background-color); /* Matches body background assumption (dark) */
}

.page-vip-club-levels-privileges__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--deep-green);
    overflow: hidden;
}

.page-vip-club-levels-privileges__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-vip-club-levels-privileges__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-vip-club-levels-privileges__hero-content {
    max-width: 900px;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-vip-club-levels-privileges__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-vip-club-levels-privileges__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-vip-club-levels-privileges__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
}

.page-vip-club-levels-privileges__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* Forced white for contrast */
    border: none;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-vip-club-levels-privileges__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-vip-club-levels-privileges__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 15px;
}

.page-vip-club-levels-privileges__btn-secondary:hover {
    background-color: rgba(34, 199, 104, 0.1);
    color: #ffffff;
}

.page-vip-club-levels-privileges__introduction-section,
.page-vip-club-levels-privileges__privileges-section,
.page-vip-club-levels-privileges__comparison-section,
.page-vip-club-levels-privileges__conclusion-section {
    padding: 60px 20px;
    background-color: var(--background-color);
    color: var(--text-main);
}

.page-vip-club-levels-privileges__levels-section,
.page-vip-club-levels-privileges__how-to-join-section,
.page-vip-club-levels-privileges__faq-section {
    padding: 60px 20px;
    background-color: var(--deep-green); /* Darker green for contrast */
    color: var(--text-main);
}

.page-vip-club-levels-privileges__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-vip-club-levels-privileges__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-vip-club-levels-privileges__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-vip-club-levels-privileges__text-block {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-vip-club-levels-privileges__levels-grid,
.page-vip-club-levels-privileges__privileges-grid,
.page-vip-club-levels-privileges__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-vip-club-levels-privileges__level-card,
.page-vip-club-levels-privileges__privilege-card,
.page-vip-club-levels-privileges__step-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 380px; /* Ensure cards have similar height */
}

.page-vip-club-levels-privileges__level-card:hover,
.page-vip-club-levels-privileges__privilege-card:hover,
.page-vip-club-levels-privileges__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club-levels-privileges__level-icon,
.page-vip-club-levels-privileges__privilege-icon {
    width: 200px; /* Min size 200x200 */
    height: 150px; /* Adjusted height for aspect ratio */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-vip-club-levels-privileges__level-title,
.page-vip-club-levels-privileges__privilege-title,
.page-vip-club-levels-privileges__step-title {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club-levels-privileges__level-description,
.page-vip-club-levels-privileges__privilege-description,
.page-vip-club-levels-privileges__step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.page-vip-club-levels-privileges__level-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    width: 100%;
}

.page-vip-club-levels-privileges__level-features li {
    color: var(--text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-vip-club-levels-privileges__level-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.page-vip-club-levels-privileges__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.page-vip-club-levels-privileges__text-link {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-vip-club-levels-privileges__text-link:hover {
    color: var(--gold-color);
}

.page-vip-club-levels-privileges__table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-vip-club-levels-privileges__comparison-table th,
.page-vip-club-levels-privileges__comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-main);
}

.page-vip-club-levels-privileges__comparison-table th {
    background-color: var(--deep-green);
    font-weight: bold;
    color: var(--gold-color);
    font-size: 1.1rem;
}

.page-vip-club-levels-privileges__comparison-table tbody tr:nth-child(even) {
    background-color: rgba(17, 40, 27, 0.7); /* Slightly different background for readability */
}

.page-vip-club-levels-privileges__comparison-table tbody tr:hover {
    background-color: var(--deep-green);
}

.page-vip-club-levels-privileges__faq-list {
    margin-top: 30px;
}

.page-vip-club-levels-privileges__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-vip-club-levels-privileges__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-vip-club-levels-privileges__faq-question::-webkit-details-marker {
    display: none;
}

.page-vip-club-levels-privileges__faq-question:hover {
    background-color: var(--primary-color);
}

.page-vip-club-levels-privileges__faq-qtext {
    flex-grow: 1;
}

.page-vip-club-levels-privileges__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-vip-club-levels-privileges__faq-item[open] .page-vip-club-levels-privileges__faq-toggle {
    transform: rotate(45deg);
}

.page-vip-club-levels-privileges__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-vip-club-levels-privileges__faq-item[open] .page-vip-club-levels-privileges__faq-question {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-vip-club-levels-privileges__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .page-vip-club-levels-privileges__section-title {
        font-size: 2.2rem;
    }
    .page-vip-club-levels-privileges__hero-image-wrapper {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .page-vip-club-levels-privileges {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-club-levels-privileges__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-vip-club-levels-privileges__hero-content {
        margin-top: 30px;
    }
    .page-vip-club-levels-privileges__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-vip-club-levels-privileges__section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .page-vip-club-levels-privileges__hero-description,
    .page-vip-club-levels-privileges__section-description,
    .page-vip-club-levels-privileges__text-block {
        font-size: 0.9rem;
    }
    .page-vip-club-levels-privileges__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px 0;
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-vip-club-levels-privileges__cta-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .page-vip-club-levels-privileges__btn-secondary {
        margin-left: 0;
    }
    .page-vip-club-levels-privileges__introduction-section,
    .page-vip-club-levels-privileges__levels-section,
    .page-vip-club-levels-privileges__privileges-section,
    .page-vip-club-levels-privileges__how-to-join-section,
    .page-vip-club-levels-privileges__comparison-section,
    .page-vip-club-levels-privileges__faq-section,
    .page-vip-club-levels-privileges__conclusion-section {
        padding: 40px 15px;
    }
    .page-vip-club-levels-privileges__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-vip-club-levels-privileges__levels-grid,
    .page-vip-club-levels-privileges__privileges-grid,
    .page-vip-club-levels-privileges__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-vip-club-levels-privileges__level-card,
    .page-vip-club-levels-privileges__privilege-card,
    .page-vip-club-levels-privileges__step-card {
        padding: 20px;
        min-height: auto;
    }
    .page-vip-club-levels-privileges__level-icon,
    .page-vip-club-levels-privileges__privilege-icon {
        width: 150px; /* Adjust icon size for mobile */
        height: auto;
        margin-bottom: 15px;
    }
    .page-vip-club-levels-privileges__level-title,
    .page-vip-club-levels-privileges__privilege-title,
    .page-vip-club-levels-privileges__step-title {
        font-size: 1.4rem;
    }
    .page-vip-club-levels-privileges__comparison-table {
        min-width: 100%; /* Allow table to shrink, overflow handled by wrapper */
    }
    .page-vip-club-levels-privileges__comparison-table th,
    .page-vip-club-levels-privileges__comparison-table td {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    .page-vip-club-levels-privileges__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-vip-club-levels-privileges__faq-answer {
        padding: 0 20px 15px;
    }
    /* Mobile image and video specific overrides */
    .page-vip-club-levels-privileges img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club-levels-privileges video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club-levels-privileges__video-section,
    .page-vip-club-levels-privileges__video-container,
    .page-vip-club-levels-privileges__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-vip-club-levels-privileges__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-vip-club-levels-privileges__cta-buttons,
    .page-vip-club-levels-privileges__button-group,
    .page-vip-club-levels-privileges__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-vip-club-levels-privileges__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-vip-club-levels-privileges__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-vip-club-levels-privileges__section-title {
        font-size: 1.6rem;
    }
    .page-vip-club-levels-privileges__hero-image-wrapper {
        max-height: 300px;
    }
}