/* style/ban-ca.css */
:root {
    --primary-color: #0A2239;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f4f7f6;
    --bg-dark: #071725;
    --border-color: #e0e0e0;
}

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

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

.page-ban-ca h1, .page-ban-ca h2, .page-ban-ca h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-ban-ca h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
}

.page-ban-ca h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

.page-ban-ca h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-ban-ca h3 {
    font-size: 1.6em;
    color: var(--primary-color);
}

.page-ban-ca p {
    margin-bottom: 15px;
}

.page-ban-ca a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-ban-ca a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.page-ban-ca .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.page-ban-ca .cta-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .cta-button.small-button {
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 30px;
}

/* Hero Section */
.page-ban-ca .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-dark);
    color: var(--text-light);
}

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

.page-ban-ca .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-ban-ca .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-ban-ca .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-ban-ca .hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ban-ca .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Intro Section */
.page-ban-ca .intro-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.page-ban-ca .feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-ban-ca .feature-item .feature-icon {
    width: 100%; /* Ensure images are large, not icons */
    max-width: 250px; /* Example max-width for content images */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-ban-ca .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

/* Guide Section */
.page-ban-ca .guide-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-ban-ca .guide-section h2 {
    color: var(--secondary-color);
}

.page-ban-ca .guide-section h2::after {
    background-color: var(--text-light);
}

.page-ban-ca .guide-section p {
    color: var(--text-light);
}

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

.page-ban-ca .step-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.page-ban-ca .step-item .step-number {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px;
    border: 3px solid var(--text-light);
}

.page-ban-ca .step-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

.page-ban-ca .step-item p {
    color: var(--text-light);
}

/* Game Versions Section */
.page-ban-ca .game-versions-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.page-ban-ca .game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-ban-ca .game-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-ban-ca .game-card h3 {
    padding: 15px 20px 0;
    font-size: 1.4em;
}

.page-ban-ca .game-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-ban-ca .game-card h3 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-ban-ca .game-card p {
    padding: 0 20px 20px;
    color: var(--text-dark);
}

.page-ban-ca .note-text {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: var(--primary-color);
}

/* Promotions Section */
.page-ban-ca .promotions-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-ban-ca .promotions-section h2 {
    color: var(--secondary-color);
}

.page-ban-ca .promotions-section h2::after {
    background-color: var(--text-light);
}

.page-ban-ca .promotions-section p {
    color: var(--text-light);
}

.page-ban-ca .promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-ban-ca .promo-list li {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .promo-list li h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-ban-ca .promo-list li p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Security & Support Section */
.page-ban-ca .security-support-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.page-ban-ca .info-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-ban-ca .info-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-ban-ca .faq-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-ban-ca .faq-section h2 {
    color: var(--secondary-color);
}

.page-ban-ca .faq-section h2::after {
    background-color: var(--text-light);
}

.page-ban-ca .faq-list {
    margin-top: 40px;
}

.page-ban-ca .faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-ban-ca .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-ban-ca .faq-question:hover {
    background: #1a3a5a;
}

.page-ban-ca .faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-ban-ca .faq-question h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.2em;
}

.page-ban-ca .faq-toggle {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-ban-ca .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--text-light);
}

.page-ban-ca .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-radius: 0 0 5px 5px;
}

.page-ban-ca .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to accommodate content */
    padding: 15px;
    background: #1a3a5a;
}

.page-ban-ca .faq-answer p {
    margin: 0;
    color: var(--text-light);
}

/* Conclusion Section */
.page-ban-ca .conclusion-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.page-ban-ca .conclusion-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-ban-ca h1 {
        font-size: 2.2em;
    }
    .page-ban-ca h2 {
        font-size: 1.8em;
    }
    .page-ban-ca h3 {
        font-size: 1.3em;
    }
    .page-ban-ca .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-ban-ca .hero-section {
        padding: 40px 15px;
    }
    .page-ban-ca .hero-image img {
        border-radius: 4px;
    }
    .page-ban-ca h1 {
        font-size: 1.8em;
    }
    .page-ban-ca h2 {
        font-size: 1.6em;
    }
    .page-ban-ca .features-grid, .page-ban-ca .step-by-step, .page-ban-ca .game-cards-grid, .page-ban-ca .info-grid {
        grid-template-columns: 1fr;
    }
    .page-ban-ca .feature-item, .page-ban-ca .step-item, .page-ban-ca .game-card, .page-ban-ca .info-item, .page-ban-ca .promo-list li {
        padding: 20px;
    }
    .page-ban-ca .step-item .step-number {
        margin-top: -45px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-ban-ca .faq-question {
        padding: 12px;
    }
    .page-ban-ca .faq-question h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-ban-ca .hero-content h1 {
        font-size: 1.5em;
    }
    .page-ban-ca .hero-content p {
        font-size: 1em;
    }
    .page-ban-ca .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-ban-ca .container {
        padding: 15px;
    }
}