/* style/blog-mm8-win-fishing-game-strategy.css */

/* Variables based on custom color scheme */
:root {
    --mm8-win-primary: #2F6BFF;
    --mm8-win-secondary: #6FA3FF;
    --mm8-win-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --mm8-win-card-bg: #FFFFFF;
    --mm8-win-background: #F4F7FB;
    --mm8-win-text-main: #1F2D3D;
    --mm8-win-text-black: #000000;
    --mm8-win-border: #D6E2FF;
    --mm8-win-glow: #A5C4FF;
}

.page-blog-mm8-win-fishing-game-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--mm8-win-text-main); /* Default text color for light backgrounds */
    background-color: var(--mm8-win-background);
}

/* HERO Section */
.page-blog-mm8-win-fishing-game-strategy__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, not --header-offset */
    padding-bottom: 40px;
    background-color: var(--mm8-win-primary); /* Use primary for hero background */
    color: #ffffff; /* White text for dark primary background */
}

.page-blog-mm8-win-fishing-game-strategy__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-blog-mm8-win-fishing-game-strategy__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-mm8-win-fishing-game-strategy__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size with clamp */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 100%; /* Ensure H1 doesn't cause overflow */
    box-sizing: border-box;
}

.page-blog-mm8-win-fishing-game-strategy__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-blog-mm8-win-fishing-game-strategy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-mm8-win-fishing-game-strategy__btn-primary {
    background: var(--mm8-win-button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-mm8-win-fishing-game-strategy__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-mm8-win-fishing-game-strategy__btn-secondary {
    background: var(--mm8-win-card-bg); /* White background */
    color: var(--mm8-win-primary); /* Primary text color */
    border: 2px solid var(--mm8-win-primary);
    margin-left: 20px;
}

.page-blog-mm8-win-fishing-game-strategy__btn-secondary:hover {
    background: var(--mm8-win-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* General Content Sections */
.page-blog-mm8-win-fishing-game-strategy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-mm8-win-fishing-game-strategy__introduction-section,
.page-blog-mm8-win-fishing-game-strategy__gameplay-basics-section,
.page-blog-mm8-win-fishing-game-strategy__weapon-types-section,
.page-blog-mm8-win-fishing-game-strategy__advanced-tips-section,
.page-blog-mm8-win-fishing-game-strategy__benefits-section,
.page-blog-mm8-win-fishing-game-strategy__faq-section {
    padding: 60px 0;
    color: var(--mm8-win-text-main);
}

.page-blog-mm8-win-fishing-game-strategy__strategy-section,
.page-blog-mm8-win-fishing-game-strategy__common-mistakes-section,
.page-blog-mm8-win-fishing-game-strategy__cta-section {
    padding: 60px 0;
    background-color: var(--mm8-win-primary); /* Dark background sections */
    color: #ffffff; /* White text for dark backgrounds */
}

.page-blog-mm8-win-fishing-game-strategy__section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: inherit; /* Inherit color from parent section */
}

.page-blog-mm8-win-fishing-game-strategy__sub-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: inherit; /* Inherit color from parent section */
}

.page-blog-mm8-win-fishing-game-strategy__text-block {
    margin-bottom: 15px;
    font-size: 1rem;
    color: inherit;
}

.page-blog-mm8-win-fishing-game-strategy__content-image {
    width: 100%;
    max-width: 800px; /* Max width for content images */
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-mm8-win-fishing-game-strategy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-blog-mm8-win-fishing-game-strategy__list-item {
    margin-bottom: 10px;
    color: inherit;
}

/* FAQ Section */
.page-blog-mm8-win-fishing-game-strategy__faq-list {
    margin-top: 30px;
}

.page-blog-mm8-win-fishing-game-strategy__faq-item {
    background-color: var(--mm8-win-card-bg);
    border: 1px solid var(--mm8-win-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: var(--mm8-win-text-main);
}

.page-blog-mm8-win-fishing-game-strategy__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--mm8-win-text-main);
    transition: background-color 0.3s ease;
}

.page-blog-mm8-win-fishing-game-strategy__faq-item summary::-webkit-details-marker {
    display: none; /* Hide Chrome/Safari marker */
}

.page-blog-mm8-win-fishing-game-strategy__faq-item summary:hover {
    background-color: var(--mm8-win-background);
}

.page-blog-mm8-win-fishing-game-strategy__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.page-blog-mm8-win-fishing-game-strategy__faq-item[open] .page-blog-mm8-win-fishing-game-strategy__faq-toggle {
    content: "−";
}

.page-blog-mm8-win-fishing-game-strategy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--mm8-win-text-main);
}

.page-blog-mm8-win-fishing-game-strategy__faq-answer p {
    margin-bottom: 0;
}

/* CTA Section */
.page-blog-mm8-win-fishing-game-strategy__cta-container {
    text-align: center;
}

.page-blog-mm8-win-fishing-game-strategy__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%; /* Ensure container takes full width */
    box-sizing: border-box;
    overflow: hidden;
}

/* Copyright */
.page-blog-mm8-win-fishing-game-strategy__copyright {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 50px;
    padding-bottom: 20px;
    color: #f0f0f0; /* Light color for dark background */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-mm8-win-fishing-game-strategy__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-mm8-win-fishing-game-strategy__section-title {
        font-size: 2rem;
    }

    .page-blog-mm8-win-fishing-game-strategy__sub-title {
        font-size: 1.4rem;
    }
}

/* Mobile specific styles (max-width: 768px) */
@media (max-width: 768px) {
    /* HERO Section */
    .page-blog-mm8-win-fishing-game-strategy__hero-section {
        padding-top: 10px !important; /* Enforce small top padding */
        padding-bottom: 30px;
    }

    .page-blog-mm8-win-fishing-game-strategy__hero-content {
        padding: 0 15px;
    }

    .page-blog-mm8-win-fishing-game-strategy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-blog-mm8-win-fishing-game-strategy__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* General Images and Containers */
    .page-blog-mm8-win-fishing-game-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
        box-sizing: border-box !important;
    }

    .page-blog-mm8-win-fishing-game-strategy__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-mm8-win-fishing-game-strategy__introduction-section,
    .page-blog-mm8-win-fishing-game-strategy__gameplay-basics-section,
    .page-blog-mm8-win-fishing-game-strategy__weapon-types-section,
    .page-blog-mm8-win-fishing-game-strategy__strategy-section,
    .page-blog-mm8-win-fishing-game-strategy__advanced-tips-section,
    .page-blog-mm8-win-fishing-game-strategy__common-mistakes-section,
    .page-blog-mm8-win-fishing-game-strategy__benefits-section,
    .page-blog-mm8-win-fishing-game-strategy__faq-section,
    .page-blog-mm8-win-fishing-game-strategy__cta-section {
        padding: 40px 0;
    }

    .page-blog-mm8-win-fishing-game-strategy__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .page-blog-mm8-win-fishing-game-strategy__sub-title {
        font-size: 1.2rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-mm8-win-fishing-game-strategy__text-block,
    .page-blog-mm8-win-fishing-game-strategy__list-item,
    .page-blog-mm8-win-fishing-game-strategy__faq-answer p {
        font-size: 15px;
    }

    /* Buttons and Button Containers */
    .page-blog-mm8-win-fishing-game-strategy__cta-button,
    .page-blog-mm8-win-fishing-game-strategy__btn-primary,
    .page-blog-mm8-win-fishing-game-strategy__btn-secondary,
    .page-blog-mm8-win-fishing-game-strategy a[class*="button"],
    .page-blog-mm8-win-fishing-game-strategy 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: 12px 15px !important;
        margin: 0 0 10px 0 !important; /* Adjust margins for stacked buttons */
    }

    .page-blog-mm8-win-fishing-game-strategy__button-group {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    .page-blog-mm8-win-fishing-game-strategy__btn-secondary {
        margin-left: 0 !important; /* Remove left margin for stacking */
    }

    /* FAQ Section */
    .page-blog-mm8-win-fishing-game-strategy__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-mm8-win-fishing-game-strategy__faq-answer {
        padding: 0 20px 15px;
    }

    .page-blog-mm8-win-fishing-game-strategy__copyright {
        font-size: 0.85rem;
        margin-top: 30px;
    }
}