/* style/vip-center.css */
.page-vip-center {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    background-color: #FFFFFF; /* Light background for the page */
    color: #333333; /* Dark text for readability on light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-vip-center__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    padding-bottom: 50px;
}

.page-vip-center__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.7); /* Darken image for text readability, no color change */
}

.page-vip-center__hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-vip-center__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.page-vip-center__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-vip-center__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-vip-center__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-vip-center__button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000; /* Main color for text */
}

.page-vip-center__button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-vip-center__button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Main color for text */
}

.page-vip-center__button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-vip-center__section-title {
    font-size: 2.5em;
    color: #000000; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    font-weight: bold;
}

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

.page-vip-center__benefits-grid, .page-vip-center__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.page-vip-center__benefit-card, .page-vip-center__promo-card, .page-vip-center__tier-card, .page-vip-center__detail-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space evenly */
    min-height: 380px; /* Ensure cards have a minimum height for consistency */
}

.page-vip-center__benefit-card:hover, .page-vip-center__promo-card:hover, .page-vip-center__tier-card:hover, .page-vip-center__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-center__benefit-icon, .page-vip-center__promo-image {
    width: 100%; /* Ensure image fills card width */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-center__benefit-title, .page-vip-center__promo-title, .page-vip-center__tier-name, .page-vip-center__detail-title {
    font-size: 1.6em;
    color: #000000; /* Main color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-center__detail-title a {
    color: #000000;
    text-decoration: none;
}

.page-vip-center__detail-title a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

.page-vip-center__benefit-text, .page-vip-center__promo-text, .page-vip-center__tier-description, .page-vip-center__detail-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to grow and push button to bottom */
}

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

.page-vip-center__tier-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding-bottom: 60px;
}

.page-vip-center__tier-card {
    min-height: 250px;
}

.page-vip-center__button--learn-more, .page-vip-center__button--view-all-promos, .page-vip-center__button--view-details, .page-vip-center__button--claim, .page-vip-center__button--join {
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    font-size: 1em;
    align-self: center; /* Center button in flex column */
}

.page-vip-center__button--learn-more:hover, .page-vip-center__button--view-all-promos:hover, .page-vip-center__button--view-details:hover, .page-vip-center__button--claim:hover, .page-vip-center__button--join:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-vip-center__faq-section {
    background-color: #f2f2f2;
    padding: 80px 0;
}

.page-vip-center__faq-items {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.page-vip-center__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-vip-center__faq-question {
    font-size: 1.4em;
    color: #000000;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.page-vip-center__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-vip-center__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-vip-center__faq-answer {
    font-size: 1em;
    color: #555555;
    padding: 0 25px 20px 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-center__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 15px;
}

.page-vip-center__detail-pages-list {
    padding: 80px 0;
}

.page-vip-center__detail-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.page-vip-center__detail-card {
    min-height: 280px;
}

.page-vip-center__cta-section {
    background-color: #000000; /* Main color as background */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-vip-center__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-vip-center__cta-title {
    font-size: 2.8em;
    color: #FCBC45; /* Login button color for highlight */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-center__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-vip-center__button--cta {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-vip-center__button--cta:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-center__hero-title {
        font-size: 3em;
    }
    .page-vip-center__section-title {
        font-size: 2.2em;
    }
    .page-vip-center__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-vip-center__hero-content {
        padding: 80px 15px;
    }
    .page-vip-center__hero-title {
        font-size: 2.5em;
    }
    .page-vip-center__hero-description {
        font-size: 1.1em;
    }
    .page-vip-center__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-center__button {
        width: 100%;
        max-width: 300px;
    }
    .page-vip-center__section-title {
        font-size: 2em;
        padding-top: 40px;
    }
    .page-vip-center__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-vip-center__benefits-grid, .page-vip-center__promo-grid, .page-vip-center__tier-details, .page-vip-center__detail-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 40px;
    }
    .page-vip-center__benefit-card, .page-vip-center__promo-card, .page-vip-center__tier-card, .page-vip-center__detail-card {
        padding: 25px;
        min-height: auto;
    }
    .page-vip-center__faq-section {
        padding: 60px 0;
    }
    .page-vip-center__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-vip-center__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-vip-center__cta-section {
        padding: 60px 15px;
    }
    .page-vip-center__cta-title {
        font-size: 2em;
    }
    .page-vip-center__cta-description {
        font-size: 1em;
    }
    .page-vip-center__button--cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    /* Ensure content images do not overflow */
    .page-vip-center img {
        max-width: 100%;
        height: auto;
    }
    .page-vip-center__benefit-icon, .page-vip-center__promo-image {
        height: auto; /* Allow height to adjust for mobile */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-vip-center__hero-title {
        font-size: 2em;
    }
    .page-vip-center__hero-description {
        font-size: 0.95em;
    }
    .page-vip-center__section-title {
        font-size: 1.8em;
    }
    .page-vip-center__cta-title {
        font-size: 1.8em;
    }
    .page-vip-center__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}