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

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color-main, #08160F); /* Fallback to deep green if variable not set */
    color: var(--text-main, #F2FFF6); /* Main text color for dark background */
    line-height: 1.6;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align content to top initially */
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--deep-green, #0A4B2C); /* A darker green for the hero section background */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* The image is above the text, so no absolute positioning for text on image */
}

.page-fishing-games__hero-content {
    position: relative; /* Relative positioning for content block */
    z-index: 1; /* Ensure content is above image if needed, though structure is image then content */
    max-width: 900px;
    text-align: center;
    padding: 20px;
    margin-top: -100px; /* Pull content up over the bottom part of the image */
    background: linear-gradient(to bottom, rgba(8, 22, 15, 0.0) 0%, var(--bg-color-main, #08160F) 50%, var(--bg-color-main, #08160F) 100%);
    border-radius: 10px;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 5vw, 3.2em); /* Responsive font size */
    color: var(--gold-color, #F2C14E); /* Gold color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Subtle glow for gold text */
}

.page-fishing-games__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
    max-width: 100%;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient, linear-gradient(180deg, #2AD16F 0%, #13994A 100%));
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
    filter: brightness(1.1);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--primary-color, #11A84E);
    border: 2px solid var(--primary-color, #11A84E);
    box-shadow: 0 3px 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 5px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary--large {
    padding: 18px 36px;
    font-size: 1.2em;
    min-width: 250px;
}

.page-fishing-games__btn-tertiary {
    background-color: var(--deep-green, #0A4B2C);
    color: var(--text-main, #F2FFF6);
    border: 1px solid var(--border-color, #2E7A4E);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95em;
}

.page-fishing-games__btn-tertiary:hover {
    background-color: var(--primary-color, #11A84E);
    color: #ffffff;
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    color: var(--gold-color, #F2C14E);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__section-title--light {
    color: var(--text-main, #F2FFF6);
    text-shadow: none;
}

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

.page-fishing-games__paragraph--light {
    color: var(--text-main, #F2FFF6);
}

.page-fishing-games__text-center {
    text-align: center;
}

.page-fishing-games__text-link {
    color: var(--primary-color, #11A84E);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__text-link:hover {
    text-decoration: underline;
    color: var(--secondary-color, #22C768);
}

.page-fishing-games__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

/* Why Choose Section (Features Grid) */
.page-fishing-games__why-choose-section {
    padding: 60px 0;
    background-color: var(--card-bg, #11271B); /* Slightly different background for visual separation */
}

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

.page-fishing-games__feature-card {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__card-title {
    font-size: 1.4em;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Game Showcase Section */
.page-fishing-games__game-showcase-section {
    padding: 60px 0;
    background-color: var(--bg-color-main, #08160F);
}

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

.page-fishing-games__game-card {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, #2E7A4E);
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

.page-fishing-games__game-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for thumbnails */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    min-width: unset;
    min-height: unset;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
    margin-top: 0;
    padding: 0 20px;
    font-size: 1.3em;
}

.page-fishing-games__game-card .page-fishing-games__card-description {
    flex-grow: 1; /* Allow description to take available space */
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-fishing-games__game-card .page-fishing-games__btn-tertiary {
    margin: 0 20px 20px;
    width: auto; /* Allow button to size naturally */
    align-self: center; /* Center the button */
}

/* How to Play Section (Steps Grid) */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background-color: var(--card-bg, #11271B);
}

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

.page-fishing-games__step-card {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color, #2E7A4E);
}

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

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

.page-fishing-games__cta-section {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 12px;
    border: 1px solid var(--border-color, #2E7A4E);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

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

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

.page-fishing-games__list-item {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #2E7A4E);
}

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

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

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: var(--card-bg, #11271B);
}

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

.page-fishing-games__promo-card {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, #2E7A4E);
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

.page-fishing-games__promo-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for promo thumbnails */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    min-width: unset;
    min-height: unset;
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
    margin-top: 0;
    padding: 0 20px;
    font-size: 1.3em;
}

.page-fishing-games__promo-card .page-fishing-games__card-description {
    flex-grow: 1;
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-fishing-games__promo-card .page-fishing-games__btn-tertiary {
    margin: 0 20px 20px;
    width: auto;
    align-self: center;
}

/* Full Width CTA */
.page-fishing-games__cta-full-width {
    background: linear-gradient(90deg, var(--deep-green, #0A4B2C) 0%, var(--primary-color, #11A84E) 50%, var(--deep-green, #0A4B2C) 100%);
    padding: 80px 0;
    text-align: center;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1em;
    color: var(--text-main, #F2FFF6);
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
    list-style: none; /* For details summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome/Safari */
}

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

.page-fishing-games__faq-question:hover {
    background-color: rgba(var(--primary-color-rgb, 17, 168, 78), 0.2); /* Lighter hover for dark background */
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    color: #ffffff; /* White toggle when open */
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 25px;
    font-size: 1em;
    color: var(--text-secondary, #A7D9B8);
    line-height: 1.6;
    border-top: 1px solid var(--divider-color, #1E3A2A);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -80px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6em, 3.5vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }
    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-tertiary {
        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;
    }
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-fishing-games__paragraph {
        font-size: 0.95em;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__promo-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__game-thumbnail,
    .page-fishing-games__promo-thumbnail {
        height: 180px;
    }
    .page-fishing-games__list-item {
        padding: 20px;
    }
    .page-fishing-games__list-title,
    .page-fishing-games__card-title {
        font-size: 1.2em;
    }
    .page-fishing-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 10px 20px 20px;
    }

    /* Image responsive overrides */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
}

/* Ensure images are at least 200x200px where applicable, and not small icons */
.page-fishing-games img {
    min-width: 200px;
    min-height: 200px;
}
/* Override min-size for specific elements that are clearly not icons */
.page-fishing-games__hero-image {
    min-width: unset;
    min-height: unset;
}
.page-fishing-games__game-thumbnail,
.page-fishing-games__promo-thumbnail {
    min-width: unset;
    min-height: unset;
}
.page-fishing-games__image-content {
    min-width: unset;
    min-height: unset;
}