/* style/ban-ca.css */
.page-ban-ca {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
}

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

.page-ban-ca__section {
    padding: 60px 0;
    text-align: center;
}

.page-ban-ca__section:nth-of-type(odd) {
    background-color: #222222;
}

.page-ban-ca__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-ban-ca__section-title .highlight,
.page-ban-ca__hero-title .highlight,
.page-ban-ca__cta-final-title .highlight {
    color: #FFD700;
}

.page-ban-ca__section-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.05em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-ban-ca__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
}

.page-ban-ca__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-ban-ca__btn--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 1px solid #FFD700;
}

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

.page-ban-ca__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-ban-ca__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-ban-ca__hero {
    background: linear-gradient(135deg, #8B0000 0%, #4a0000 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-ban-ca__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:ocean,fish,bubbles,abstract]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-ban-ca__hero .page-ban-ca__container {
    position: relative;
    z-index: 1;
}

.page-ban-ca__hero-title {
    font-size: 4em;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-ban-ca__hero-subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca__hero-actions .page-ban-ca__btn {
    margin: 0 10px;
}

/* About Section */
.page-ban-ca__about p {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 15px;
    text-align: left;
}

.page-ban-ca__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-ban-ca__content-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .page-ban-ca__about .page-ban-ca__text-content {
        text-align: left;
    }
}

.page-ban-ca__image-wrapper {
    text-align: center;
}

.page-ban-ca__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-ban-ca__feature-item:hover {
    transform: translateY(-5px);
    background-color: #333333;
}

.page-ban-ca__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-ban-ca__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-ban-ca__feature-item p {
    color: #cccccc;
    font-size: 1em;
}

/* How-to-Play Section */
.page-ban-ca__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-ban-ca__step-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-ban-ca__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #8B0000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #8B0000;
}

.page-ban-ca__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-ban-ca__step-item p {
    color: #cccccc;
    margin-bottom: 20px;
}

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

.page-ban-ca__game-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-ban-ca__game-card:hover {
    transform: translateY(-5px);
}

.page-ban-ca__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: none; /* Ensure no color filters */
}

.page-ban-ca__game-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-ban-ca__game-card p {
    color: #cccccc;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-ban-ca__game-card .page-ban-ca__btn {
    margin-bottom: 20px;
}

/* Promotions Section */
.page-ban-ca__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
    text-align: left;
}

.page-ban-ca__promo-list li {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #f0f0f0;
    font-size: 1.1em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__promo-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    filter: none; /* Ensure no color filters */
}

.page-ban-ca__cta-bottom {
    margin-top: 40px;
}

/* Why Choose Section */
.page-ban-ca__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-ban-ca__why-choose-item:hover {
    transform: translateY(-5px);
}

.page-ban-ca__why-choose-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-ban-ca__why-choose-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-ban-ca__why-choose-item p {
    color: #cccccc;
    font-size: 1em;
}

/* FAQ Section */
.page-ban-ca__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-ban-ca__faq-item:hover {
    background-color: #333333;
}

.page-ban-ca__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-ban-ca__faq-answer {
    color: #cccccc;
    font-size: 1em;
    display: block; /* Ensure it's always visible for simplicity, could be toggled with JS */
}

/* Final CTA Section */
.page-ban-ca__cta-final {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
    padding: 80px 0;
    text-align: center;
}

.page-ban-ca__cta-final-title {
    font-size: 3.5em;
    color: #8B0000;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-ban-ca__cta-final-subtitle {
    font-size: 1.3em;
    color: #6a0000;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca__cta-final .page-ban-ca__btn--primary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-ban-ca__cta-final .page-ban-ca__btn--primary:hover {
    background-color: #6a0000;
    border-color: #f0c000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-ban-ca__hero-title {
        font-size: 3.5em;
    }
    .page-ban-ca__section-title {
        font-size: 2.5em;
    }
    .page-ban-ca__cta-final-title {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .page-ban-ca__hero {
        padding: 80px 0;
    }
    .page-ban-ca__hero-title {
        font-size: 2.8em;
    }
    .page-ban-ca__hero-subtitle {
        font-size: 1.2em;
    }
    .page-ban-ca__hero-actions .page-ban-ca__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 300px;
    }
    .page-ban-ca__section-title {
        font-size: 2em;
    }
    .page-ban-ca__feature-item,
    .page-ban-ca__step-item,
    .page-ban-ca__game-card,
    .page-ban-ca__why-choose-item {
        padding: 25px;
    }
    .page-ban-ca__step-number {
        top: -15px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-ban-ca__promo-list li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .page-ban-ca__promo-icon {
        margin-bottom: 10px;
    }
    .page-ban-ca__cta-final-title {
        font-size: 2.5em;
    }
    .page-ban-ca__cta-final-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-ban-ca__hero-title {
        font-size: 2em;
    }
    .page-ban-ca__hero-subtitle {
        font-size: 1em;
    }
    .page-ban-ca__section-title {
        font-size: 1.8em;
    }
    .page-ban-ca__cta-final-title {
        font-size: 2em;
    }
    .page-ban-ca__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-ban-ca__content-grid {
        grid-template-columns: 1fr;
    }
}