/* style/bn-c.css */

/* Biến CSS */
:root {
    --primary-color: #007bff; /* Deep Blue */
    --secondary-color: #ffc107; /* Gold */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    --border-color: #e0e0e0;
}

/* Cấu trúc chung của trang bắn cá */
.page-bn-c {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-light);
}

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

.page-bn-c section {
    padding: 60px 0;
    text-align: center;
}

.page-bn-c section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-bn-c h1, .page-bn-c h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-bn-c h1 {
    font-size: 2.8em;
}

.page-bn-c h2 {
    font-size: 2.2em;
}

.page-bn-c h3 {
    color: var(--text-color-dark);
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-bn-c p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555555;
}

/* Hero Section */
.page-bn-c .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Darker blue gradient */
    color: var(--text-color-light);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: left; /* Align text left within its content area */
}

.page-bn-c .hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.page-bn-c .hero-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

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

.page-bn-c .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-bn-c .hero-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-bn-c .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-bn-c .cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 45px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .cta-button:hover {
    background-color: #ffda6a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-bn-c .intro-section h2 {
    color: var(--primary-color);
}

.page-bn-c .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c .feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-bn-c .feature-item:hover {
    transform: translateY(-10px);
}

.page-bn-c .feature-item img {
    max-width: 100%;
    height: 250px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.8em;
}

.page-bn-c .feature-item p {
    font-size: 1em;
    color: #666666;
}

/* Gameplay Section */
.page-bn-c .gameplay-section {
    background-color: #eaf6ff;
}

.page-bn-c .step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-bn-c .step-item:hover {
    transform: translateY(-10px);
}

.page-bn-c .step-item img {
    max-width: 100%;
    height: 220px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-bn-c .step-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-bn-c .step-item p {
    font-size: 1em;
    color: #666666;
    flex-grow: 1;
}

.page-bn-c .small-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-bn-c .small-button:hover {
    background-color: #0056b3;
}

/* Strategy Section */
.page-bn-c .strategy-section {
    background-color: var(--bg-light);
}

.page-bn-c .strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-bn-c .strategy-list li {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.page-bn-c .strategy-list li:hover {
    transform: translateY(-10px);
}

.page-bn-c .strategy-list li img {
    max-width: 100%;
    height: 200px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c .strategy-list li h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-bn-c .strategy-list li p {
    font-size: 1em;
    color: #666666;
    text-align: center;
}

/* Promotions Section */
.page-bn-c .promotions-section {
    background: linear-gradient(135deg, #0056b3 0%, var(--primary-color) 100%);
    color: var(--text-color-light);
}

.page-bn-c .promotions-section h2 {
    color: var(--secondary-color);
}

.page-bn-c .promotions-section p {
    color: rgba(255, 255, 255, 0.9);
}

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

.page-bn-c .promo-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-color-dark);
    transition: transform 0.3s ease;
}

.page-bn-c .promo-card:hover {
    transform: translateY(-10px);
}

.page-bn-c .promo-card img {
    max-width: 100%;
    height: 220px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c .promo-card h3 {
    color: var(--primary-color);
    font-size: 1.7em;
}

.page-bn-c .promo-card p {
    font-size: 1em;
    color: #666666;
    flex-grow: 1;
}

.page-bn-c .promo-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-bn-c .promo-button:hover {
    background-color: #ffda6a;
}

/* Security & Support Section */
.page-bn-c .security-support-section {
    background-color: #eaf6ff;
}

.page-bn-c .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c .info-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-bn-c .info-item:hover {
    transform: translateY(-10px);
}

.page-bn-c .info-item img {
    max-width: 100%;
    height: 200px; /* Enforce minimum size */
    object-fit: contain; /* Use contain for icons/logos */
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c .info-item h3 {
    color: var(--primary-color);
    font-size: 1.7em;
}

/* FAQ Section */
.page-bn-c .faq-section {
    background-color: var(--bg-light);
}

.page-bn-c .faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-bn-c .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-bn-c .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
    background-color: #f5f5f5;
}

.page-bn-c .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.page-bn-c .faq-toggle {
    font-size: 1.8em;
    font-weight: normal;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-bn-c .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
    padding: 0 20px;
}

.page-bn-c .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.page-bn-c .faq-answer p {
    margin-bottom: 0;
    color: #555555;
}

.page-bn-c .faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-bn-c .faq-answer a:hover {
    text-decoration: underline;
}

/* Blog Section */
.page-bn-c .blog-section {
    background-color: #f2f2f2;
}

.page-bn-c .blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c .blog-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-bn-c .blog-card:hover {
    transform: translateY(-10px);
}

.page-bn-c .blog-card img {
    max-width: 100%;
    height: 200px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-bn-c .blog-card h3 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-bn-c .blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-bn-c .blog-card h3 a:hover {
    color: var(--secondary-color);
}

.page-bn-c .blog-card p {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 10px;
}

.page-bn-c .publish-date {
    font-size: 0.85em;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c .hero-content h1 {
        font-size: 3em;
    }
    .page-bn-c .hero-content p {
        font-size: 1.1em;
    }
    .page-bn-c h1 {
        font-size: 2.5em;
    }
    .page-bn-c h2 {
        font-size: 1.8em;
    }
    .page-bn-c h3 {
        font-size: 1.4em;
    }
    .page-bn-c .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-bn-c .hero-content {
        order: 2;
        padding-top: 0;
    }
    .page-bn-c .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-bn-c section {
        padding: 40px 0;
    }
    .page-bn-c .hero-section {
        padding: 60px 15px;
        min-height: auto;
    }
    .page-bn-c .hero-content h1 {
        font-size: 2.2em;
    }
    .page-bn-c .hero-content p {
        font-size: 1em;
    }
    .page-bn-c .cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-bn-c h1 {
        font-size: 2em;
    }
    .page-bn-c h2 {
        font-size: 1.6em;
    }
    .page-bn-c h3 {
        font-size: 1.2em;
    }
    .page-bn-c p {
        font-size: 0.95em;
    }
    .page-bn-c .feature-grid, .page-bn-c .step-by-step, .page-bn-c .promo-cards, .page-bn-c .info-grid, .page-bn-c .blog-cards {
        grid-template-columns: 1fr;
    }
    .page-bn-c .faq-question {
        padding: 12px 15px;
        font-size: 1em;
    }
    .page-bn-c .faq-question h3 {
        font-size: 1.1em;
    }
    .page-bn-c .faq-toggle {
        font-size: 1.5em;
    }
    .page-bn-c .faq-answer {
        padding: 0 15px;
    }
    .page-bn-c .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-bn-c .hero-content h1 {
        font-size: 1.8em;
    }
    .page-bn-c .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-bn-c h1 {
        font-size: 1.6em;
    }
    .page-bn-c h2 {
        font-size: 1.4em;
    }
    .page-bn-c h3 {
        font-size: 1.1em;
    }
}