/* style/vip-club.css */

/* Variables for colors and typography */
:root {
    --page-vip-club-primary-color: #1A0D3B;
    --page-vip-club-secondary-color: #FFD700;
    --page-vip-club-text-dark: #1A0D3B;
    --page-vip-club-text-light: #FFFFFF;
    --page-vip-club-background-light: #F8F8F8;
    --page-vip-club-background-dark: #110927; /* Slightly lighter than primary for contrast */
    --page-vip-club-accent-color: #E5F2C4; /* Complementary to primary */
    --page-vip-club-font-family: 'Arial', sans-serif;
}

.page-vip-club {
    font-family: var(--page-vip-club-font-family);
    color: var(--page-vip-club-text-dark);
    line-height: 1.6;
    background-color: var(--page-vip-club-background-light);
}

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

.page-vip-club__hero-section {
    background: linear-gradient(135deg, var(--page-vip-club-primary-color) 0%, #3a2e5c 100%);
    color: var(--page-vip-club-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-vip-club__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-vip-club__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-vip-club__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-vip-club__section-title {
    font-size: 2.5em;
    color: var(--page-vip-club-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-club__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-vip-club-secondary-color);
    border-radius: 2px;
}

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

.page-vip-club__introduction,
.page-vip-club__tiers,
.page-vip-club__benefits,
.page-vip-club__exclusive-events,
.page-vip-club__how-to-join,
.page-vip-club__why-sao789-vip,
.page-vip-club__detail-pages {
    padding: 60px 0;
}

.page-vip-club__introduction {
    background-color: var(--page-vip-club-background-dark);
    color: var(--page-vip-club-text-light);
}

.page-vip-club__introduction .page-vip-club__section-title {
    color: var(--page-vip-club-text-light);
}

.page-vip-club__introduction .page-vip-club__section-description {
    color: rgba(255, 255, 255, 0.8);
}

.page-vip-club__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
    text-align: justify;
}

.page-vip-club__text-block a {
    color: var(--page-vip-club-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club__text-block a:hover {
    text-decoration: underline;
}

.page-vip-club__text-block--center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__cta-button {
    display: inline-block;
    background-color: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--page-vip-club-secondary-color);
    margin-top: 20px;
}

.page-vip-club__cta-button:hover {
    background-color: transparent;
    color: var(--page-vip-club-secondary-color);
    border-color: var(--page-vip-club-secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-club__cta-button--secondary {
    background-color: transparent;
    color: var(--page-vip-club-secondary-color);
    border: 2px solid var(--page-vip-club-secondary-color);
    margin-left: 15px;
}

.page-vip-club__cta-button--secondary:hover {
    background-color: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
}

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

.page-vip-club__tier-card,
.page-vip-club__benefit-item,
.page-vip-club__event-card {
    background-color: var(--page-vip-club-text-light);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__tier-card:hover,
.page-vip-club__benefit-item:hover,
.page-vip-club__event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-vip-club__tier-icon,
.page-vip-club__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-vip-club__tier-title,
.page-vip-club__benefit-title,
.page-vip-club__event-title {
    font-size: 1.8em;
    color: var(--page-vip-club-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club__tier-description,
.page-vip-club__benefit-text,
.page-vip-club__event-text {
    font-size: 1em;
    color: #444;
    line-height: 1.7;
}

.page-vip-club__event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-vip-club__how-to-join {
    background-color: var(--page-vip-club-background-dark);
    color: var(--page-vip-club-text-light);
}

.page-vip-club__how-to-join .page-vip-club__section-title {
    color: var(--page-vip-club-text-light);
}

.page-vip-club__how-to-join .page-vip-club__section-description {
    color: rgba(255, 255, 255, 0.8);
}

.page-vip-club__join-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-vip-club__step-item {
    background-color: var(--page-vip-club-text-light);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    padding-top: 70px;
}

.page-vip-club__step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    border: 5px solid var(--page-vip-club-primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-title {
    font-size: 1.8em;
    color: var(--page-vip-club-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club__step-text {
    font-size: 1em;
    color: #444;
    line-height: 1.7;
}

.page-vip-club__step-text a {
    color: var(--page-vip-club-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club__step-text a:hover {
    text-decoration: underline;
}

.page-vip-club__why-sao789-vip .page-vip-club__image-full-width {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club__cta-final {
    background: linear-gradient(45deg, var(--page-vip-club-secondary-color) 0%, #ffc107 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--page-vip-club-primary-color);
}

.page-vip-club__cta-final .page-vip-club__section-title {
    color: var(--page-vip-club-primary-color);
}

.page-vip-club__cta-final .page-vip-club__section-description {
    color: var(--page-vip-club-primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-vip-club__cta-final .page-vip-club__cta-button {
    background-color: var(--page-vip-club-primary-color);
    color: var(--page-vip-club-secondary-color);
    border-color: var(--page-vip-club-primary-color);
    margin: 0 10px;
}