:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --button-register-bg: #C30808;
    --button-login-bg: #C30808;
    --button-text-yellow: #FFFF00;
    --bg-white: #FFFFFF;
}

.page-blog-fishing-games-high-score-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.page-blog-fishing-games-high-score-strategy__hero-section {
    position: relative;
    padding-top: 0; /* Aligned with fixed header spacing rule */
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-blog-fishing-games-high-score-strategy__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.page-blog-fishing-games-high-score-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum size requirement */
}

.page-blog-fishing-games-high-score-strategy__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    z-index: 1;
    position: relative;
    color: var(--text-light);
    background-color: rgba(0, 0, 0, 0.4); /* Subtle overlay for text readability */
    width: 100%;
    box-sizing: border-box;
}

.page-blog-fishing-games-high-score-strategy__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.page-blog-fishing-games-high-score-strategy__intro-text {
    font-size: clamp(1em, 1.8vw, 1.3em);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-color);
}

.page-blog-fishing-games-high-score-strategy__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-fishing-games-high-score-strategy__btn-primary,
.page-blog-fishing-games-high-score-strategy__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-fishing-games-high-score-strategy__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-fishing-games-high-score-strategy__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-blog-fishing-games-high-score-strategy__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-blog-fishing-games-high-score-strategy__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-blog-fishing-games-high-score-strategy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-blog-fishing-games-high-score-strategy__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-fishing-games-high-score-strategy__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-blog-fishing-games-high-score-strategy__sub-title {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-fishing-games-high-score-strategy__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-blog-fishing-games-high-score-strategy__paragraph a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-blog-fishing-games-high-score-strategy__paragraph a:hover {
    color: darken(var(--primary-color), 10%);
}

.page-blog-fishing-games-high-score-strategy__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-blog-fishing-games-high-score-strategy__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-blog-fishing-games-high-score-strategy__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.page-blog-fishing-games-high-score-strategy__image-text-block--reverse {
    flex-direction: row-reverse;
}

.page-blog-fishing-games-high-score-strategy__image-text-block img {
    flex: 1;
    border-radius: 10px;
    min-width: 300px; /* Ensure images are not too small */
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum size requirement */
}

.page-blog-fishing-games-high-score-strategy__text-block {
    flex: 1;
}

.page-blog-fishing-games-high-score-strategy__faq-list {
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-blog-fishing-games-high-score-strategy__faq-item {
    background-color: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-blog-fishing-games-high-score-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #f8f8f8;
    user-select: none;
    list-style: none; /* For details/summary */
}

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

.page-blog-fishing-games-high-score-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-fishing-games-high-score-strategy__faq-item[open] .page-blog-fishing-games-high-score-strategy__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-fishing-games-high-score-strategy__faq-answer {
    padding: 0 25px 18px;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-blog-fishing-games-high-score-strategy__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px;
    min-height: 200px; /* Minimum size requirement */
    object-fit: cover;
}

.page-blog-fishing-games-high-score-strategy__content-image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-fishing-games-high-score-strategy__cta-buttons--bottom {
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-fishing-games-high-score-strategy__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-blog-fishing-games-high-score-strategy__float-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-blog-fishing-games-high-score-strategy__float-btn--register {
    background-color: var(--button-register-bg);
    color: var(--button-text-yellow);
}

.page-blog-fishing-games-high-score-strategy__float-btn--register:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.page-blog-fishing-games-high-score-strategy__float-btn--login {
    background-color: var(--button-login-bg);
    color: var(--button-text-yellow);
}

.page-blog-fishing-games-high-score-strategy__float-btn--login:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-fishing-games-high-score-strategy__hero-content {
        padding: 30px 20px;
    }

    .page-blog-fishing-games-high-score-strategy__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }

    .page-blog-fishing-games-high-score-strategy__intro-text {
        font-size: clamp(1em, 2vw, 1.2em);
    }

    .page-blog-fishing-games-high-score-strategy__section-title {
        font-size: 2em;
    }

    .page-blog-fishing-games-high-score-strategy__sub-title {
        font-size: 1.4em;
    }

    .page-blog-fishing-games-high-score-strategy__paragraph,
    .page-blog-fishing-games-high-score-strategy__list-item,
    .page-blog-fishing-games-high-score-strategy__faq-answer {
        font-size: 1em;
    }

    .page-blog-fishing-games-high-score-strategy__image-text-block {
        flex-direction: column;
        gap: 30px;
    }

    .page-blog-fishing-games-high-score-strategy__image-text-block--reverse {
        flex-direction: column;
    }

    .page-blog-fishing-games-high-score-strategy__image-text-block img {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    /* LOGO carousel is not on this page, but if it were: */
    /* .page-blog-fishing-games-high-score-strategy__logo-carousel-section { padding: 10px 15px 20px !important; } */
    /* .page-blog-fishing-games-high-score-strategy__logo-item { width: 80px !important; height: 80px !important; max-width: 80px !important; } */

    /* HERO Section */
    .page-blog-fishing-games-high-score-strategy__hero-section {
        padding-top: 0 !important; /* Ensures no double padding with body */
    }

    .page-blog-fishing-games-high-score-strategy__hero-content {
        padding: 25px 15px;
    }

    .page-blog-fishing-games-high-score-strategy__main-title {
        font-size: 1.8em !important; /* Fixed H1 font size for mobile */
        margin-bottom: 10px;
    }

    .page-blog-fishing-games-high-score-strategy__intro-text {
        font-size: 1em !important;
        margin-bottom: 20px;
    }

    /* General Images and Containers */
    .page-blog-fishing-games-high-score-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
        min-height: 200px !important; /* Enforce minimum size */
    }

    .page-blog-fishing-games-high-score-strategy__container,
    .page-blog-fishing-games-high-score-strategy__hero-image-wrapper,
    .page-blog-fishing-games-high-score-strategy__image-text-block,
    .page-blog-fishing-games-high-score-strategy__text-block,
    .page-blog-fishing-games-high-score-strategy__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-fishing-games-high-score-strategy__content-area {
        padding: 40px 0; /* Adjust padding for full width content container */
    }

    /* Buttons and Button Containers */
    .page-blog-fishing-games-high-score-strategy__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-fishing-games-high-score-strategy__btn-primary,
    .page-blog-fishing-games-high-score-strategy__btn-secondary,
    .page-blog-fishing-games-high-score-strategy a[class*="button"],
    .page-blog-fishing-games-high-score-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-left: 15px;
        padding-right: 15px;
    }

    /* Other Content Modules */
    .page-blog-fishing-games-high-score-strategy__section-title {
        font-size: 1.6em !important;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-fishing-games-high-score-strategy__sub-title {
        font-size: 1.2em !important;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-blog-fishing-games-high-score-strategy__paragraph,
    .page-blog-fishing-games-high-score-strategy__list-item,
    .page-blog-fishing-games-high-score-strategy__faq-answer {
        font-size: 0.95em !important;
    }

    .page-blog-fishing-games-high-score-strategy__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-blog-fishing-games-high-score-strategy__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .page-blog-fishing-games-high-score-strategy__float-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

/* Ensure content area images are not too small as per rules */
.page-blog-fishing-games-high-score-strategy__content-area img:not(.page-blog-fishing-games-high-score-strategy__logo-item) {
    min-width: 200px;
    min-height: 200px;
}

/* Color Contrast Specifics */
.page-blog-fishing-games-high-score-strategy__dark-bg {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-blog-fishing-games-high-score-strategy__light-bg {
  background: var(--bg-white);
  color: var(--text-dark);
}

.page-blog-fishing-games-high-score-strategy__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-fishing-games-high-score-strategy__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-fishing-games-high-score-strategy__float-btn--register,
.page-blog-fishing-games-high-score-strategy__float-btn--login {
    background-color: var(--button-register-bg);
    color: var(--button-text-yellow);
}

.page-blog-fishing-games-high-score-strategy__faq-question {
    color: var(--primary-color);
}

.page-blog-fishing-games-high-score-strategy__faq-item {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-blog-fishing-games-high-score-strategy__faq-answer p {
    color: var(--text-dark);
}