/* style/vip-club-benefits.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-color: #EA7C07;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --card-bg-light: #ffffff;
    --card-text-dark: #333333;
}

.page-vip-club-benefits {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Body background is dark, so text should be light */
    background-color: var(--bg-dark); /* This is technically inherited from body via shared.css */
}

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

/* Hero Section */
.page-vip-club-benefits__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-vip-club-benefits__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

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

.page-vip-club-benefits__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club-benefits__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-vip-club-benefits__btn-primary,
.page-vip-club-benefits__btn-secondary,
.page-vip-club-benefits a[class*="btn"] {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-vip-club-benefits__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-vip-club-benefits__btn-primary:hover {
    background-color: #1e87bb;
    border-color: #1e87bb;
}

.page-vip-club-benefits__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 20px;
}

.page-vip-club-benefits__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-vip-club-benefits__btn-login {
    background-color: var(--login-color);
    color: var(--text-light);
    border: 2px solid var(--login-color);
}

.page-vip-club-benefits__btn-login:hover {
    background-color: #c96200;
    border-color: #c96200;
}

/* General Section Styling */
.page-vip-club-benefits__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light); /* Default for sections on dark body */
}

.page-vip-club-benefits__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-light); /* Default for sections on dark body */
}

/* Dark background sections */
.page-vip-club-benefits__dark-section {
    background-color: #1a1a1a; /* A slightly lighter dark for contrast with body */
    padding: 60px 0;
    color: var(--text-light);
}

.page-vip-club-benefits__dark-section .page-vip-club-benefits__section-title,
.page-vip-club-benefits__dark-section .page-vip-club-benefits__section-description {
    color: var(--text-light);
}

/* Light background sections */
.page-vip-club-benefits__benefits-section,
.page-vip-club-benefits__transaction-section,
.page-vip-club-benefits__faq-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    color: var(--text-dark);
}

.page-vip-club-benefits__benefits-section .page-vip-club-benefits__section-title,
.page-vip-club-benefits__benefits-section .page-vip-club-benefits__section-description,
.page-vip-club-benefits__transaction-section .page-vip-club-benefits__section-title,
.page-vip-club-benefits__transaction-section .page-vip-club-benefits__section-description,
.page-vip-club-benefits__faq-section .page-vip-club-benefits__section-title,
.page-vip-club-benefits__faq-section .page-vip-club-benefits__section-description {
    color: var(--text-dark);
}