/* style/ban-ca.css */
:root {
    --primary-color: #0A1931;
    --secondary-color: #FFD700;
    --text-light: #f0f0f0;
    --text-dark: #333333;
    --bg-dark: #1a2a43;
    --bg-light: #ffffff;
    --accent-color: #e0ac00;
    --border-color: #3d4a63;
}

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

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

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

.page-ban-ca-section:nth-of-type(even) {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-ban-ca-section:nth-of-type(even) h2,
.page-ban-ca-section:nth-of-type(even) h3 {
    color: var(--secondary-color);
}

.page-ban-ca-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
}

.page-ban-ca-section h3 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-ban-ca-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-ban-ca-btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-ban-ca-btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-ban-ca-btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-ban-ca-btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-ban-ca-btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
}

.page-ban-ca-btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-ban-ca-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a43 100%);
    color: var(--text-light);
    text-align: center;
}

.page-ban-ca-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-ban-ca-hero-image {
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-ban-ca-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-ban-ca-hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-ban-ca-hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca-hero-actions {
    margin-top: 30px;
}

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

.page-ban-ca-why-choose .page-ban-ca-feature-item {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: var(--text-dark);
}

.page-ban-ca-why-choose .page-ban-ca-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-ban-ca-why-choose .page-ban-ca-feature-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
}

.page-ban-ca-why-choose .page-ban-ca-feature-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

.page-ban-ca-why-choose .page-ban-ca-feature-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    padding: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

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

.page-ban-ca-how-to-play .page-ban-ca-step-item {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-ban-ca-how-to-play .page-ban-ca-step-number {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.page-ban-ca-how-to-play .page-ban-ca-step-item h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-top: 0;
}

.page-ban-ca-how-to-play .page-ban-ca-step-item p {
    color: var(--text-light);
    font-size: 1em;
    margin-bottom: 20px;
    text-align: left;
}

.page-ban-ca-how-to-play .page-ban-ca-step-item a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-ban-ca-how-to-play .page-ban-ca-step-item a:hover {
    color: var(--accent-color);
}

.page-ban-ca-how-to-play .page-ban-ca-step-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Fish Types Section */
.page-ban-ca-fish-types .page-ban-ca-fish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-ban-ca-fish-types .page-ban-ca-fish-item {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-ban-ca-fish-types .page-ban-ca-fish-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
}

.page-ban-ca-fish-types .page-ban-ca-fish-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

.page-ban-ca-fish-types .page-ban-ca-fish-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-ban-ca-promotions {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-ban-ca-promotions h2 {
    color: var(--secondary-color);
}

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

.page-ban-ca-promotions .page-ban-ca-promo-item {
    background-color: #2b3e5c;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-ban-ca-promotions .page-ban-ca-promo-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
}

.page-ban-ca-promotions .page-ban-ca-promo-item p {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 0;
}

.page-ban-ca-promotions .page-ban-ca-promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca-promo-action {
    margin-top: 40px;
}

/* Mobile Experience Section */
.page-ban-ca-mobile-experience .page-ban-ca-mobile-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
}

.page-ban-ca-mobile-experience .page-ban-ca-mobile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-ban-ca-mobile-experience .page-ban-ca-mobile-text h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
}

.page-ban-ca-mobile-experience .page-ban-ca-mobile-text p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: none;
}

/* FAQ Section */
.page-ban-ca-faq .page-ban-ca-faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-ban-ca-faq .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.page-ban-ca-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-ban-ca-faq .faq-question:hover {
    background-color: #1f3455;
}

.page-ban-ca-faq .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.page-ban-ca-faq .faq-toggle {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-ban-ca-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-ban-ca-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #f0f0f0;
    color: var(--text-dark);
}

.page-ban-ca-faq .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-ban-ca-faq .faq-answer p {
    margin: 0;
    font-size: 1em;
    text-align: left;
    color: var(--text-dark);
}

.page-ban-ca-faq .faq-answer a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-ban-ca-faq .faq-answer a:hover {
    color: var(--secondary-color);
}

/* Conclusion Section */
.page-ban-ca-conclusion {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
}

.page-ban-ca-conclusion h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.page-ban-ca-conclusion p {
    color: var(--text-light);
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-ban-ca-conclusion p a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-ban-ca-conclusion p a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-ban-ca-hero-content h1 {
        font-size: 3em;
    }
    .page-ban-ca-section h2 {
        font-size: 2.2em;
    }
    .page-ban-ca-section h3 {
        font-size: 1.6em;
    }
    .page-ban-ca-mobile-experience .page-ban-ca-mobile-content {
        flex-direction: column;
        text-align: center;
    }
    .page-ban-ca-mobile-experience .page-ban-ca-mobile-image {
        max-width: 300px;
    }
    .page-ban-ca-mobile-experience .page-ban-ca-mobile-text {
        margin-top: 30px;
    }
    .page-ban-ca-mobile-experience .page-ban-ca-mobile-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-ban-ca-hero {
        padding: 60px 15px;
    }
    .page-ban-ca-hero-content h1 {
        font-size: 2.5em;
    }
    .page-ban-ca-hero-content p {
        font-size: 1em;
    }
    .page-ban-ca-btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-ban-ca-section {
        padding: 40px 0;
    }
    .page-ban-ca-section h2 {
        font-size: 1.8em;
    }
    .page-ban-ca-section h3 {
        font-size: 1.4em;
    }
    .page-ban-ca-why-choose .page-ban-ca-features-grid,
    .page-ban-ca-how-to-play .page-ban-ca-steps-grid,
    .page-ban-ca-fish-types .page-ban-ca-fish-grid,
    .page-ban-ca-promotions .page-ban-ca-promo-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-ban-ca-faq .faq-question {
        padding: 15px 20px;
    }
    .page-ban-ca-faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page-ban-ca-faq .faq-toggle {
        font-size: 1.8em;
    }
    .page-ban-ca-faq .faq-answer {
        padding: 0 20px;
    }
    .page-ban-ca-faq .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-ban-ca-conclusion {
        padding: 60px 0;
    }
    .page-ban-ca-conclusion p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-ban-ca-hero-content h1 {
        font-size: 2em;
    }
    .page-ban-ca-btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-ban-ca-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-ban-ca-btn {
        width: 90%;
        margin: 5px 0;
    }
    .page-ban-ca-why-choose .page-ban-ca-feature-icon {
        width: 100px;
        height: 100px;
    }
    .page-ban-ca-how-to-play .page-ban-ca-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-ban-ca-how-to-play .page-ban-ca-step-item h3 {
        font-size: 1.4em;
    }
}