.page-vip-club {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light background */
    line-height: 1.6;
    background-color: #F5F7FA; /* Custom background color */
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #E53935; /* Brand primary color */
    padding-top: 10px; /* Small top padding, not var(--header-offset) */
}

.page-vip-club__hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-vip-club__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop */
    display: block;
    filter: none; /* Ensure no filter is applied */
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    text-align: center;
    color: #ffffff; /* White text for dark background */
}

.page-vip-club__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Flexible font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-vip-club__description {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-vip-club__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%; /* Ensure container takes full width */
    box-sizing: border-box;
    overflow: hidden;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure buttons adapt */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-vip-club__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    border: none;
}

.page-vip-club__btn-primary:hover {
    background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
    transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
    background: #ffffff;
    color: #E53935;
    border: 2px solid #E53935;
}

.page-vip-club__btn-secondary:hover {
    background: #f0f0f0;
    color: #FF5A4F;
    border-color: #FF5A4F;
    transform: translateY(-2px);
}

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

.page-vip-club__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #E53935; /* Brand primary color */
}

.page-vip-club__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555555;
}

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

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

.page-vip-club__benefit-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E0E0E0; /* Border color */
    color: #333333; /* Text Main */
}

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

.page-vip-club__benefit-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter */
    display: block; /* Ensure block for consistent spacing */
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E53935; /* Brand primary color */
}

.page-vip-club__benefit-card p {
    font-size: 1rem;
    color: #555555;
}

/* Tiers Section */
.page-vip-club__tiers-section {
    padding: 60px 0;
    background-color: #E53935; /* Brand primary color - dark background */
    color: #ffffff; /* White text for dark background */
}

.page-vip-club__tiers-section .page-vip-club__section-title {
    color: #ffffff; /* White title for dark background */
}

.page-vip-club__tiers-section .page-vip-club__section-description {
    color: #f0f0f0; /* Light grey text for dark background */
}

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

.page-vip-club__tier-card {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white for dark bg */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border for dark bg */
    color: #ffffff;
}

.page-vip-club__tier-card .page-vip-club__card-title {
    color: #FFD700; /* Gold color for tier titles */
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.page-vip-club__tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-vip-club__tier-card li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.page-vip-club__tier-card li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9em;
}

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

.page-vip-club__cta-bottom p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #f0f0f0;
}

/* Join Section */
.page-vip-club__join-section {
    padding: 60px 0;
    background-color: #F5F7FA; /* Custom background color */
}

.page-vip-club__join-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-vip-club__step-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border: 1px solid #E0E0E0; /* Border color */
    color: #333333; /* Text Main */
}

.page-vip-club__step-icon {
    width: 60px;
    height: 60px;
    background-color: #E53935;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}