.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for the page, assuming dark body bg */
    background-color: var(--bg-color, #08160F); /* Fallback if shared.css doesn't define */
}

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

/* Section Styling */
.page-fishing-games__hero-section,
.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section,
.page-fishing-games__final-cta-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure content doesn't bleed */
}

.page-fishing-games__hero-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    color: #F2FFF6;
    background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    position: relative;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height to prevent overly large hero image */
}

.page-fishing-games__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    color: #F2FFF6;
    background-color: #0A4B2C; /* Deep Green background for content */
    border-radius: 8px;
    margin-top: -80px; /* Overlap slightly with image for visual interest, but not on top of the image itself */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-fishing-games__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    box-sizing: border-box;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Gold text */
    border: 2px solid #F2C14E; /* Gold border */
}

.page-fishing-games__btn-secondary:hover {
    background-color: #F2C14E;
    color: #08160F; /* Dark text on gold hover */
    transform: translateY(-3px);
}

/* Section Titles */
.page-fishing-games__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    color: #F2C14E; /* Gold for section titles */
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

/* Text Blocks */
.page-fishing-games__text-block {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.05em;
    margin-bottom: 25px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Image content */
.page-fishing-games__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    background-color: #08160F; /* Background color */
    color: #F2FFF6;
    padding-top: 10px;
}

/* Features Section */
.page-fishing-games__features-section {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6;
    padding-top: 10px;
}

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

.page-fishing-games__feature-card {
    background-color: #0A4B2C; /* Deep Green */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6;
    border: 1px solid #2E7A4E; /* Border color */
}

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

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__card-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    line-height: 1.5;
}

.page-fishing-games__cta-center {
    margin-top: 50px;
}

/* How-To-Play Section */
.page-fishing-games__how-to-play-section {
    background-color: #08160F; /* Background color */
    color: #F2FFF6;
    padding-top: 10px;
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    max-width: 900px;
}

.page-fishing-games__step-item {
    background-color: #11271B; /* Card BG */
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
    border-left: 5px solid #2AD16F; /* Green accent */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__step-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6;
    padding-top: 10px;
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 50px auto;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-fishing-games__faq-item summary:hover {
    background-color: #1E3A2A; /* Darker green on hover */
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Gold for question text */
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Green for toggle icon */
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
}

/* Final CTA Section */
.page-fishing-games__final-cta-section {
    background-color: #08160F; /* Background color */
    color: #F2FFF6;
    padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-fishing-games__hero-content {
        padding: 30px 15px;
        margin-top: -60px;
    }

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

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

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-fishing-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-fishing-games__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__step-item,
    .page-fishing-games__faq-item {
        padding: 20px;
    }

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

    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
    }

    /* Images responsive */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure image containers also adapt */
    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__image-content {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
    }

    /* Video responsive (if any, though not in this HTML for now) */
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
}

/* Contrast Fixes (just in case, based on provided guidance) */
.page-fishing-games__dark-bg {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__light-bg {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

/* Specific text elements for contrast */
.page-fishing-games p,
.page-fishing-games li {
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__hero-content p {
    color: #A7D9B8;
}

.page-fishing-games__feature-card p {
    color: #A7D9B8;
}

.page-fishing-games__step-description {
    color: #A7D9B8;
}

.page-fishing-games__faq-answer p {
    color: #A7D9B8;
}