.page-ban-ca {
    font-family: 'Arial', sans-serif;
    color: #F3F8FF; /* Text Main */
    line-height: 1.6;
    background-color: #08162B; /* Deep Navy from body background */
}

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

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

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

.page-ban-ca__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #AFC4E8; /* Text Secondary */
    text-align: justify;
}

.page-ban-ca__card {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F3F8FF;
}

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

.page-ban-ca__card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #F2C14E; /* Gold */
}

.page-ban-ca__card-description {
    font-size: 0.95em;
    color: #AFC4E8; /* Text Secondary */
}

.page-ban-ca__cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-ban-ca__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
    color: #ffffff;
    border: none;
}

.page-ban-ca__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
    background: #10233F; /* Card BG */
    color: #F2C14E; /* Gold */
    border: 2px solid #2B73F6;
}

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

/* Hero Section */
.page-ban-ca__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: #08162B;
}

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

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

.page-ban-ca__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

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

/* Intro Section */
.page-ban-ca__intro-section .page-ban-ca__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.page-ban-ca__features-section {
    padding: 60px 0;
    background-color: #08162B;
}

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

.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 #1D5FD1;
    box-shadow: 0 0 15px rgba(29, 95, 209, 0.6);
}

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

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

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

.page-ban-ca__game-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-ban-ca__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__game-card .page-ban-ca__cta-button {
    margin-top: auto; /* Push button to bottom */
    width: 80%;
}

/* Strategies Section */
.page-ban-ca__strategies-section {
    padding: 60px 0;
    background-color: #08162B;
}

.page-ban-ca__strategy-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

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

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

.page-ban-ca__strategy-list li {
    background: rgba(29, 95, 209, 0.1);
    border-left: 4px solid #1D5FD1;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #AFC4E8;
}

.page-ban-ca__strategy-list li strong {
    color: #F2C14E;
}

.page-ban-ca__strategy-image-wrapper {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-ban-ca__strategy-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-ban-ca__promo-image {
    flex: 1 1 40%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__promo-text {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.page-ban-ca__guide-list {
    list-style: none;
    counter-reset: guide-step;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-ban-ca__guide-list li {
    counter-increment: guide-step;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    color: #AFC4E8;
    text-align: justify;
}

.page-ban-ca__guide-list li::before {
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1D5FD1;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-ban-ca__guide-list li strong {
    color: #F2C14E;
    display: block;
    margin-bottom: 5px;
}

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

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

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

.page-ban-ca__faq-image-wrapper {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-ban-ca__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__faq-items {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-ban-ca__faq-item {
    cursor: pointer;
    user-select: none;
    background-color: #10233F;
    border: 1px solid #244D84;
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-ban-ca__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-weight: bold;
    font-size: 1.1em;
    color: #F2C14E;
    list-style: none;
    outline: none;
}

.page-ban-ca__faq-item summary::-webkit-details-marker,
.page-ban-ca__faq-item summary::marker {
    display: none;
}

.page-ban-ca__faq-item[open] summary {
    color: #F3F8FF;
    background-color: #113B7A; /* Primary color when open */
}

.page-ban-ca__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-ban-ca__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.page-ban-ca__faq-answer {
    padding: 15px 25px 25px;
    font-size: 1em;
    color: #AFC4E8;
    border-top: 1px solid #244D84;
    text-align: justify;
}

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

.page-ban-ca__final-cta-group {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

    .page-ban-ca__hero-content,
    .page-ban-ca__strategy-content,
    .page-ban-ca__promo-text,
    .page-ban-ca__faq-items {
        min-width: unset;
        width: 100%;
    }

    .page-ban-ca__hero-image-wrapper,
    .page-ban-ca__strategy-image-wrapper,
    .page-ban-ca__promo-image,
    .page-ban-ca__faq-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-ban-ca__hero-image,
    .page-ban-ca__strategy-image,
    .page-ban-ca__promo-image,
    .page-ban-ca__faq-image {
        max-width: 80%;
        margin: 0 auto;
    }

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

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

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

    .page-ban-ca__content-container {
        padding: 20px 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO Section */
    .page-ban-ca__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-ban-ca__hero-container {
        padding: 20px 10px;
        gap: 20px;
    }

    .page-ban-ca__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-ban-ca__hero-description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .page-ban-ca__hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .page-ban-ca__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    /* Module 1 (Features) - Icon Box Media */
    .page-ban-ca__features-section {
        padding: 30px 0;
    }
    .page-ban-ca__feature-grid {
        gap: 20px;
    }
    .page-ban-ca__icon-box-media {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }
    .page-ban-ca__icon-box-media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Game Types Section */
    .page-ban-ca__game-types-section {
        padding: 30px 0;
    }
    .page-ban-ca__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-ban-ca__game-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-ban-ca__game-card .page-ban-ca__cta-button {
        width: 100%;
    }

    /* Strategies Section */
    .page-ban-ca__strategies-section {
        padding: 30px 0;
    }
    .page-ban-ca__strategy-layout {
        gap: 20px;
    }
    .page-ban-ca__strategy-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-ban-ca__strategy-list li {
        font-size: 0.95em;
        padding: 12px;
    }

    /* Promo Section */
    .page-ban-ca__promo-section {
        padding: 30px 0;
    }
    .page-ban-ca__promo-content {
        gap: 20px;
    }
    .page-ban-ca__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Guide Section */
    .page-ban-ca__guide-section {
        padding: 30px 0;
    }
    .page-ban-ca__guide-list {
        margin: 20px auto;
    }
    .page-ban-ca__guide-list li {
        font-size: 1em;
        padding-left: 35px;
        margin-bottom: 20px;
    }
    .page-ban-ca__guide-list li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-ban-ca__guide-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    /* FAQ Section */
    .page-ban-ca__faq-section {
        padding: 30px 0;
    }
    .page-ban-ca__faq-grid {
        gap: 20px;
    }
    .page-ban-ca__faq-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-ban-ca__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-ban-ca__faq-answer {
        padding: 10px 20px 20px;
        font-size: 0.9em;
    }

    /* Final CTA Section */
    .page-ban-ca__cta-final {
        padding: 30px 0;
    }
    .page-ban-ca__final-cta-group {
        flex-direction: column;
        gap: 10px;
    }

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

    .page-ban-ca__text-block {
        font-size: 0.9em;
    }

    .page-ban-ca__card-title {
        font-size: 1.2em;
    }

    .page-ban-ca__card-description {
        font-size: 0.85em;
    }

    /* General image and container responsiveness */
    .page-ban-ca img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-ban-ca__section, .page-ban-ca__card, .page-ban-ca__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    /* Button container specific for mobile */
    .page-ban-ca__hero-cta-group, .page-ban-ca__guide-cta-group, .page-ban-ca__final-cta-group {
        flex-direction: column !important;
        gap: 10px !important;
        padding-left: 10px;
        padding-right: 10px;
    }
}