/* style/vip-club.css */

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

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

/* Section Backgrounds and Text Colors */
.page-vip-club__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter than #000000 for contrast */
    color: #ffffff;
}

.page-vip-club__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-club__medium-bg {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark bg */
    color: #ffffff;
    border-radius: 8px;
    padding: 20px;
}

/* Headings */
.page-vip-club h1,
.page-vip-club h2,
.page-vip-club h3 {
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-vip-club h1 {
    font-size: 3.2em;
    color: #26A9E0; /* Brand color for main title */
    text-align: center;
    margin-bottom: 20px;
}

.page-vip-club h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #26A9E0; /* Brand color for section titles */
}