.page-ban-ca {
    font-family: Arial, sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy); /* Body background from shared.css is dark */
}

.page-ban-ca__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-ban-ca__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F3F8FF; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-ban-ca__section-description {
    font-size: 1.1em;
    color: #AFC4E8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca__text-main {
    color: #F3F8FF;
}

.page-ban-ca__text-secondary {
    color: #AFC4E8;
}

.page-ban-ca__card {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #F3F8FF; /* Text Main */
}

/* Hero Section */
.page-ban-ca__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #113B7A 0%, #08162B 100%); /* Blue Gold */
    overflow: hidden;
}

.page-ban-ca__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 20px 16px;
}

.page-ban-ca__hero-image-wrapper {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: center;
    order: 2;
}

.page-ban-ca__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: block;
}

.page-ban-ca__hero-content {
    flex: 1 1 40%;
    min-width: 300px;
    order: 1;
    text-align: left;
}

.page-ban-ca__hero-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 */
    font-weight: 700;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-ban-ca__hero-description {
    font-size: 1.15em;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-ban-ca__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-ban-ca__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
}

.page-ban-ca__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF; /* Text Main */
    border: none;
    box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-ban-ca__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43, 115, 246, 0.6);
}

.page-ban-ca__btn-secondary {
    background: transparent;
    color: #F3F8FF; /* Text Main */
    border: 2px solid #2B73F6;
}

.page-ban-ca__btn-secondary:hover {
    background: #2B73F6;
    color: #F3F8FF;
    transform: translateY(-3px);
}

/* Intro Section */
.page-ban-ca__intro-section {
    padding: 60px 0;
    background-color: #08162B; /* Deep Navy */
}

.page-ban-ca__intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-ban-ca__intro-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border-radius: 12px;
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca__intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__icon-box-media {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F2C14E; /* Gold */
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-ban-ca__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.page-ban-ca__intro-item-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 15px;
}

.page-ban-ca__intro-item-text {
    font-size: 1em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

/* Game Showcase Section */
.page-ban-ca__game-showcase-section {
    padding: 60px 0;
    background-color: #113B7A; /* Main color */
}

.page-ban-ca__tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.page-ban-ca__tab-button {
    background-color: #244D84; /* Border */
    color: #AFC4E8; /* Text Secondary */
    border: 1px solid #244D84;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-ban-ca__tab-button:hover,
.page-ban-ca__tab-button.is-active {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF; /* Text Main */
    border-color: transparent;
}

.page-ban-ca__game-panel {
    display: none;
}

.page-ban-ca__game-panel.is-active {
    display: block;
}

.page-ban-ca__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-ban-ca__game-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
}

.page-ban-ca__game-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-ban-ca__game-card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
}

.page-ban-ca__game-card-text {
    font-size: 0.95em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Guide Section */
.page-ban-ca__guide-section {
    padding: 60px 0;
    background-color: #08162B; /* Deep Navy */
}

.page-ban-ca__guide-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-ban-ca__guide-steps {
    flex: 1 1 55%;
    min-width: 300px;
}

.page-ban-ca__guide-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.page-ban-ca__guide-step-number {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF; /* Text Main */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(43, 115, 246, 0.3);
}

.page-ban-ca__guide-item-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 5px;
}

.page-ban-ca__guide-item-text {
    font-size: 1em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

.page-ban-ca__guide-image-wrapper {
    flex: 1 1 35%;
    min-width: 280px;
    text-align: center;
}

.page-ban-ca__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-ban-ca__guide-cta {
    text-align: center;
    margin-top: 40px;
}

/* Benefits Section */
.page-ban-ca__benefits-section {
    padding: 60px 0;
    background-color: #113B7A; /* Main color */
}

.page-ban-ca__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-ban-ca__benefit-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__benefit-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 15px;
}

.page-ban-ca__benefit-text {
    font-size: 1em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

/* FAQ Section */
.page-ban-ca__faq-section {
    padding: 60px 0;
    background-color: #08162B; /* Deep Navy */
}

.page-ban-ca__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-ban-ca__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-ban-ca__faq-item[open] {
    background-color: #113B7A; /* Main color when open */
    border-color: #1D5FD1; /* Auxiliary color */
}

.page-ban-ca__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    background-color: #10233F; /* Card BG */
    border-bottom: 1px solid #244D84; /* Divider */
    list-style: none; /* Hide default marker */
}

.page-ban-ca__faq-question::-webkit-details-marker {
    display: none;
}

.page-ban-ca__faq-question:hover {
    background-color: #113B7A;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-question {
    border-bottom-color: transparent;
}

.page-ban-ca__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
    color: #F2C14E; /* Gold */
}

.page-ban-ca__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.7;
    background-color: #113B7A;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-ban-ca__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-ban-ca__hero-image-wrapper {
        order: 1;
    }

    .page-ban-ca__hero-content {
        order: 2;
        text-align: center;
    }

    .page-ban-ca__hero-cta-buttons {
        justify-content: center;
    }

    .page-ban-ca__guide-content {
        flex-direction: column;
    }

    .page-ban-ca__guide-steps {
        order: 2;
    }

    .page-ban-ca__guide-image-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-ban-ca__container,
    .page-ban-ca__hero-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-ban-ca__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .page-ban-ca__section-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-ban-ca__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-ban-ca__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-ban-ca__hero-description {
        font-size: 1em;
    }

    /* Buttons */
    .page-ban-ca__hero-cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-ban-ca__cta-button,
    .page-ban-ca__btn-primary,
    .page-ban-ca__btn-secondary,
    .page-ban-ca a[class*="button"],
    .page-ban-ca a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Intro Section - 3-column remains, but items are smaller */
    .page-ban-ca__intro-grid {
        grid-template-columns: 1fr;
    }

    .page-ban-ca__icon-box-media {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }

    .page-ban-ca__intro-item-title {
        font-size: 1.3em;
    }

    /* Game Showcase Section - Tabs */
    .page-ban-ca__tab-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .page-ban-ca__tab-button {
        width: 100%;
        box-sizing: border-box;
    }

    .page-ban-ca__game-card-grid {
        grid-template-columns: 1fr;
    }

    .page-ban-ca__game-card-image {
        height: 200px;
    }

    /* Guide Section */
    .page-ban-ca__guide-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-ban-ca__guide-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .page-ban-ca__guide-step-number {
        margin: 0 auto 10px;
    }

    .page-ban-ca__guide-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Benefits Section */
    .page-ban-ca__benefits-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ Section */
    .page-ban-ca__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-ban-ca__faq-answer {
        padding: 15px 20px;
    }

    /* Universal Image Adaptation */
    .page-ban-ca img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-ban-ca__hero-image,
    .page-ban-ca__guide-image,
    .page-ban-ca__game-card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Ensure containers do not overflow */
    .page-ban-ca__section,
    .page-ban-ca__card,
    .page-ban-ca__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}