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

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

.page-ban-ca__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    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__btn-primary,
.page-ban-ca__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

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

.page-ban-ca__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold */
    margin-left: 20px;
}

.page-ban-ca__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    transform: translateY(-2px);
}

.page-ban-ca__btn-small {
    padding: 10px 20px;
    font-size: 1em;
}

/* Hero Section */
.page-ban-ca__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: var(--deep-navy);
}

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

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

.page-ban-ca__hero-title {
    font-size: 3.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

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

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

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

/* Intro Section */
.page-ban-ca__intro-section {
    padding: 60px 0;
}

.page-ban-ca__dark-section {
    background-color: #10233F; /* Card BG */
}

.page-ban-ca__feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-ban-ca__feature-item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__card {
    background-color: #10233F; /* Card BG */
    color: #F3F8FF; /* Text Main */
    border: 1px solid #244D84; /* Border */
}

.page-ban-ca__icon-box-media {
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F2C14E; /* Gold */
    box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

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

.page-ban-ca__feature-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

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

/* Guide Section */
.page-ban-ca__guide-section {
    padding: 60px 0;
}

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

.page-ban-ca__step-item {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 25px;
    border-radius: 12px;
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-ban-ca__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #F2C14E; /* Gold */
    box-shadow: 0 0 10px rgba(79, 168, 255, 0.7);
}

.page-ban-ca__step-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

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

.page-ban-ca__cta-buttons--centered {
    justify-content: center;
    display: flex;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

/* Game List Section */
.page-ban-ca__game-list-section {
    padding: 60px 0;
}

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

.page-ban-ca__game-card {
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-ban-ca__game-thumbnail {
    max-width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #244D84; /* Divider */
}

.page-ban-ca__game-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-ban-ca__game-title a {
    color: #F2C14E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-ban-ca__game-title a:hover {
    color: #4FA8FF; /* Glow */
}

.page-ban-ca__game-text {
    color: #AFC4E8; /* Text Secondary */
    font-size: 1em;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-ban-ca__game-card .page-ban-ca__btn-primary {
    margin: 0 auto 20px;
}

/* Tips Section */
.page-ban-ca__tips-section {
    padding: 60px 0;
}

.page-ban-ca__tips-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-ban-ca__tips-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-ban-ca__tips-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-ban-ca__tips-list li {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #F3F8FF; /* Text Main */
    font-size: 1.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__tips-list li strong {
    color: #F2C14E; /* Gold */
}

.page-ban-ca__tips-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

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

/* Promo Section */
.page-ban-ca__promo-section {
    padding: 60px 0;
}

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

.page-ban-ca__promo-item {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-ban-ca__promo-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-ban-ca__promo-text {
    color: #AFC4E8; /* Text Secondary */
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-ban-ca__faq-section {
    padding: 60px 0;
}

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

.page-ban-ca__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    background-color: #10233F; /* Card BG */
    border-bottom: 1px solid #244D84; /* Divider */
    list-style: none;
}

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

.page-ban-ca__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
    content: '−';
}

.page-ban-ca__faq-answer {
    padding: 20px;
    background-color: #08162B; /* Deep Navy */
    color: #AFC4E8; /* Text Secondary */
    border-top: 1px solid #1B3357; /* Divider */
}

.page-ban-ca__faq-answer p {
    margin: 0;
}

/* Final CTA Section */
.page-ban-ca__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-ban-ca__cta-final-content {
    padding: 40px 16px;
    border-radius: 12px;
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__cta-final-title {
    font-size: 2.8em;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
}

.page-ban-ca__cta-final-description {
    font-size: 1.2em;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-ban-ca__hero-title {
        font-size: 3em;
    }

    .page-ban-ca__section-title {
        font-size: 2em;
    }

    .page-ban-ca__hero-container,
    .page-ban-ca__tips-grid {
        flex-direction: column;
        text-align: center;
    }

    .page-ban-ca__hero-content,
    .page-ban-ca__hero-image,
    .page-ban-ca__tips-content,
    .page-ban-ca__tips-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .page-ban-ca__icon-box-media {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .page-ban-ca {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-ban-ca__content-container,
    .page-ban-ca__hero-container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-ban-ca__hero-title {
        font-size: 2.5em;
    }

    .page-ban-ca__section-title,
    .page-ban-ca__cta-final-title {
        font-size: 1.8em;
    }

    .page-ban-ca__hero-description,
    .page-ban-ca__section-description,
    .page-ban-ca__cta-final-description {
        font-size: 1em;
    }

    /* Buttons */
    .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;
        margin-left: 0 !important; /* Remove margin for secondary button */
        margin-bottom: 10px;
    }

    .page-ban-ca__hero-cta-buttons,
    .page-ban-ca__cta-buttons--centered {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Images */
    .page-ban-ca img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-ban-ca__hero-main-img,
    .page-ban-ca__game-thumbnail,
    .page-ban-ca__tips-img {
        border-radius: 8px;
    }

    /* Feature Section (Module 1) */
    .page-ban-ca__feature-list {
        flex-direction: column;
        align-items: center;
    }

    .page-ban-ca__feature-item {
        max-width: 100%;
        padding: 20px;
    }

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

    /* Guide Section */
    .page-ban-ca__guide-steps {
        flex-direction: column;
        align-items: center;
    }

    .page-ban-ca__step-item {
        max-width: 100%;
        padding-top: 50px;
    }

    .page-ban-ca__step-number {
        top: -25px;
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }

    /* Game List Section */
    .page-ban-ca__game-grid {
        grid-template-columns: 1fr;
    }

    /* Tips Section */
    .page-ban-ca__tips-grid {
        flex-direction: column-reverse;
    }

    /* Promo Section */
    .page-ban-ca__promo-list {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .page-ban-ca__hero-title {
        font-size: 2em;
    }

    .page-ban-ca__section-title,
    .page-ban-ca__cta-final-title {
        font-size: 1.5em;
    }

    .page-ban-ca__hero-description,
    .page-ban-ca__section-description,
    .page-ban-ca__cta-final-description {
        font-size: 0.9em;
    }

    .page-ban-ca__btn-primary,
    .page-ban-ca__btn-secondary {
        font-size: 1em;
        padding: 12px 20px;
    }
}