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

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

/* Hero Section */
.page-fishing-games-best-strategies__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Adjusted to allow space below hero content */
    background-color: #017439; /* Brand primary color for hero background */
    color: #ffffff;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-fishing-games-best-strategies__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-fishing-games-best-strategies__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly dim the background image */
    filter: none; /* Ensure no filter changes color */
}

.page-fishing-games-best-strategies__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-fishing-games-best-strategies__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-fishing-games-best-strategies__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* CTA Buttons */
.page-fishing-games-best-strategies__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

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

.page-fishing-games-best-strategies__btn-primary {
    background-color: #C30808; /* Specific color for register/login */
    color: #FFFF00; /* Specific font color for register/login */
    border: 2px solid #C30808;
}

.page-fishing-games-best-strategies__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

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

.page-fishing-games-best-strategies__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

.page-fishing-games-best-strategies__btn-large {
    padding: 18px 35px;
    font-size: 1.1em;
}

/* General Sections */
.page-fishing-games-best-strategies__intro-section,
.page-fishing-games-best-strategies__strategies-section,
.page-fishing-games-best-strategies__advanced-tactics-section,
.page-fishing-games-best-strategies__video-section,
.page-fishing-games-best-strategies__faq-section,
.page-fishing-games-best-strategies__cta-bottom-section {
    padding: 80px 0;
}

.page-fishing-games-best-strategies__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter dark for content sections */
    color: #ffffff;
}

.page-fishing-games-best-strategies__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-fishing-games-best-strategies__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games-best-strategies__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-fishing-games-best-strategies__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games-best-strategies__paragraph a {
    color: #017439;
    text-decoration: underline;
}
.page-fishing-games-best-strategies__dark-bg .page-fishing-games-best-strategies__paragraph a {
    color: #FFFF00; /* Yellow for links on dark background */
}

.page-fishing-games-best-strategies__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    filter: none; /* Ensure no filter changes color */
}

/* Strategies Grid */
.page-fishing-games-best-strategies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-best-strategies__strategy-card {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-best-strategies__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-best-strategies__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-fishing-games-best-strategies__card-text {
    font-size: 1em;
    line-height: 1.7;
}

.page-fishing-games-best-strategies__card-text a {
    color: #017439;
    text-decoration: underline;
}

/* Advanced Tactics */
.page-fishing-games-best-strategies__content-block {
    margin-bottom: 40px;
}

.page-fishing-games-best-strategies__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 40px;
    margin-bottom: 20px;
}
.page-fishing-games-best-strategies__dark-bg .page-fishing-games-best-strategies__sub-title {
    color: #FFFF00; /* Yellow for sub-titles on dark background */
}


.page-fishing-games-best-strategies__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games-best-strategies__highlight-item {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-best-strategies__highlight-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #FFFF00; /* Yellow for highlight titles */
}

.page-fishing-games-best-strategies__highlight-text {
    font-size: 0.95em;
    line-height: 1.6;
}

/* Video Section */
.page-fishing-games-best-strategies__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.page-fishing-games-best-strategies__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
    filter: none; /* Ensure no filter changes color */
}

.page-fishing-games-best-strategies__video-description {
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
    color: #f0f0f0;
    margin-top: 20px;
}


/* FAQ Section */
.page-fishing-games-best-strategies__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-best-strategies__faq-item {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games-best-strategies__faq-item[open] {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-fishing-games-best-strategies__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    list-style: none; /* Hide default marker for details summary */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}
.page-fishing-games-best-strategies__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games-best-strategies__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-fishing-games-best-strategies__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #017439;
    transition: transform 0.3s ease;
}

.page-fishing-games-best-strategies__faq-item[open] .page-fishing-games-best-strategies__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-fishing-games-best-strategies__faq-answer {
    padding: 20px 25px;
    font-size: 1.05em;
    color: #555555;
    background-color: #ffffff;
    border-top: none;
}
.page-fishing-games-best-strategies__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
}
.page-fishing-games-best-strategies__faq-answer a {
    color: #017439;
    text-decoration: underline;
}

/* CTA Bottom Section */
.page-fishing-games-best-strategies__cta-bottom-section {
    text-align: center;
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
}

.page-fishing-games-best-strategies__cta-content {
    max-width: 900px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-best-strategies__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games-best-strategies__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-best-strategies__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
    }
    .page-fishing-games-best-strategies__hero-content {
        padding: 40px 15px;
    }
    .page-fishing-games-best-strategies__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games-best-strategies__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-best-strategies__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-best-strategies__btn-primary,
    .page-fishing-games-best-strategies__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    .page-fishing-games-best-strategies__btn-large {
        padding: 15px 25px;
    }

    .page-fishing-games-best-strategies__intro-section,
    .page-fishing-games-best-strategies__strategies-section,
    .page-fishing-games-best-strategies__advanced-tactics-section,
    .page-fishing-games-best-strategies__video-section,
    .page-fishing-games-best-strategies__faq-section,
    .page-fishing-games-best-strategies__cta-bottom-section {
        padding: 50px 0;
    }

    .page-fishing-games-best-strategies__container {
        padding: 0 15px;
    }

    .page-fishing-games-best-strategies__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-fishing-games-best-strategies__paragraph {
        font-size: 0.95em;
    }

    .page-fishing-games-best-strategies__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 30px auto;
        box-sizing: border-box !important;
    }

    .page-fishing-games-best-strategies__strategy-card {
        padding: 20px;
    }
    .page-fishing-games-best-strategies__card-title {
        font-size: 1.3em;
    }

    .page-fishing-games-best-strategies__sub-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-fishing-games-best-strategies__highlight-item {
        padding: 20px;
    }
    .page-fishing-games-best-strategies__highlight-title {
        font-size: 1.1em;
    }
}