.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #1a1a2e; /* Body background color from shared.css */
}

/* Header offset - Assuming shared.css doesn't set body padding-top */
.page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* General Section Styling */
.page-vip-club__section {
    padding: 60px 20px;
    text-align: center;
}

.page-vip-club__dark-section {
    background-color: #0d0d0d; /* A slightly darker background for contrast within the dark theme */
    color: #ffffff;
}

.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added for mobile safety */
}

.page-vip-club__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: bold;
}

.page-vip-club__text-block {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7; /* Slightly dim image for text readability */
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Custom color for important titles */
    line-height: 1.2;
}

.page-vip-club__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.page-vip-club__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Added for mobile safety */
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Ensures padding and border are included in width */
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-vip-club__btn-primary {
    background-color: #C30808; /* Custom color for register/login type buttons */
    color: #FFFF00; /* Custom font color for register/login type buttons */
    border: 2px solid #C30808;
}

.page-vip-club__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
    color: #ffffff;
}

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

.page-vip-club__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

.page-vip-club__btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

.page-vip-club__benefit-card {
    background-color: rgba(255, 255, 255, 0.1); /* Light transparent background on dark section */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-vip-club__benefit-icon {
    width: 200px; /* Min size 200x200 */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px; /* Slightly rounded corners */
}

.page-vip-club__benefit-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFF00; /* Highlight important titles */
}

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

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

.page-vip-club__level-card {
    background-color: #ffffff; /* White background for contrast */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333333; /* Dark text on light background */
}

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

.page-vip-club__level-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #017439; /* Brand color for titles */
}

.page-vip-club__level-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #555555;
}

.page-vip-club__level-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}