.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #F5F7FA; /* Custom background color */
}

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

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E53935; /* Fallback for image loading */
    color: #ffffff;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for aesthetic */
    margin-bottom: 30px;
}

.page-fishing-games__hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-fishing-games__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background: #ffffff;
    color: #E53935;
    border: 2px solid #E53935;
}

.page-fishing-games__btn-secondary:hover {
    background: #E53935;
    color: #ffffff;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-fishing-games__intro-text {
    font-size: 1.05rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-fishing-games__dark-section .page-fishing-games__section-title,
.page-fishing-games__dark-section .page-fishing-games__intro-text {
    color: #ffffff;
}

.page-fishing-games__light-bg {
    background-color: #F5F7FA;
    color: #333333;
}

.page-fishing-games__dark-section {
    background-color: #E53935;
    color: #ffffff;
}

.page-fishing-games__card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 60px 0;
}

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

.page-fishing-games__feature-item {
    text-align: center;
}

.page-fishing-games__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E53935;
}

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

/* Popular Games Section */
.page-fishing-games__popular-games-section {
    padding: 60px 0;
}

.page-fishing-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__game-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games__game-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #E53935;
}

.page-fishing-games__game-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__game-button {
    width: fit-content;
    margin: 0 auto;
}

/* How To Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
}

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

.page-fishing-games__step-item {
    text-align: center;
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E53935;
}

.page-fishing-games__step-description {
    font-size: 1rem;
    line-height: 1.5;
}

.page-fishing-games__cta-buttons--center {
    margin-top: 40px;
}

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies-section {
    padding: 60px 0;
}

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

.page-fishing-games__strategy-item {
    text-align: center;
}

.page-fishing-games__strategy-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E53935;
}

.page-fishing-games__strategy-description {
    font-size: 1rem;
    line-height: 1.5;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
}

.page-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__promo-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games__promo-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #E53935;
}

.page-fishing-games__promo-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__promo-button {
    width: fit-content;
    margin: 0 auto;
}

/* Safety Section */
.page-fishing-games__safety-section {
    padding: 60px 0;
}

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

.page-fishing-games__safety-item {
    text-align: center;
}

.page-fishing-games__safety-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E53935;
}

.page-fishing-games__safety-description {
    font-size: 1rem;
    line-height: 1.5;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
}

.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    margin-bottom: 20px;
    padding: 0; /* Override card padding */
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-bottom: 1px solid #E0E0E0;
    border-radius: 0;
}

.page-fishing-games__faq-item:last-child {
    border-bottom: none;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 10px; /* Re-add border-radius here */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #f0f0f0;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: #f0f0f0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #E53935;
    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: 20px;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Final CTA Section */
.page-fishing-games__final-cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-fishing-games__final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Copyright */
.page-fishing-games__copyright-info {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #333333;
    background-color: #F5F7FA;
    border-top: 1px solid #E0E0E0;
}

.page-fishing-games__copyright-text {
    margin: 0;
}

/* General Image Styles for content area */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
    .page-fishing-games__container {
        padding: 20px;
    }

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

    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }

    .page-fishing-games__hero-image {
        max-height: 500px;
    }

    .page-fishing-games__games-grid,
    .page-fishing-games__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO 主图区域 */
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-fishing-games__hero-image {
        max-height: 350px !important;
        width: 100% !important;
    }

    .page-fishing-games__hero-content {
        padding: 0 15px;
    }

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

    .page-fishing-games__description {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }

    /* 产品展示图区域 */
    .page-fishing-games__popular-games-section {
        padding: 40px 0;
    }

    .page-fishing-games__games-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 15px;
        box-sizing: border-box !important;
    }

    .page-fishing-games__game-card {
        padding: 20px !important;
    }

    .page-fishing-games__game-image {
        height: 180px !important;
    }

    /* 通用图片与容器 */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !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 !important;
        padding-right: 15px !important;
    }

    /* 按钮与按钮容器 */
    .page-fishing-games__cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .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 !important;
        padding-right: 15px !important;
    }

    /* 其他内容模块 */
    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
        margin-bottom: 20px;
    }

    .page-fishing-games__intro-text {
        font-size: 0.95rem !important;
        margin-bottom: 30px;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__steps-list,
    .page-fishing-games__strategy-list,
    .page-fishing-games__safety-list {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .page-fishing-games__feature-item,
    .page-fishing-games__step-item,
    .page-fishing-games__strategy-item,
    .page-fishing-games__safety-item {
        padding: 20px !important;
    }

    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 15px;
        box-sizing: border-box !important;
    }

    .page-fishing-games__promo-card {
        padding: 20px !important;
    }

    .page-fishing-games__promo-image {
        height: 160px !important;
    }

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

    .page-fishing-games__faq-toggle {
        font-size: 1.5rem !important;
    }

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

    .page-fishing-games__final-cta-section {
        padding: 50px 0;
    }

    .page-fishing-games__copyright-info {
        padding: 20px 15px;
    }
}