/* style/ban-ca.css */

/* Variables for colors, matching the theme */
:root {
    --st666-primary-color: #CC0000; /* Red */
    --st666-secondary-color: #FFD700; /* Gold */
    --st666-dark-background: #1a1a1a;
    --st666-light-text: #ffffff;
    --st666-dark-text: #333333;
    --st666-accent-blue: #33ffff; /* Complementary for red */
    --st666-accent-purple: #0028ff; /* Complementary for gold */
}

.page-ban-ca {
    font-family: 'Arial', sans-serif;
    color: var(--st666-light-text);
    background-color: var(--st666-dark-background);
    line-height: 1.6;
}

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

.page-ban-ca__hero-section {
    background: linear-gradient(135deg, var(--st666-primary-color), var(--st666-secondary-color));
    padding: 100px 0;
    text-align: center;
    color: var(--st666-light-text);
}

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

.page-ban-ca__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-ban-ca__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-ban-ca__btn--primary {
    background-color: var(--st666-secondary-color);
    color: var(--st666-dark-text);
}

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

.page-ban-ca__btn--secondary {
    background-color: var(--st666-primary-color);
    color: var(--st666-light-text);
    border: 2px solid var(--st666-secondary-color);
}

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

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

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

.page-ban-ca__section-title {
    font-size: 2.8em;
    color: var(--st666-secondary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #ccc;
}

.page-ban-ca__introduction-section, 
.page-ban-ca__features-section, 
.page-ban-ca__popular-games-section, 
.page-ban-ca__guide-section, 
.page-ban-ca__tips-section, 
.page-ban-ca__promotions-section, 
.page-ban-ca__mobile-section, 
.page-ban-ca__faq-section, 
.page-ban-ca__call-to-action {
    padding: 80px 0;
}

.page-ban-ca__introduction-section, .page-ban-ca__tips-section {
    background-color: #222;
}

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

.page-ban-ca__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-ban-ca__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #eee;
}

.page-ban-ca__text-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #eee;
}

.page-ban-ca__text-content li {
    margin-bottom: 8px;
}

.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);
}

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

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

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

.page-ban-ca__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-ban-ca__feature-heading {
    font-size: 1.6em;
    color: var(--st666-secondary-color);
    margin-bottom: 15px;
}

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

.page-ban-ca__game-card {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-ban-ca__game-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-ban-ca__game-title {
    font-size: 1.8em;
    color: var(--st666-secondary-color);
    margin-bottom: 10px;
}

.page-ban-ca__game-description {
    font-size: 1em;
    color: #ccc;
    flex-grow: 1;
    margin-bottom: 20px;
}

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

.page-ban-ca__step-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-ban-ca__step-number {
    background-color: var(--st666-primary-color);
    color: var(--st666-light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    border: 3px solid var(--st666-secondary-color);
}

.page-ban-ca__step-heading {
    font-size: 1.5em;
    color: var(--st666-secondary-color);
    margin-bottom: 15px;
}

.page-ban-ca__sub-heading {
    font-size: 1.4em;
    color: var(--st666-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-ban-ca__text-content ul {
    list-style: disc;
    margin-left: 20px;
}

.page-ban-ca__text-content li {
    margin-bottom: 8px;
    color: #eee;
}

.page-ban-ca__promotions-section {
    background-color: #1a1a1a;
}

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

.page-ban-ca__promotion-item {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--st666-primary-color);
}

.page-ban-ca__promotion-heading {
    font-size: 1.5em;
    color: var(--st666-secondary-color);
    margin-bottom: 10px;
}

.page-ban-ca__mobile-section {
    background-color: #222;
}

.page-ban-ca__center-cta {
    text-align: center;
    margin-top: 50px;
}

.page-ban-ca__faq-section {
    background-color: #1a1a1a;
}

.page-ban-ca__faq-item {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__faq-question {
    font-size: 1.4em;
    color: var(--st666-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-ban-ca__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--st666-primary-color);
    transition: transform 0.3s ease;
}

.page-ban-ca__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-ban-ca__faq-answer {
    font-size: 1.1em;
    color: #ccc;
    margin-top: 10px;
    display: none; /* Hidden by default */
}

.page-ban-ca__faq-answer.active {
    display: block;
}

.page-ban-ca__call-to-action {
    background: linear-gradient(90deg, var(--st666-primary-color), #800000);
    padding: 80px 0;
    text-align: center;
    color: var(--st666-light-text);
}

.page-ban-ca__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-ban-ca__cta-description {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-ban-ca__hero-title {
        font-size: 2.8em;
    }

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

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

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

    .page-ban-ca__content-grid--reverse {
        grid-template-columns: 1fr;
    }

    .page-ban-ca__content-grid--reverse .page-ban-ca__image-wrapper {
        order: -1; /* Image first on mobile */
    }

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

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

    .page-ban-ca__cta-description {
        font-size: 1.2em;
    }
}

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

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

    .page-ban-ca__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-ban-ca__btn {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-ban-ca__section-subtitle {
        font-size: 1em;
    }

    .page-ban-ca__feature-heading, 
    .page-ban-ca__game-title, 
    .page-ban-ca__step-heading, 
    .page-ban-ca__promotion-heading, 
    .page-ban-ca__faq-question {
        font-size: 1.3em;
    }

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

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