/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #121212; /* Inherited from shared, but explicitly set for clarity */
}

/* Container for consistent spacing */
.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles */
.page-vip-club__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-club__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #CC0000; /* Main brand color */
    border-radius: 2px;
}

/* Text blocks for general content */
.page-vip-club__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #f0f0f0; /* Slightly off-white for better readability */
}

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

.page-vip-club__btn-primary {
    background-color: #CC0000; /* Main brand color */
    color: #ffffff;
    border: 2px solid #CC0000;
}

.page-vip-club__btn-primary:hover {
    background-color: #FFD700; /* Auxiliary color on hover */
    color: #121212; /* Dark text for light background */
    border-color: #FFD700;
}

.page-vip-club__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
}

.page-vip-club__btn-secondary:hover {
    background-color: #FFD700;
    color: #121212; /* Dark text for light background */
}

/* Images - Global responsive styles */
.page-vip-club img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    /* No filter properties to change image colors */
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.5); /* Allowed for stylistic overlay, not color change */
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-vip-club__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Auxiliary color for hero title */
}

.page-vip-club__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Introduction Section */
.page-vip-club__introduction-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Darker background for contrast */
}

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

.page-vip-club__feature-item {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-vip-club__feature-description {
    color: #e0e0e0;
}

/* VIP Tiers Section */
.page-vip-club__tiers-section {
    padding: 80px 0;
    background-color: #121212;
}

.page-vip-club__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-vip-club__card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    color: #ffffff;
}

.page-vip-club__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-club__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page-vip-club__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-club__tier-benefits li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: 1.05em;
}

.page-vip-club__tier-benefits li:last-child {
    border-bottom: none;
}

.page-vip-club__tiers-image {
    margin-top: 50px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-vip-club__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-vip-club__step-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    padding-top: 60px; /* Space for step number */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__step-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club__step-number {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CC0000;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 2px solid #FFD700;
}

.page-vip-club__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-vip-club__step-description {
    color: #e0e0e0;
}

.page-vip-club__step-description a {
    color: #CC0000;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club__step-description a:hover {
    text-decoration: underline;
}

.page-vip-club__how-to-join-image {
    margin-top: 50px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Exclusive Games Section */
.page-vip-club__exclusive-games-section {
    padding: 80px 0;
    background-color: #121212;
}

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

.page-vip-club__game-card {
    text-align: center;
}

.page-vip-club__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
}

.page-vip-club__game-card .page-vip-club__card-title {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-vip-club__game-card .page-vip-club__card-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-vip-club__game-card .page-vip-club__card-title a:hover {
    text-decoration: underline;
}

.page-vip-club__game-description {
    color: #e0e0e0;
}

/* Support Section */
.page-vip-club__support-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.page-vip-club__support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-vip-club__support-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__support-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club__support-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-vip-club__support-description {
    color: #e0e0e0;
}

/* FAQ Section */
.page-vip-club__faq-section {
    padding: 80px 0;
    background-color: #121212;
}

.page-vip-club__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.page-vip-club__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.12);
    transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

.page-vip-club__faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: #FFD700;
}

.page-vip-club__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #CC0000;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
    transform: rotate(45deg); /* Plus to Minus visual */
    color: #FFD700;
}

.page-vip-club__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
}

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

.page-vip-club__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
    color: #e0e0e0;
}

/* CTA Section */
.page-vip-club__cta-section {
    padding: 80px 0;
    background-color: #CC0000; /* Main brand color for strong CTA */
    text-align: center;
}

.page-vip-club__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-vip-club__cta-section .page-vip-club__section-title {
    color: #ffffff;
}

.page-vip-club__cta-section .page-vip-club__section-title::after {
    background-color: #FFD700;
}

.page-vip-club__cta-section .page-vip-club__text-block {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-vip-club__cta-section .page-vip-club__text-block a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club__cta-section .page-vip-club__text-block a:hover {
    text-decoration: underline;
}

.page-vip-club__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-vip-club__hero-title {
        font-size: 3em;
    }
    .page-vip-club__hero-description {
        font-size: 1.2em;
    }
    .page-vip-club__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    /* Mobile image responsiveness */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Mobile video responsiveness - no videos on this page, but keeping for general safety */
    .page-vip-club video,
    .page-vip-club__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-vip-club__video-section,
    .page-vip-club__video-container,
    .page-vip-club__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__container,
    .page-vip-club__hero-cta,
    .page-vip-club__cta-buttons,
    .page-vip-club__features-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__games-grid,
    .page-vip-club__support-features,
    .page-vip-club__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Mobile button responsiveness */
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary,
    .page-vip-club a[class*="button"],
    .page-vip-club a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px; /* Add padding to prevent text touching edges */
        padding-right: 15px;
    }

    /* Button containers for mobile */
    .page-vip-club__hero-cta,
    .page-vip-club__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
    }

    /* Hero section adjustments */
    .page-vip-club__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure spacing on mobile */
    }

    .page-vip-club__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-vip-club__text-block {
        font-size: 1em;
    }

    .page-vip-club__features-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__games-grid,
    .page-vip-club__support-features {
        grid-template-columns: 1fr;
    }

    .page-vip-club__feature-item,
    .page-vip-club__card,
    .page-vip-club__step-item,
    .page-vip-club__game-card,
    .page-vip-club__support-item {
        padding: 20px;
    }

    .page-vip-club__faq-question {
        padding: 15px 20px;
    }

    .page-vip-club__faq-question h3 {
        font-size: 1.1em;
    }

    .page-vip-club__faq-answer {
        padding: 0 20px;
    }

    .page-vip-club__faq-item.active .page-vip-club__faq-answer {
        padding: 10px 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__hero-description {
        font-size: 0.9em;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
    .page-vip-club__hero-section {
        min-height: 400px;
    }
}