/* style/vip-club.css */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f4f4f4;
}

/* Hidden state for JS animation */
.page-vip-club--hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-vip-club--fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FFD700, #8B0000); /* Gold to Deep Red gradient */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-vip-club__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-vip-club__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay with gradient */
}

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

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

.page-vip-club__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-vip-club__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-button:hover {
    background-color: #b39700;
    color: #ffffff;
    transform: translateY(-3px);
}

/* General Section Styles */
.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-club__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-vip-club__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__highlight {
    color: #8B0000;
    font-weight: bold;
}

/* Intro Section */
.page-vip-club__intro-section {
    padding: 60px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-vip-club__benefit-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-club__benefit-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px; /* Ensure images are not small icons by default */
}

.page-vip-club__benefit-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-vip-club__benefit-description {
    font-size: 1em;
    color: #555555;
}

.page-vip-club__secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 20px;
}

.page-vip-club__secondary-button:hover {
    background-color: #8B0000;
    color: #ffffff;
}

.page-vip-club__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

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

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

.page-vip-club__tier-card {
    background-color: #fefefe;
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #8B0000;
}

.page-vip-club__tier-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-vip-club__tier-level {
    font-size: 1.1em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-vip-club__tier-description {
    font-size: 1em;
    color: #555555;
    min-height: 80px; /* Ensure consistent height */
}

.page-vip-club__tier-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 10px;
}

.page-vip-club__tier-note {
    margin-top: 40px;
    font-style: italic;
    color: #666666;
}

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

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

.page-vip-club__step-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-top: 60px;
}

.page-vip-club__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8B0000;
    color: #FFD700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 4px solid #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-title {
    font-size: 1.6em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-vip-club__step-description {
    font-size: 1em;
    color: #555555;
}

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

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

/* Why Join Section */
.page-vip-club__why-join-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-vip-club__why-join-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-vip-club__why-join-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-club__why-join-text {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.page-vip-club__why-join-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444444;
}

/* Featured Games Section */
.page-vip-club__featured-games-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-vip-club__game-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-vip-club__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-club__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-vip-club__game-title {
    font-size: 1.4em;
    color: #8B0000;
    margin: 20px 15px 10px;
}

.page-vip-club__game-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px;
    min-height: 70px; /* Ensure consistent height */
}

.page-vip-club__game-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-vip-club__game-button:hover {
    background-color: #b39700;
    color: #ffffff;
}

/* Detail Pages Section */
.page-vip-club__detail-pages-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-vip-club__detail-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-vip-club__detail-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-vip-club__detail-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-vip-club__detail-title a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vip-club__detail-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-vip-club__detail-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 15px;
}

.page-vip-club__detail-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-vip-club__detail-button:hover {
    background-color: #b39700;
    color: #ffffff;
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #8B0000, #FFD700);
    color: #ffffff;
    text-align: center;
}

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

.page-vip-club__cta-final-section .page-vip-club__section-description {
    color: #f0f0f0;
}

.page-vip-club__cta-buttons {
    margin-top: 40px;
}

.page-vip-club__cta-final-section .page-vip-club__cta-button {
    background-color: #ffffff;
    color: #8B0000;
    margin-right: 20px;
}

.page-vip-club__cta-final-section .page-vip-club__cta-button:hover {
    background-color: #f0f0f0;
    color: #8B0000;
}

.page-vip-club__cta-final-section .page-vip-club__secondary-button {
    border-color: #ffffff;
    color: #ffffff;
}

.page-vip-club__cta-final-section .page-vip-club__secondary-button:hover {
    background-color: #ffffff;
    color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-vip-club__hero-title {
        font-size: 2.8em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 1.3em;
    }
    .page-vip-club__section-title {
        font-size: 2em;
    }
    .page-vip-club__why-join-content {
        flex-direction: column;
        text-align: center;
    }
    .page-vip-club__why-join-image,
    .page-vip-club__why-join-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        padding: 80px 0;
    }
    .page-vip-club__hero-title {
        font-size: 2.2em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 1.1em;
    }
    .page-vip-club__cta-button,
    .page-vip-club__secondary-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__benefits-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__games-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club__cta-bottom .page-vip-club__secondary-button,
    .page-vip-club__cta-buttons .page-vip-club__secondary-button {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-vip-club__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-vip-club__cta-final-section .page-vip-club__cta-button {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 0.9em;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
    .page-vip-club__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        top: -15px;
    }
    .page-vip-club__benefit-icon {
        width: 80px;
        height: 80px;
    }
}