/* style/fish-shooting.css */
.page-fish-shooting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #F5F7FA; /* Page background color */
}

/* --- Hero Section --- */
.page-fish-shooting__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #F5F7FA; /* Consistent with page background */
}

.page-fish-shooting__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    align-items: center;
    padding: 40px 16px;
    gap: 24px;
}

.page-fish-shooting__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #333333; /* Text Main */
}

.page-fish-shooting__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Responsive H1 font size */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #E53935; /* Main color for title */
}

.page-fish-shooting__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-fish-shooting__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Ensure buttons wrap on mobile */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-fish-shooting__btn-primary,
.page-fish-shooting__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure button takes full width */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-fish-shooting__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    border: none;
}

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

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

.page-fish-shooting__btn-secondary:hover {
    background-color: #E53935;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-fish-shooting__hero-image {
    flex: 1 1 50%;
    text-align: center;
    min-width: 300px;
}

.page-fish-shooting__hero-side-image {
    max-width: 600px; /* Recommended size from image prompt */
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* --- General Content Area --- */
.page-fish-shooting__content-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-fish-shooting__section-title {
    font-size: 2.2em;
    color: #E53935; /* Main brand color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.page-fish-shooting__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
}

.page-fish-shooting__text-center {
    text-align: center;
}

/* --- Intro Section (Module 1) --- */
.page-fish-shooting__intro-section {
    padding: 60px 0;
}

.page-fish-shooting__light-bg {
    background-color: #F5F7FA; /* Background color */
    color: #333333;
}

.page-fish-shooting__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-fish-shooting__feature-item {
    background-color: #FFFFFF; /* Card Background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fish-shooting__feature-item:hover {
    transform: translateY(-5px);
}

.page-fish-shooting__icon-box-media {
    width: 240px; /* Fixed size for circular image */
    height: 240px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #E53935; /* Accent border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fish-shooting__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure image itself is circular */
    display: block;
}

.page-fish-shooting__feature-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #E53935;
}

.page-fish-shooting__feature-description {
    font-size: 1em;
    color: #333333;
}

/* --- How To Play Section --- */
.page-fish-shooting__how-to-play-section {
    padding: 60px 0;
    background-color: #F5F7FA; /* Consistent with page background */
}

.page-fish-shooting__guide-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-fish-shooting__guide-content {
    flex: 1 1 55%;
    min-width: 300px;
}

.page-fish-shooting__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-fish-shooting__guide-item {
    background-color: #FFFFFF;
    border-left: 5px solid #E53935;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fish-shooting__guide-step-title {
    font-size: 1.2em;
    color: #E53935;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-fish-shooting__guide-item p {
    color: #333333;
    margin-bottom: 0;
}
.page-fish-shooting__guide-item a {
    color: #E53935;
    text-decoration: none;
    font-weight: bold;
}
.page-fish-shooting__guide-item a:hover {
    text-decoration: underline;
}

.page-fish-shooting__guide-cta {
    margin-top: 30px;
    width: auto; /* Override max-width for guide CTA */
    display: table; /* To center with margin auto */
    margin-left: auto;
    margin-right: auto;
}


.page-fish-shooting__guide-image {
    flex: 1 1 35%;
    min-width: 300px;
    text-align: center;
}

.page-fish-shooting__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* --- Tips Section --- */
.page-fish-shooting__tips-section {
    padding: 60px 0;
}

.page-fish-shooting__dark-bg {
    background-color: #E53935; /* Main brand color */
    color: #ffffff;
}
.page-fish-shooting__dark-bg .page-fish-shooting__section-title {
    color: #ffffff;
}
.page-fish-shooting__dark-bg .page-fish-shooting__tip-title {
    color: #ffffff;
}
.page-fish-shooting__dark-bg .page-fish-shooting__tip-item p {
    color: #f0f0f0;
}

.page-fish-shooting__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-fish-shooting__tip-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark background */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fish-shooting__tip-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-fish-shooting__tips-image {
    text-align: center;
    margin-top: 30px;
}

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

.page-fish-shooting__faq-list {
    margin-top: 40px;
}

.page-fish-shooting__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-fish-shooting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    list-style: none; /* For details/summary */
}

.page-fish-shooting__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}
.page-fish-shooting__faq-question::marker {
    display: none; /* Hide default marker */
}

.page-fish-shooting__faq-qtext {
    flex-grow: 1;
}

.page-fish-shooting__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #E53935;
    transition: transform 0.3s ease;
}

.page-fish-shooting__faq-item[open] .page-fish-shooting__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-fish-shooting__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #333333;
    line-height: 1.7;
}
.page-fish-shooting__faq-answer p {
    margin-bottom: 0;
}
.page-fish-shooting__faq-answer a {
    color: #E53935;
    text-decoration: none;
    font-weight: bold;
}
.page-fish-shooting__faq-answer a:hover {
    text-decoration: underline;
}

/* --- Conclusion Section --- */
.page-fish-shooting__conclusion-section {
    padding: 60px 0;
}

.page-fish-shooting__conclusion-section .page-fish-shooting__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.page-fish-shooting__conclusion-section .page-fish-shooting__text-block a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}
.page-fish-shooting__conclusion-section .page-fish-shooting__text-block a:hover {
    color: #FF5A4F;
}

/* --- Responsive Styles (Mobile) --- */
@media (max-width: 768px) {
    /* General content area padding */
    .page-fish-shooting__content-area {
        padding: 20px 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* --- HERO Section --- */
    .page-fish-shooting__hero-section {
        padding-top: 10px !important; /* Fixed header offset handled by body */
        padding-bottom: 30px;
    }
    .page-fish-shooting__hero-container {
        flex-direction: column; /* Stack content vertically */
        padding: 20px 15px;
        gap: 20px;
    }
    .page-fish-shooting__hero-content,
    .page-fish-shooting__hero-image {
        flex: 1 1 100%; /* Take full width */
        min-width: unset;
        width: 100%;
    }
    .page-fish-shooting__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em); /* Adjust H1 for smaller screens */
        text-align: center;
    }
    .page-fish-shooting__hero-description {
        font-size: 1em;
        text-align: center;
    }
    .page-fish-shooting__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }
    .page-fish-shooting__btn-primary,
    .page-fish-shooting__btn-secondary,
    .page-fish-shooting a[class*="button"],
    .page-fish-shooting 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;
    }

    /* --- Intro Section (Module 1 - Feature Grid) --- */
    .page-fish-shooting__intro-section {
        padding: 40px 0;
    }
    .page-fish-shooting__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-fish-shooting__feature-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }
    .page-fish-shooting__icon-box-media {
        width: 200px;
        height: 200px;
        border-width: 2px;
    }

    /* --- How To Play Section --- */
    .page-fish-shooting__how-to-play-section {
        padding: 40px 0;
    }
    .page-fish-shooting__guide-grid {
        flex-direction: column-reverse; /* Image above guide content */
        gap: 30px;
    }
    .page-fish-shooting__guide-content,
    .page-fish-shooting__guide-image {
        flex: 1 1 100%;
        min-width: unset;
        width: 100%;
    }
    .page-fish-shooting__guide-item {
        padding: 15px 20px;
        border-left-width: 3px;
    }
    .page-fish-shooting__guide-step-title {
        font-size: 1.1em;
    }
    .page-fish-shooting__guide-cta {
        width: 100%; /* Full width button */
        margin-left: unset;
        margin-right: unset;
    }

    /* --- Tips Section --- */
    .page-fish-shooting__tips-section {
        padding: 40px 0;
    }
    .page-fish-shooting__tips-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    /* --- FAQ Section --- */
    .page-fish-shooting__faq-section {
        padding: 40px 0;
    }
    .page-fish-shooting__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-fish-shooting__faq-answer {
        padding: 0 20px 15px;
    }

    /* --- Conclusion Section --- */
    .page-fish-shooting__conclusion-section {
        padding: 40px 0;
    }
    .page-fish-shooting__conclusion-section .page-fish-shooting__text-block {
        font-size: 1em;
    }

    /* --- Universal Image and Container Adaption (MUST HAVE) --- */
    .page-fish-shooting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Exception for circular images to maintain aspect ratio */
    .page-fish-shooting__icon-box-media img {
        height: 100% !important;
        object-fit: cover !important;
    }
    .page-fish-shooting__section,
    .page-fish-shooting__card,
    .page-fish-shooting__container,
    .page-fish-shooting__feature-item,
    .page-fish-shooting__tip-item,
    .page-fish-shooting__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-fish-shooting__hero-image,
    .page-fish-shooting__guide-image,
    .page-fish-shooting__tips-image {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}