/* style/ban-ca.css */

/* General Page Styles */
.page-ban-ca {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-ban-ca__section-title {
    font-size: 2.5em;
    color: #DC143C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.page-ban-ca__section-title .highlight {
    color: #FFD700;
    -webkit-text-stroke: 1px #DC143C;
    text-stroke: 1px #DC143C;
}

.page-ban-ca__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-ban-ca__section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
}

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

.page-ban-ca__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #DC143C; /* Crimson */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-ban-ca__btn--primary:hover {
    background-color: #e6c200;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.page-ban-ca__btn--secondary {
    background-color: #DC143C; /* Crimson */
    color: #FFD700; /* Gold */
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    margin-left: 20px;
}

.page-ban-ca__btn--secondary:hover {
    background-color: #b31031;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
    transform: translateY(-2px);
}

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

.page-ban-ca__btn--xl {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-ban-ca__list {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-ban-ca__list li {
    margin-bottom: 10px;
    color: #444;
}

.page-ban-ca a {
    color: #DC143C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-ban-ca a:hover {
    color: #FFD700;
}

/* Hero Section */
.page-ban-ca__hero {
    background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.page-ban-ca__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-ban-ca__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.page-ban-ca__hero-title .highlight {
    color: #FFD700;
}

.page-ban-ca__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
}

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

.page-ban-ca__hero-image {
    flex-shrink: 0;
}

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

/* About Game Section */
.page-ban-ca__about-game {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-ban-ca__text-content {
    flex: 1;
    min-width: 300px;
}

.page-ban-ca__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-ban-ca__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Gameplay Guide Section */
.page-ban-ca__gameplay-guide {
    padding: 80px 0;
    background-color: #f2f2f2;
}

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

.page-ban-ca__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.page-ban-ca__step-title {
    font-size: 1.8em;
    color: #DC143C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-ban-ca__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-ban-ca__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #444;
}

/* Exclusive Features Section */
.page-ban-ca__exclusive-features {
    padding: 80px 0;
    background-color: #DC143C;
    color: #fff;
}

.page-ban-ca__exclusive-features .page-ban-ca__section-title {
    color: #fff;
}

.page-ban-ca__exclusive-features .page-ban-ca__section-title .highlight {
    color: #FFD700;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
}

.page-ban-ca__exclusive-features .page-ban-ca__section-subtitle {
    color: #f0f0f0;
}

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

.page-ban-ca__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-ban-ca__feature-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.page-ban-ca__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Allowed for icons, not changing original image color */
}

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

.page-ban-ca__feature-card p {
    color: #f0f0f0;
}

.page-ban-ca__exclusive-features a {
    color: #FFD700;
}

.page-ban-ca__exclusive-features a:hover {
    color: #fff;
}

/* Registration Guide Section */
.page-ban-ca__registration-guide {
    padding: 80px 0;
    background-color: #fff;
}

.page-ban-ca__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    counter-reset: guide-step;
}

.page-ban-ca__guide-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    padding-top: 70px;
}

.page-ban-ca__guide-number {
    counter-increment: guide-step;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFD700;
    color: #DC143C;
    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 #DC143C;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-ban-ca__guide-number::before {
    content: counter(guide-step);
}

.page-ban-ca__guide-heading {
    font-size: 1.6em;
    color: #DC143C;
    margin-bottom: 15px;
    text-align: center;
}

.page-ban-ca__guide-item p {
    color: #555;
    text-align: center;
}

.page-ban-ca__cta-final {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-ban-ca__faq {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.page-ban-ca__faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.page-ban-ca__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}

.page-ban-ca__faq-question {
    width: 100%;
    background-color: #FFD700;
    color: #DC143C;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-ban-ca__faq-question:hover {
    background-color: #e6c200;
}

.page-ban-ca__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-ban-ca__faq-answer {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-ban-ca__faq-answer p {
    padding: 15px 0;
    color: #555;
}

.page-ban-ca__faq-answer.open {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px;
}

/* Conclusion Section */
.page-ban-ca__conclusion {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%);
    color: #fff;
    text-align: center;
}

.page-ban-ca__conclusion .page-ban-ca__section-title {
    color: #fff;
    margin-bottom: 30px;
}

.page-ban-ca__conclusion .page-ban-ca__section-title .highlight {
    color: #FFD700;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
}

.page-ban-ca__conclusion .page-ban-ca__description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-ban-ca__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }
    .page-ban-ca__hero-content {
        text-align: center;
    }
    .page-ban-ca__hero-actions {
        justify-content: center;
    }
    .page-ban-ca__content-grid {
        flex-direction: column;
    }
    .page-ban-ca__section-title {
        font-size: 2em;
    }
    .page-ban-ca__hero-title {
        font-size: 2.8em;
    }
    .page-ban-ca__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-ban-ca__section-title {
        font-size: 1.8em;
    }
    .page-ban-ca__hero-title {
        font-size: 2.2em;
    }
    .page-ban-ca__hero-description {
        font-size: 1.1em;
    }
    .page-ban-ca__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-ban-ca__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-ban-ca__btn--xl {
        padding: 18px 35px;
        font-size: 1.2em;
    }
    .page-ban-ca__features-grid, .page-ban-ca__guide-steps, .page-ban-ca__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-ban-ca__hero-actions, .page-ban-ca__cta-final {
        flex-direction: column;
        gap: 15px;
    }
    .page-ban-ca__btn--secondary {
        margin-left: 0;
    }
    .page-ban-ca__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-ban-ca__faq-answer {
        padding: 0 20px;
    }
    .page-ban-ca__faq-answer.open {
        padding: 10px 20px;
    }
}