:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #26A9E0;
    --login-color: #EA7C07;
    --black-color: #000000;
}

.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light body background */
    background-color: var(--secondary-color); /* Default white background */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-vip-club__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-vip-club__main-title {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-vip-club__main-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a88bb 100%); /* Adjusted gradient for better contrast */
    padding-top: 0; /* Handled by .page-vip-club global padding-top */
}

.page-vip-club__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-vip-club__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-vip-club__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no filter changes image color */
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-vip-club__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--login-color); /* Use specific login color for CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-club__cta-button:hover {
    background: #e06c00; /* Slightly darker hover for login color */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__cta-button--small {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
}

/* Module 1: Introduction */
.page-vip-club__intro-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-vip-club__intro-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-vip-club__intro-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club__intro-heading {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-vip-club__intro-item p {
    font-size: 16px;
    color: var(--text-dark);
    text-align: left; /* Align text left within item */
}

/* Module 2: Quick Access Links */
.page-vip-club__quick-access-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    color: var(--text-light);
}

.page-vip-club__quick-access-section .page-vip-club__section-title {
    color: var(--text-light);
}

.page-vip-club__quick-access-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    max-width: 100%; /* Button group responsive */
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-vip-club__btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: var(--login-color); /* Use login color for primary buttons */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-club__btn-primary:hover {
    background: #e06c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Module 3: Core Games/Services */
.page-vip-club__games-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.page-vip-club__games-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-vip-club__game-card {
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__game-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    filter: none; /* Ensure no filter changes image color */
    border-radius: 10px 10px 0 0;
}

.page-vip-club__game-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 20px 15px 10px;
    font-weight: 700;
}

.page-vip-club__game-card p {
    font-size: 15px;
    color: var(--text-dark);
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: left; /* Align left within card */
}

.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-club__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Module 4: Promotions */
.page-vip-club__promotions-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    color: var(--text-light);
}