.page-ban-ca {
    font-family: Arial, sans-serif;
    color: #FFF1E8; /* Main text color for dark background */
    background-color: #140C0C; /* Page background color */
}

.page-ban-ca__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #2A1212; /* Card BG color for hero section */
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-ban-ca__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFB04A; /* Gold color for title */
}

.page-ban-ca__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-ban-ca__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    border: none;
}

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

.page-ban-ca__btn-secondary {
    background: #2A1212;
    color: #FFB04A;
    border: 2px solid #D86A14;
}

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

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

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

.page-ban-ca__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 15px;
    line-height: 1.7;
    color: #FFF1E8;
}

.page-ban-ca__section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #FFB04A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-ban-ca__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFB04A, #D86A14);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-ban-ca__text-block {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.page-ban-ca__why-choose-section {
    background-color: #2A1212;
}

.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 {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
}

.page-ban-ca__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-ban-ca__feature-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFB04A;
    margin-bottom: 15px;
}

.page-ban-ca__feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
}

.page-ban-ca__guide-section {
    background-color: #140C0C;
}

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

.page-ban-ca__guide-steps {
    flex: 1 1 55%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-ban-ca__step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    border-radius: 10px;
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
}

.page-ban-ca__step-number {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.page-ban-ca__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFB04A;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-ban-ca__step-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #FFF1E8;
}

.page-ban-ca__guide-image {
    flex: 1 1 35%;
    text-align: center;
}

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

.page-ban-ca__popular-games-section {
    background-color: #2A1212;
}

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

.page-ban-ca__game-card {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-ban-ca__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-ban-ca__game-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFB04A;
    margin-bottom: 10px;
}

.page-ban-ca__game-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #FFF1E8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-ban-ca__game-btn {
    width: 80%;
    padding: 12px 20px;
    font-size: 1rem;
}

.page-ban-ca__promo-section {
    background-color: #140C0C;
}

.page-ban-ca__promo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    margin-top: 40px;
}

.page-ban-ca__promo-image {
    flex: 1 1 40%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.page-ban-ca__promo-text {
    flex: 1 1 50%;
    color: #FFF1E8;
}

.page-ban-ca__promo-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.page-ban-ca__promo-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-ban-ca__promo-text ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.page-ban-ca__promo-text ul li::before {
    content: '★';
    color: #FFB04A;
    position: absolute;
    left: 0;
    top: 0;
}

.page-ban-ca__faq-section {
    background-color: #2A1212;
}

.page-ban-ca__faq-list {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.page-ban-ca__faq-item {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 10px;
    overflow: hidden;
}

.page-ban-ca__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFB04A;
    cursor: pointer;
    position: relative;
    list-style: none;
}

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

.page-ban-ca__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #FFB04A;
    transition: transform 0.3s ease;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
    transform: rotate(45deg);
}

.page-ban-ca__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

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

.page-ban-ca__cta-bottom-section {
    background-color: #140C0C; /* Deep Red color for dark section */
    color: #FFF1E8;
    padding: 60px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-ban-ca__cta-bottom-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.page-ban-ca__cta-bottom-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-ban-ca__cta-bottom-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFB04A;
}

.page-ban-ca__cta-bottom-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-ban-ca__cta-bottom-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.page-ban-ca__cta-bottom-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General image responsiveness */
.page-ban-ca img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-ban-ca__hero-container,
    .page-ban-ca__guide-content,
    .page-ban-ca__promo-content,
    .page-ban-ca__cta-bottom-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .page-ban-ca__hero-content,
    .page-ban-ca__hero-image,
    .page-ban-ca__guide-steps,
    .page-ban-ca__guide-image,
    .page-ban-ca__promo-image,
    .page-ban-ca__promo-text,
    .page-ban-ca__cta-bottom-content,
    .page-ban-ca__cta-bottom-image {
        flex: 1 1 100%;
    }

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

    .page-ban-ca__section-title {
        margin-bottom: 30px;
    }

    .page-ban-ca__promo-text ul {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-ban-ca__hero-section { padding-top: 10px !important; }

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

    .page-ban-ca__hero-description,
    .page-ban-ca__text-block,
    .page-ban-ca__feature-description,
    .page-ban-ca__step-description,
    .page-ban-ca__game-description,
    .page-ban-ca__promo-text p,
    .page-ban-ca__promo-text ul li,
    .page-ban-ca__faq-answer p,
    .page-ban-ca__cta-bottom-description {
        font-size: 1rem !important;
    }

    .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;
        padding-right: 15px;
    }
    
    .page-ban-ca__hero-cta-buttons,
    .page-ban-ca__cta-bottom-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-ban-ca__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .page-ban-ca__features-grid,
    .page-ban-ca__game-cards-grid {
        grid-template-columns: 1fr;
    }

    .page-ban-ca__feature-title,
    .page-ban-ca__game-title {
        font-size: 1.5rem;
    }

    .page-ban-ca__step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .page-ban-ca__step-number {
        margin-bottom: 10px;
    }

    .page-ban-ca__guide-steps,
    .page-ban-ca__guide-image,
    .page-ban-ca__promo-image,
    .page-ban-ca__promo-text {
        min-width: unset;
    }

    .page-ban-ca__promo-text ul {
        text-align: left;
    }

    .page-ban-ca__faq-question {
        font-size: 1.1rem;
    }

    /* Ensure all content images are responsive */
    .page-ban-ca img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-ban-ca__content-area,
    .page-ban-ca__card,
    .page-ban-ca__container,
    .page-ban-ca__hero-container,
    .page-ban-ca__guide-content,
    .page-ban-ca__promo-content,
    .page-ban-ca__cta-bottom-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}