/* style/vip-club.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* General Styles for VIP Club Page */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Use shared background, default to white */
}

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

.page-vip-club__section-title {
    font-size: 2.5em;
    color: #017439; /* Primary brand color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-club__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjusted for larger display */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

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

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

.page-vip-club__hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 900px;
    padding: 20px;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00; /* Register/Login font color for prominence */
    font-weight: bold;
}

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

.page-vip-club__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.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;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensures responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

.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;
}

/* Intro Section */
.page-vip-club__intro-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}
.page-vip-club__intro-section .page-vip-club__section-title {
    color: #017439;
}
.page-vip-club__intro-section .page-vip-club__section-description {
    color: #555555;
}

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 80px 0;
    background-color: #017439; /* Primary brand color as dark background */
    color: #FFFFFF;
}

.page-vip-club__benefits-section .page-vip-club__section-title {
    color: #FFFFFF;
}

.page-vip-club__benefits-section .page-vip-club__section-description {
    color: #f0f0f0;
}

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

.page-vip-club__benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club__benefit-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 250px; /* Max width for icon-like images */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.page-vip-club__benefit-title {
    font-size: 1.5em;
    color: #FFFF00; /* Highlight title */
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-vip-club__cta-container {
    text-align: center;
    margin-top: 60px;
}

/* Tier System Section */
.page-vip-club__tier-system-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}
.page-vip-club__tier-system-section .page-vip-club__section-title {
    color: #017439;
}
.page-vip-club__tier-system-section .page-vip-club__section-description {
    color: #555555;
}

.page-vip-club__tier-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-vip-club__tier-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.page-vip-club__tier-title {
    font-size: 1.6em;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-club__tier-description {
    font-size: 1em;
    color: #666666;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
    padding: 80px 0;
    background-color: #017439;
    color: #FFFFFF;
}

.page-vip-club__how-to-join-section .page-vip-club__section-title {
    color: #FFFFFF;
}

.page-vip-club__how-to-join-section .page-vip-club__section-description {
    color: #f0f0f0;
}

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

.page-vip-club__step-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-club__step-title {
    font-size: 1.4em;
    color: #FFFF00;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-vip-club__step-description a {
    color: #FFFF00;
    text-decoration: underline;
}

.page-vip-club__step-description a:hover {
    color: #FFFFFF;
}

/* Exclusive Promotions Section */
.page-vip-club__exclusive-promotions-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}
.page-vip-club__exclusive-promotions-section .page-vip-club__section-title {
    color: #017439;
}
.page-vip-club__exclusive-promotions-section .page-vip-club__section-description {
    color: #555555;
}

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

.page-vip-club__promo-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-vip-club__promo-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-club__promo-description {
    font-size: 1em;
    color: #666666;
}

/* Support Section */
.page-vip-club__support-section {
    padding: 80px 0;
    background-color: #017439;
    color: #FFFFFF;
}

.page-vip-club__support-section .page-vip-club__section-title {
    color: #FFFFFF;
}

.page-vip-club__support-section .page-vip-club__section-description {
    color: #f0f0f0;
}

.page-vip-club__support-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-vip-club__support-image {
    flex: 1;
    min-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.page-vip-club__support-text {
    flex: 2;
    min-width: 300px;
}

.page-vip-club__support-subtitle {
    font-size: 1.8em;
    color: #FFFF00;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club__support-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-vip-club__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}
.page-vip-club__faq-section .page-vip-club__section-title {
    color: #017439;
}
.page-vip-club__faq-section .page-vip-club__section-description {
    color: #555555;
}