.page-fishing-games-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Body background from shared.css */
}

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

/* Hero Section */
.page-fishing-games-strategy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0; /* Important: Rely on body padding-top for header offset */
    padding-bottom: 40px;
    background: linear-gradient(135deg, #26A9E0, #1a7bbd);
    color: #ffffff;
    overflow: hidden;
}

.page-fishing-games-strategy__hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-fishing-games-strategy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-fishing-games-strategy__main-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 100%; /* Ensure title doesn't overflow */
}

.page-fishing-games-strategy__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-fishing-games-strategy__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.page-fishing-games-strategy__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-fishing-games-strategy__btn-primary:hover {
    background-color: #d16b06;
    transform: translateY(-2px);
}

.page-fishing-games-strategy__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-fishing-games-strategy__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Logo Carousel Section */
.page-fishing-games-strategy__logo-carousel-section {
    background-color: #0a0a0a;
    padding: 10px 20px 30px; /* Approx 10px top padding, rely on body for header offset */
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-strategy__section-title {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-fishing-games-strategy__logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.page-fishing-games-strategy__logo-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__logo-item img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    border-radius: 0; /* Ensure no unwanted border-radius from general img rules */
}

/* Content Section */
.page-fishing-games-strategy__content-section {
    background-color: #1a1a1a; /* Slightly lighter dark for content */
    padding: 60px 0;
    color: #ffffff;
}

.page-fishing-games-strategy__section-heading {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #26A9E0;
    text-align: center;
}

.page-fishing-games-strategy__sub-heading {
    font-size: 1.6em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid #26A9E0;
    padding-bottom: 5px;
    display: inline-block;
}

.page-fishing-games-strategy__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #f0f0f0;
}

.page-fishing-games-strategy__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-fishing-games-strategy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-fishing-games-strategy__list-item strong {
    color: #26A9E0;
}

/* FAQ Section */
.page-fishing-games-strategy__faq-section {
    background-color: #0a0a0a;
    padding: 60px 0;
    color: #ffffff;
}

.page-fishing-games-strategy__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-strategy__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-fishing-games-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: #26A9E0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    list-style: none; /* For <summary> tag */
}

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

.page-fishing-games-strategy__faq-question:hover {
    background-color: #1a7bbd;
}

.page-fishing-games-strategy__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-fishing-games-strategy__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #ffffff;
}

.page-fishing-games-strategy__faq-answer {
    padding: 15px 25px;
    font-size: 1.0em;
    color: #f0f0f0;
    line-height: 1.6;
    background-color: #1a1a1a;
}

/* DETAILS tag specific styles */
details.page-fishing-games-strategy__faq-item[open] .page-fishing-games-strategy__faq-question {
    background-color: #1a7bbd;
}

/* General image responsiveness */
.page-fishing-games-strategy img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .page-fishing-games-strategy__main-title {
        font-size: 2.5em;
    }
    .page-fishing-games-strategy__section-heading {
        font-size: 2em;
    }
    .page-fishing-games-strategy__sub-heading {
        font-size: 1.4em;
    }
    .page-fishing-games-strategy__logo-carousel {
        gap: 20px;
    }
    .page-fishing-games-strategy__logo-item {
        width: 70px;
        height: 70px;
    }
    .page-fishing-games-strategy__logo-item img {
        max-width: 50px;
        max-height: 50px;
    }
}

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

    /* LOGO Carousel Section */
    .page-fishing-games-strategy__logo-carousel-section {
        padding: 10px 15px 20px; /* Approx 10px top padding, rely on body for header offset */
    }
    .page-fishing-games-strategy__logo-carousel {
        gap: 15px;
        justify-content: center;
        max-width: 100%;
        padding: 0 15px; /* Add padding to container to prevent overflow */
        box-sizing: border-box;
    }
    .page-fishing-games-strategy__logo-item {
        width: 80px !important; /* Fixed 80px, prohibit 100% */
        height: 80px !important; /* Fixed 80px */
        max-width: 80px !important; /* Ensure not overridden */
        box-sizing: border-box;
        padding: 0; /* Reset padding */
    }
    .page-fishing-games-strategy__logo-item img {
        max-width: 60px !important;
        max-height: 60px !important;
    }

    /* HERO Section */
    .page-fishing-games-strategy__hero-section {
        padding-top: 0 !important; /* Force 0 padding-top for hero */
        padding-bottom: 30px;
    }
    .page-fishing-games-strategy__hero-image {
        max-height: 400px;
        margin-bottom: 15px;
    }
    .page-fishing-games-strategy__hero-content {
        padding: 0 15px;
    }
    .page-fishing-games-strategy__main-title {
        font-size: 2em;
        margin-bottom: 10px;
    }
    .page-fishing-games-strategy__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* General Images & Containers */
    .page-fishing-games-strategy img {
        max-width: 100% !important;
        width: 100% !important; /* Force width 100% for content images */
        height: auto !important;
        border-radius: 8px; /* Slightly smaller radius for mobile */
    }
    .page-fishing-games-strategy__container,
    .page-fishing-games-strategy__content-section,
    .page-fishing-games-strategy__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Game Display/Content Sections */
    .page-fishing-games-strategy__section-heading {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-fishing-games-strategy__sub-heading {
        font-size: 1.3em;
        margin-top: 30px;
    }
    .page-fishing-games-strategy__paragraph,
    .page-fishing-games-strategy__list-item {
        font-size: 0.95em;
    }
    .page-fishing-games-strategy__content-image {
        margin: 20px auto;
    }

    /* Buttons & Button Containers */
    .page-fishing-games-strategy__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden; /* Prevent horizontal scroll */
    }
    .page-fishing-games-strategy__btn-primary,
    .page-fishing-games-strategy__btn-secondary,
    .page-fishing-games-strategy a[class*="button"],
    .page-fishing-games-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 20px; /* Adjust padding for mobile buttons */
    }

    /* FAQ Section */
    .page-fishing-games-strategy__faq-list {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-fishing-games-strategy__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-fishing-games-strategy__faq-answer {
        padding: 12px 20px;
        font-size: 0.95em;
    }
    .page-fishing-games-strategy__faq-toggle {
        font-size: 1.3em;
    }
}