:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--page-bg, #08160F); /* Explicitly set page background */
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--gold-color, #F2C14E);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color, #11A84E);
    border-radius: 2px;
}

.page-fishing-games__text-block {
    margin-bottom: 20px;
    color: var(--text-secondary, #A7D9B8);
    font-size: 1.1em;
    text-align: justify;
}

.page-fishing-games__text-block--small {
    font-size: 0.9em;
    text-align: center;
    margin-top: 30px;
    color: var(--text-secondary, #A7D9B8);
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-link {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--primary-color, #11A84E);
    border: 2px solid var(--primary-color, #11A84E);
    box-shadow: 0 2px 10px rgba(17, 168, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--primary-color, #11A84E);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-link {
    background-color: transparent;
    color: var(--gold-color, #F2C14E);
    border: 1px solid var(--gold-color, #F2C14E);
    padding: 8px 20px;
    font-size: 0.9em;
}

.page-fishing-games__btn-link:hover {
    background-color: var(--gold-color, #F2C14E);
    color: var(--card-bg, #11271B);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0;
    text-align: center;
    overflow: hidden;
    background-color: var(--page-bg, #08160F);
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    color: var(--gold-color, #F2C14E);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__subtitle {
    font-size: 1.3em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Intro Section */
.page-fishing-games__intro-section {
    padding: 60px 0;
    background-color: var(--page-bg, #08160F);
}

/* Advantages Section */
.page-fishing-games__advantages-section {
    padding: 60px 0;
    background-color: var(--deep-green, #0A4B2C);
}

.page-fishing-games__advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__advantage-card {
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, #2E7A4E);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--primary-color, #11A84E);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games__card-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1em;
}

/* How-To-Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background-color: var(--page-bg, #08160F);
}

.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-fishing-games__step-card {
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color, #2E7A4E);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-fishing-games__step-number {
    font-size: 2.5em;
    color: var(--gold-color, #F2C14E);
    font-weight: bold;
    margin-bottom: 15px;
    background: var(--deep-green, #0A4B2C);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-color, #F2C14E);
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    color: var(--primary-color, #11A84E);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__step-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Game Types Section */
.page-fishing-games__game-types-section {
    padding: 60px 0;
    background-color: var(--deep-green, #0A4B2C);
}

.page-fishing-games__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__game-card {
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color, #2E7A4E);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-title {
    font-size: 1.6em;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__game-description {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1em;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: 60px 0;
    background-color: var(--page-bg, #08160F);
}

.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__strategy-list li {
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-fishing-games__strategy-heading {
    font-size: 1.6em;
    color: var(--primary-color, #11A84E);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__strategy-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1.05em;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: var(--deep-green, #0A4B2C);
}

.page-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__promo-card {
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color, #2E7A4E);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__promo-title {
    font-size: 1.5em;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__promo-text {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Download Section */
.page-fishing-games__download-section {
    padding: 60px 0;
    background-color: var(--page-bg, #08160F);
}

.page-fishing-games__download-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-fishing-games__download-image {
    width: 40%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__download-text-wrapper {
    width: 60%;
    text-align: left;
}

.page-fishing-games__download-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: var(--text-main, #F2FFF6);
}

.page-fishing-games__download-benefits li {
    margin-bottom: 10px;
    font-size: 1.1em;
    position: relative;
    padding-left: 30px;
}

.page-fishing-games__download-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color, #22C768);
}

.page-fishing-games__cta-buttons--download {
    justify-content: flex-start;
    margin-top: 30px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: var(--deep-green, #0A4B2C);
}

.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: var(--card-bg, #11271B);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #2E7A4E);
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color, #11A84E);
    cursor: pointer;
    background-color: var(--card-bg, #11271B);
    border-bottom: 1px solid var(--divider-color, #1E3A2A);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid var(--primary-color, #11A84E);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--text-main, #F2FFF6);
}

.page-fishing-games__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    color: var(--gold-color, #F2C14E);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1.05em;
    color: var(--text-secondary, #A7D9B8);
    background-color: var(--card-bg, #11271B);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    padding: 80px 0;
    background-color: var(--page-bg, #08160F);
    text-align: center;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-fishing-games__cta-final-section .page-fishing-games__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-fishing-games__section-title {
        font-size: 2em;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }

    .page-fishing-games__subtitle {
        font-size: 1.1em;
    }

    .page-fishing-games__download-content {
        flex-direction: column;
        padding: 30px;
    }

    .page-fishing-games__download-image,
    .page-fishing-games__download-text-wrapper {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .page-fishing-games__cta-buttons--download {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }

    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }

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

    .page-fishing-games__hero-content {
        padding: 0 15px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-fishing-games__subtitle {
        font-size: 1em;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-link {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__advantage-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__game-card-grid,
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__card-image,
    .page-fishing-games__game-image,
    .page-fishing-games__promo-image,
    .page-fishing-games__download-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        display: block !important;
    }

    .page-fishing-games__advantage-card,
    .page-fishing-games__step-card,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__download-content,
    .page-fishing-games__download-text-wrapper,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-fishing-games__hero-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__advantages-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__download-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final-section {
        padding: 40px 0;
    }
    
    .page-fishing-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        font-size: 1em;
        padding: 10px 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 8vw, 2.2em);
    }

    .page-fishing-games__section-title {
        font-size: 1.6em;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important;
    }
}

/* Contrast Fixes */
.page-fishing-games__dark-bg {
  color: #ffffff; /* Deep Green background for these sections, so white text */
  background: var(--deep-green, #0A4B2C);
}

.page-fishing-games__light-bg {
  color: #333333; /* Not used as main background is dark */
  background: #ffffff;
}

.page-fishing-games__medium-bg {
  color: #000000; /* Not used as main background is dark */
  background: var(--secondary-color, #22C768);
}

/* Ensure all images adhere to min size and no filter */
.page-fishing-games img {
    filter: none !important; /* Remove any potential filter effects */
}

/* Content area images CSS size lower limit */
.page-fishing-games__hero-image,
.page-fishing-games__card-image,
.page-fishing-games__game-image,
.page-fishing-games__promo-image,
.page-fishing-games__download-image {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow CSS to control width for responsiveness */
    height: auto;
}