.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    display: flex; /* For image-above-text layout */
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
}

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 0 20px 40px; /* Add bottom padding */
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold */
}

.page-fishing-games__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-small {
    padding: 8px 20px;
    font-size: 0.95em;
}

.page-fishing-games__btn-large {
    padding: 15px 40px;
    font-size: 1.2em;
}

/* General Content Sections */
.page-fishing-games__intro-section,
.page-fishing-games__games-showcase,
.page-fishing-games__guide-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__contact-cta {
    padding: 60px 0;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-fishing-games__intro-section:last-of-type,
.page-fishing-games__contact-cta:last-of-type {
    border-bottom: none;
}

.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.5em;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #57E38D, transparent); /* Glow */
    border-radius: 2px;
}

.page-fishing-games__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #22C768; /* Auxiliary color */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-fishing-games__text-block {
    font-size: 1em;
    margin-bottom: 15px;
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-fishing-games__list-item {
    background-color: #11271B; /* Card BG */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #11A84E; /* Main color */
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__list-item strong {
    color: #2AD16F;
}

.page-fishing-games__list-item:last-child {
    margin-bottom: 0;
}

/* Games Showcase Grid */
.page-fishing-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-fishing-games__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-fishing-games__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    border-bottom: 2px solid #2E7A4E; /* Border */
}

.page-fishing-games__game-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 15px;
}

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

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-question:hover {
    background-color: #13994A; /* Slightly lighter green */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: #11A84E; /* Main color */
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-left: 15px;
}

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
    background-color: #11271B; /* Card BG */
}

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

/* Contact CTA Section */
.page-fishing-games__contact-cta {
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    padding: 80px 0;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1000px;
}

.page-fishing-games__contact-cta .page-fishing-games__section-title {
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__contact-cta .page-fishing-games__section-title::after {
    background: linear-gradient(90deg, transparent, #F2C14E, transparent); /* Gold glow */
}

.page-fishing-games__contact-cta .page-fishing-games__text-block {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #A7D9B8;
}

/* Responsive Styles */
/* Mobile @media (max-width: 768px)必写清单 */
@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 15px;
        line-height: 1.5;
    }

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

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

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

    .page-fishing-games__main-title {
        font-size: 2.2em;
        margin-bottom: 10px;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* 按钮与按钮容器 */
    .page-fishing-games__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        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;
        padding-right: 15px;
    }

    /* 通用图片与容器 */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    /* 产品展示图区域 */
    .page-fishing-games__games-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        padding: 0 15px; /* Add padding to grid itself */
        max-width: 100%;
        width: 100%;
        overflow-x: hidden; /* Prevent horizontal scroll */
        box-sizing: border-box;
    }

    .page-fishing-games__game-card {
        margin-bottom: 15px;
    }

    .page-fishing-games__game-image {
        height: 180px; /* Adjust height for mobile */
    }

    /* 其他内容模块 */
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-fishing-games__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .page-fishing-games__intro-section,
    .page-fishing-games__games-showcase,
    .page-fishing-games__guide-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__contact-cta {
        padding: 40px 0;
    }

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

    .page-fishing-games__faq-answer {
        padding: 15px 20px;
    }

    .page-fishing-games__contact-cta {
        padding: 60px 15px;
        margin: 30px auto;
    }
}