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

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

.page-fishing-games__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #140C0C 0%, #2A1212 100%);
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1920px;
    margin-bottom: 20px;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Using clamp for H1 as per rule */
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 30px;
}

.page-fishing-games__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping for buttons */
}

.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;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #ffffff;
    border: none;
}

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

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #F3C54D; /* Gold */
    border: 2px solid #F3C54D; /* Gold */
}

.page-fishing-games__btn-secondary:hover {
    background: #F3C54D; /* Gold */
    color: #140C0C; /* Background */
}

.page-fishing-games__dark-section {
    background: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    padding: 60px 0;
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFF1E8; /* Text Main */
}

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

.page-fishing-games__card {
    background: #2A1212; /* Card B G */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #FFF1E8; /* Text Main */
}

.page-fishing-games__feature-title,
.page-fishing-games__game-title,
.page-fishing-games__promo-title {
    font-size: 1.5em;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
}

.page-fishing-games__game-image,
.page-fishing-games__promo-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.page-fishing-games__step-title {
    font-size: 1.4em;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

.page-fishing-games__step-item .page-fishing-games__btn-secondary {
    margin-top: 20px;
}

.page-fishing-games__strategy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-fishing-games__strategy-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.page-fishing-games__strategy-list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-fishing-games__strategy-item {
    background: #2A1212; /* Card B G */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-subtitle {
    font-size: 1.3em;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

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

.page-fishing-games__faq-item {
    background: #2A1212; /* Card B G */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFF1E8; /* Text Main */
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #F3C54D; /* Gold */
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05em;
    color: #FFF1E8; /* Text Main */
}

.page-fishing-games__cta-final-content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping for buttons */
}

/* General image and container responsive styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 1024px) {
    .page-fishing-games__hero-section {
        padding-bottom: 30px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__strategy-content {
        flex-direction: column;
    }
    .page-fishing-games__strategy-image {
        max-width: 100%;
    }
}


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

    /* HERO主图区域 */
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* Small top padding as per rule */
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-content {
        padding: 0;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em) !important;
        margin-bottom: 10px;
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-fishing-games__hero-cta {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    /* 产品展示图区域 (General Grid Layout) */
    .page-fishing-games__feature-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__guide-steps {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    /* 通用图片与容器 */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__container,
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__step-item,
    .page-fishing-games__strategy-item,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__strategy-content {
        flex-direction: column;
        gap: 20px;
    }
    .page-fishing-games__strategy-image {
        max-width: 100% !important;
        width: 100% !important;
    }
    .page-fishing-games__strategy-list {
        min-width: unset;
        width: 100%;
    }

    /* 按钮与按钮容器 */
    .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; /* Ensure padding inside button for text */
        padding-right: 15px;
    }
    .page-fishing-games__hero-cta,
    .page-fishing-games__cta-center,
    .page-fishing-games__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
    }

    /* 其他内容模块 */
    .page-fishing-games__dark-section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-fishing-games__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-fishing-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 1em;
    }
}