/* style/vip-club.css */
/* Base styles for the VIP Club page */
.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Assuming body background is dark, per instructions */
    background-color: transparent; /* Body background is handled by shared.css var(--dark-bg-1) */
}

/* Container for content sections */
.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section styling */
.page-vip-club__section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-club__dark-bg {
    background-color: #017439; /* Primary brand color for dark sections */
    color: #ffffff;
}

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

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #ffffff;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Clear fixed header */
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-vip-club__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-vip-club__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-vip-club__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* CTA Buttons */
.page-vip-club__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-vip-club__btn-primary {
    background-color: #C30808; /* Custom Register/Login button background */
    color: #FFFF00; /* Custom Register/Login button font */
    border: 2px solid #C30808;
}

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

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

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

/* Section Titles & Descriptions */
.page-vip-club__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: inherit; /* Inherit color from parent section */
}

.page-vip-club__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

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

.page-vip-club__card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card background for dark sections */
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-club__light-bg .page-vip-club__card {
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.page-vip-club__card:hover {
    transform: translateY(-10px);
}

.page-vip-club__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-vip-club__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: inherit;
}

.page-vip-club__card-text {
    font-size: 1em;
    color: inherit;
}

/* Feature List */
.page-vip-club__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-vip-club__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-vip-club__feature-item .page-vip-club__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: inherit;
}

.page-vip-club__feature-item .page-vip-club__feature-text {
    font-size: 1em;
    color: inherit;
}

.page-vip-club__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
}

/* Video Section */
.page-vip-club__video-section {
    padding: 60px 0;
    background-color: #017439; /* Use primary brand color for video section */
    color: #ffffff;
}

.page-vip-club__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px; /* Limit video width */
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.page-vip-club__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

/* FAQ Section */
.page-vip-club__faq-section {
    padding: 60px 0;
    text-align: left;
    background-color: #017439; /* Primary brand color for FAQ section */
    color: #ffffff;
}

.page-vip-club__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-vip-club__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}