.page-blog-fishing-game-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--body-bg-color, #f5f5f5); /* Fallback to light gray */
}

.page-blog-fishing-game-guide__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    margin-bottom: 40px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-blog-fishing-game-guide__hero-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-fishing-game-guide__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Desktop: cover the area */
    max-height: 600px; /* Limit height on desktop */
}

.page-blog-fishing-game-guide__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.page-blog-fishing-game-guide__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: #017439;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-fishing-game-guide__intro-text {
    font-size: 1.15rem;
    color: #555555;
    margin-bottom: 30px;
}

.page-blog-fishing-game-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 15px; /* Add padding for smaller screens */
}

.page-blog-fishing-game-guide__btn-primary,
.page-blog-fishing-game-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%;
    box-sizing: border-box;
    min-width: 180px; /* Minimum width for buttons */
}

.page-blog-fishing-game-guide__btn-primary {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
}

.page-blog-fishing-game-guide__btn-primary:hover {
    background-color: #005f2e;
    border-color: #005f2e;
    transform: translateY(-2px);
}

.page-blog-fishing-game-guide__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-blog-fishing-game-guide__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2e;
    border-color: #005f2e;
    transform: translateY(-2px);
}

.page-blog-fishing-game-guide__content-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-blog-fishing-game-guide__content-section.page-blog-fishing-game-guide__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-blog-fishing-game-guide__content-section.page-blog-fishing-game-guide__dark-bg .page-blog-fishing-game-guide__section-title {
    color: #ffffff;
}

.page-blog-fishing-game-guide__content-section.page-blog-fishing-game-guide__dark-bg a {
    color: #FFFF00; /* Link color for dark background */
    text-decoration: underline;
}

.page-blog-fishing-game-guide__content-section.page-blog-fishing-game-guide__dark-bg a:hover {
    color: #ffffff;
}

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

.page-blog-fishing-game-guide__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #017439;
    text-align: center;
    margin-bottom: 30px;
}

.page-blog-fishing-game-guide__article-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.page-blog-fishing-game-guide__article-body p {
    margin-bottom: 1em;
}

.page-blog-fishing-game-guide__article-body a {
    color: #017439;
    text-decoration: underline;
}

.page-blog-fishing-game-guide__article-body a:hover {
    color: #005f2e;
}

.page-blog-fishing-game-guide__article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-fishing-game-guide__numbered-list,
.page-blog-fishing-game-guide__bullet-list,
.page-blog-fishing-game-guide__promotion-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1em;
}

.page-blog-fishing-game-guide__numbered-list li,
.page-blog-fishing-game-guide__bullet-list li,
.page-blog-fishing-game-guide__promotion-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-blog-fishing-game-guide__numbered-list li:before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #017439;
}

.page-blog-fishing-game-guide__bullet-list li:before,
.page-blog-fishing-game-guide__promotion-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #017439;
    font-size: 1.2em;
    line-height: 1;
}

.page-blog-fishing-game-guide__faq-section {
    padding: 60px 0;
    background-color: #017439; /* Brand color background for FAQ */
    color: #ffffff;
}

.page-blog-fishing-game-guide__faq-section .page-blog-fishing-game-guide__section-title {
    color: #ffffff;
    margin-bottom: 40px;
}

.page-blog-fishing-game-guide__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details.page-blog-fishing-game-guide__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}
details.page-blog-fishing-game-guide__faq-item summary.page-blog-fishing-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}
details.page-blog-fishing-game-guide__faq-item summary.page-blog-fishing-game-guide__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-fishing-game-guide__faq-item summary.page-blog-fishing-game-guide__faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
}
.page-blog-fishing-game-guide__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}
.page-blog-fishing-game-guide__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-blog-fishing-game-guide__faq-item .page-blog-fishing-game-guide__faq-answer {
    padding: 0 20px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    color: #f0f0f0;
}
details.page-blog-fishing-game-guide__faq-item .page-blog-fishing-game-guide__faq-answer p {
    margin-bottom: 0;
}
details.page-blog-fishing-game-guide__faq-item .page-blog-fishing-game-guide__faq-answer a {
    color: #FFFF00; /* Link color for dark background */
    text-decoration: underline;
}
details.page-blog-fishing-game-guide__faq-item .page-blog-fishing-game-guide__faq-answer a:hover {
    color: #ffffff;
}

.page-blog-fishing-game-guide__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
    margin-bottom: 0;
}

.page-blog-fishing-game-guide__section-description {
    font-size: 1.1rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-blog-fishing-game-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-fishing-game-guide__hero-section {
        padding-top: 10px;
        margin-bottom: 30px;
    }

    .page-blog-fishing-game-guide__hero-image img {
        object-fit: contain !important; /* HERO 主图区域: 移动 object-fit:contain !important */
        aspect-ratio: unset !important;
        max-height: none !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-fishing-game-guide__hero-content {
        padding: 0 15px 30px;
    }

    .page-blog-fishing-game-guide__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* 页面标题区 H1 字号: clamp */
        margin-bottom: 10px;
    }

    .page-blog-fishing-game-guide__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-fishing-game-guide__cta-buttons {
        flex-direction: column; /* 按钮与按钮容器: 多个按钮横向排列时，允许换行 */
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-fishing-game-guide__btn-primary,
    .page-blog-fishing-game-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        min-width: unset;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-blog-fishing-game-guide__content-section {
        padding: 30px 0;
        margin-bottom: 15px;
    }

    .page-blog-fishing-game-guide__container {
        padding: 0 15px;
        max-width: 100% !important; /* 通用图片与容器 */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-fishing-game-guide__section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 25px;
    }

    .page-blog-fishing-game-guide__article-body {
        font-size: 0.95rem;
        max-width: 100% !important; /* 装饰主标题 + 长文 SEO 区: 防溢出 */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-fishing-game-guide__article-body img {
        max-width: 100% !important; /* 通用图片与容器 */
        width: 100% !important;
        height: auto !important;
        margin: 15px auto;
    }

    .page-blog-fishing-game-guide__numbered-list li,
    .page-blog-fishing-game-guide__bullet-list li,
    .page-blog-fishing-game-guide__promotion-list li {
        padding-left: 20px;
    }

    .page-blog-fishing-game-guide__faq-section {
        padding: 40px 0;
    }

    .page-blog-fishing-game-guide__faq-section .page-blog-fishing-game-guide__section-title {
        margin-bottom: 30px;
    }

    details.page-blog-fishing-game-guide__faq-item summary.page-blog-fishing-game-guide__faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    .page-blog-fishing-game-guide__faq-qtext { font-size: 15px; }
    .page-blog-fishing-game-guide__faq-toggle { font-size: 20px; width: 24px; }
    details.page-blog-fishing-game-guide__faq-item .page-blog-fishing-game-guide__faq-answer {
        padding: 0 15px 15px;
    }

    .page-blog-fishing-game-guide__cta-section {
        padding: 40px 0;
    }

    .page-blog-fishing-game-guide__section-description {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
}