/* style/vip-zone.css */

:root {
    --primary-color: #0A192F; /* Deep Tech Blue */
    --secondary-color: #FFD700; /* Luxury Gold */
    --text-light: #F0F2F5; /* Light grey for text on dark backgrounds */
    --text-dark: #333333; /* Dark grey for text on light backgrounds */
    --background-dark: #1A2B47; /* Slightly lighter dark background */
    --background-light: #FFFFFF; /* White background */
    --border-color: #3A4A67;
    --shadow-color: rgba(0, 0, 0, 0.2);
}

.page-vip-zone {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

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

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

.page-vip-zone .section-description {
    font-size: 1.1em;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-zone .text-center {
    text-align: center;
}

.page-vip-zone .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border: none;
}

.page-vip-zone .cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-vip-zone .cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.3);
    border: 2px solid var(--secondary-color);
}

.page-vip-zone .cta-button-secondary:hover {
    background: var(--background-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.4);
}

/* Hero Section */
.page-vip-zone .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--primary-color);
    overflow: hidden;
}

.page-vip-zone .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-vip-zone .hero-image {
    width: 100%;
    max-width: 1000px; /* Adjust max-width for visual balance */
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
}

.page-vip-zone .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-light);
}

.page-vip-zone .main-title {
    font-size: 3.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-vip-zone .hero-description {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-vip-zone .section-intro {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-vip-zone .feature-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-vip-zone .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-zone .feature-icon {
    width: 120px; /* Increased size for content image */
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-vip-zone .feature-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-vip-zone .feature-text {
    font-size: 1em;
    color: var(--text-dark);
}

/* Section Tiers */
.page-vip-zone .section-tiers {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-vip-zone .section-tiers .section-title, 
.page-vip-zone .section-tiers .section-description {
    color: var(--text-light);
}

.page-vip-zone .section-tiers .section-title::after {
    background-color: var(--secondary-color);
}

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

.page-vip-zone .tier-card {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-zone .tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-vip-zone .tier-title {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-zone .tier-requirement {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-vip-zone .tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
}

.page-vip-zone .tier-benefits li {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-vip-zone .tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.page-vip-zone .tier-image {
    width: 150px; /* Increased size for content image */
    height: 150px;
    object-fit: contain;
    margin-top: 20px;
}

/* Section Benefits */
.page-vip-zone .section-benefits {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-vip-zone .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-vip-zone .benefit-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}

.page-vip-zone .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-vip-zone .benefit-text {
    font-size: 1em;
    color: var(--text-dark);
}

/* Section Join & Upgrade */
.page-vip-zone .section-join-upgrade {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-vip-zone .section-join-upgrade .section-title,
.page-vip-zone .section-join-upgrade .section-description {
    color: var(--text-light);
}

.page-vip-zone .section-join-upgrade .section-title::after {
    background-color: var(--secondary-color);
}

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

.page-vip-zone .step-item {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-zone .step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-zone .step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.page-vip-zone .step-title {
    font-size: 1.8em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-vip-zone .step-text {
    font-size: 1em;
    color: var(--text-light);
}

/* Section Support */
.page-vip-zone .section-support {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-vip-zone .support-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-vip-zone .support-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-zone .support-icon {
    width: 120px; /* Increased size for content image */
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-vip-zone .support-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-vip-zone .support-text {
    font-size: 1em;
    color: var(--text-dark);
}

.page-vip-zone .support-contact {
    font-size: 1.1em;
    text-align: center;
    margin-top: 40px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Section FAQ */
.page-vip-zone .section-faq {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-vip-zone .section-faq .section-title,
.page-vip-zone .section-faq .section-description {
    color: var(--text-light);
}

.page-vip-zone .section-faq .section-title::after {
    background-color: var(--secondary-color);
}

.page-vip-zone .faq-list {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-zone .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-vip-zone .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-vip-zone .faq-question:hover {
    background: #15305a;
}

.page-vip-zone .faq-question h3 {
    font-size: 1.2em;
    margin: 0;
    color: var(--text-light);
    font-weight: bold;
}

.page-vip-zone .faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-vip-zone .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-vip-zone .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    background: var(--background-dark);
    color: var(--text-light);
}

.page-vip-zone .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 25px;
    border-top: 1px solid var(--border-color);
}

.page-vip-zone .faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-light);
}

/* Section Latest News */
.page-vip-zone .section-latest-news {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-vip-zone .news-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-vip-zone .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-zone .news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-vip-zone .news-card-content {
    padding: 25px;
}

.page-vip-zone .news-title {
    font-size: 1.5em;
    margin: 15px 0 10px 0;
    font-weight: bold;
}

.page-vip-zone .news-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vip-zone .news-title a:hover {
    color: var(--secondary-color);
}

.page-vip-zone .news-excerpt {
    font-size: 0.95em;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-vip-zone .news-date {
    font-size: 0.85em;
    color: #777;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-zone .main-title {
        font-size: 3em;
    }
    .page-vip-zone .hero-description {
        font-size: 1.2em;
    }
    .page-vip-zone .section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-vip-zone .hero-section {
        padding: 60px 15px;
    }
    .page-vip-zone .hero-image {
        margin-bottom: 30px;
    }
    .page-vip-zone .main-title {
        font-size: 2.5em;
    }
    .page-vip-zone .hero-description {
        font-size: 1.1em;
    }
    .page-vip-zone .cta-button, .page-vip-zone .cta-button-secondary {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-vip-zone .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-vip-zone .section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-vip-zone .feature-grid, .page-vip-zone .tier-cards, .page-vip-zone .benefit-grid, .page-vip-zone .steps-grid, .page-vip-zone .support-grid, .page-vip-zone .news-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-zone .feature-item, .page-vip-zone .tier-card, .page-vip-zone .benefit-item, .page-vip-zone .step-item, .page-vip-zone .support-item, .page-vip-zone .news-card {
        padding: 25px;
    }
    .page-vip-zone .feature-icon, .page-vip-zone .tier-image, .page-vip-zone .support-icon {
        width: 100px;
        height: 100px;
    }
    .page-vip-zone .faq-question {
        padding: 15px 20px;
    }
    .page-vip-zone .faq-question h3 {
        font-size: 1.1em;
    }
    .page-vip-zone .faq-answer {
        padding: 0 20px;
    }
    .page-vip-zone .faq-item.active .faq-answer {
        padding: 20px;
    }
    .page-vip-zone .news-image {
        height: 200px;
    }
    .page-vip-zone .news-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-vip-zone .main-title {
        font-size: 2em;
    }
    .page-vip-zone .hero-description {
        font-size: 0.95em;
    }
    .page-vip-zone .section-title {
        font-size: 1.5em;
    }
    .page-vip-zone .step-number {
        font-size: 2.5em;
    }
    .page-vip-zone .feature-title, .page-vip-zone .tier-title, .page-vip-zone .benefit-title, .page-vip-zone .step-title, .page-vip-zone .support-title {
        font-size: 1.5em;
    }
}