/* style/fishing-games.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-color-light: #ffffff;
    --bg-color-dark: #26A9E0;
    --button-login-color: #EA7C07;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-color-light);
}

/* Sections */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px;
    text-align: center;
    overflow: hidden;
    color: var(--text-color-light);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 40px; /* Adjust as needed to separate from image */
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
}

.page-fishing-games__hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-fishing-games__introduction-section,
.page-fishing-games__advantages-section,
.page-fishing-games__strategy-section,
.page-fishing-games__mobile-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: var(--bg-color-light);
    color: var(--text-color-dark);
}

.page-fishing-games__game-types-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__support-security-section,
.page-fishing-games__conclusion-section {
    padding: 60px 0;
    background-color: var(--bg-color-dark);
    color: var(--text-color-light);
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.page-fishing-games__introduction-section .page-fishing-games__section-title,
.page-fishing-games__advantages-section .page-fishing-games__section-title,
.page-fishing-games__strategy-section .page-fishing-games__section-title,
.page-fishing-games__mobile-section .page-fishing-games__section-title,
.page-fishing-games__faq-section .page-fishing-games__section-title {
    color: var(--primary-color);
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__text-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-fishing-games__text-block a:hover {
    color: darken(var(--primary-color), 10%);
}

.page-fishing-games__dark-bg {
    background-color: var(--bg-color-dark);
    color: var(--text-color-light);
}

.page-fishing-games__light-bg {
    background-color: var(--bg-color-light);
    color: var(--text-color-dark);
}

/* Game Grid */
.page-fishing-games__game-grid,
.page-fishing-games__advantage-grid,
.page-fishing-games__promo-grid,
.page-fishing-games__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__game-card,
.page-fishing-games__promo-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-color-light);
}

.page-fishing-games__game-types-section .page-fishing-games__card-image,
.page-fishing-games__promotions-section .page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-fishing-games__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color-light);
}

.page-fishing-games__card-description {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__card-button:hover {
    background-color: darken(var(--primary-color), 10%);
}

/* Advantage Section */
.page-fishing-games__advantage-item {
    text-align: center;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-color-dark);
}

.page-fishing-games__advantage-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-fishing-games__advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-fishing-games__advantage-description {
    font-size: 1rem;
}

/* Guide Section */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__guide-list li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: var(--text-color-light);
}

.page-fishing-games__guide-step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color-light);
}

.page-fishing-games__guide-list li p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.page-fishing-games__guide-list li a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-fishing-games__guide-list li a:hover {
    color: lighten(var(--secondary-color), 10%);
}

/* Mobile Section */
.page-fishing-games__mobile-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-fishing-games__mobile-text {
    flex: 1;
    color: var(--text-color-dark);
}

.page-fishing-games__mobile-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-fishing-games__mobile-image {
    flex: 1;
    text-align: center;
}

.page-fishing-games__image-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Support & Security Section */
.page-fishing-games__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-fishing-games__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    color: var(--text-color-light);
}

.page-fishing-games__feature-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-fishing-games__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-fishing-games__feature-description {
    font-size: 1rem;
}

.page-fishing-games__security-features a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-fishing-games__security-features a:hover {
    color: lighten(var(--secondary-color), 10%);
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 30px;
}

.page-fishing-games__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-color-dark);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    color: var(--primary-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid transparent;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: '−';
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1.05rem;
    color: var(--text-color-dark);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 0;
}

.page-fishing-games__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: darken(var(--primary-color), 10%);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section .page-fishing-games__section-title {
    color: var(--text-color-light);
}

.page-fishing-games__conclusion-section .page-fishing-games__text-block {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-fishing-games__conclusion-section .page-fishing-games__text-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-fishing-games__conclusion-section .page-fishing-games__text-block a:hover {
    color: lighten(var(--secondary-color), 10%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games__hero-content {
        margin-top: 20px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-fishing-games__hero-description {
        font-size: 1.1rem;
    }

    .page-fishing-games__section-title {
        font-size: 2rem;
    }

    .page-fishing-games__mobile-content {
        flex-direction: column;
    }

    .page-fishing-games__mobile-text {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 10px 15px 40px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-fishing-games__hero-description {
        font-size: 1rem;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-fishing-games__introduction-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__advantages-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__mobile-section,
    .page-fishing-games__support-security-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        padding: 40px 0;
    }

    .page-fishing-games__container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-fishing-games__text-block {
        font-size: 1rem;
    }

    .page-fishing-games__game-grid,
    .page-fishing-games__advantage-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__advantage-item,
    .page-fishing-games__feature-item {
        padding: 15px;
    }

    .page-fishing-games__game-card .page-fishing-games__card-image,
    .page-fishing-games__promo-card .page-fishing-games__card-image {
        height: 180px;
    }

    .page-fishing-games__card-title {
        font-size: 1.3rem;
    }

    .page-fishing-games__advantage-icon,
    .page-fishing-games__feature-icon {
        width: 150px;
        height: 150px;
    }

    .page-fishing-games__advantage-title,
    .page-fishing-games__feature-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__guide-list li {
        padding: 15px;
    }

    .page-fishing-games__guide-step-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__mobile-subtitle {
        font-size: 1.6rem;
    }

    .page-fishing-games__image-fluid {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95rem;
    }

    /* Ensure all images are responsive */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body đã承担 --header-offset，此处禁止 var(--header-offset) */
    }

    /* Video responsive (if any) */
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Button responsive */
    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-fishing-games__cta-buttons {
        display: flex;
        flex-direction: column !important;
    }
}

/* No filter on images */
.page-fishing-games img {
    filter: none;
}