.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #fff; /* Body background is #fff */
}

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

.page-fishing-games__dark-section {
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__light-bg {
    background-color: #ffffff; /* Explicitly white for contrast */
    color: #333333; /* Dark text for light background */
}

.page-fishing-games__card {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    background-color: transparent;
    color: #2AD16F; /* Main color */
    border: 2px solid #2AD16F; /* Main color */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #2AD16F;
    color: #ffffff;
}

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

.page-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
    font-weight: bold;
    color: #11A84E; /* Main color for titles on light background */
}

.page-fishing-games__section-title--light {
    color: #F2FFF6; /* Text Main for titles on dark background */
}

.page-fishing-games__text-block {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: inherit; /* Inherit from section for contrast */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding: 10px 0 60px 0; /* Small padding-top, body has header offset */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit image height */
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure min size */
}

.page-fishing-games__hero-content {
    position: relative; /* Not absolute, to be below image */
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Above any potential background elements */
}

.page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 56px); /* Use clamp for H1 */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #F2FFF6; /* Text Main */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__description {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Feature Grid */
.page-fishing-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-item {
    text-align: center;
    padding: 25px;
    border-radius: 8px;
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__feature-icon {
    width: 100%; /* Ensure images are responsive */
    max-width: 250px;
    height: auto;
    margin-bottom: 15px;
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
    border-radius: 5px;
}

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

.page-fishing-games__feature-description {
    font-size: 15px;
    color: #A7D9B8; /* Text Secondary */
}

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

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

.page-fishing-games__game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.page-fishing-games__game-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: cover;
    min-height: 200px; /* Enforce min size */
}

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

.page-fishing-games__game-description {
    font-size: 15px;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1; /* Push button to bottom */
}

/* Guide List */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__guide-list li {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games__guide-step-description {
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
}

/* Strategy List */
.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__strategy-list li {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games__strategy-description {
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-fishing-games__promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.page-fishing-games__promo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: cover;
    min-height: 200px; /* Enforce min size */
}

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

.page-fishing-games__promo-description {
    font-size: 15px;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1;
}

/* FAQ */
.page-fishing-games__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green for summary background */
}

.page-fishing-games__faq-question::marker {
    display: none;
}
.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}

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

.page-fishing-games__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Main color */
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 25px 25px;
    font-size: 16px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.5;
}

/* CTA Banner */
.page-fishing-games__cta-banner {
    padding: 80px 20px;
    text-align: center;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    border-top: 1px solid #2E7A4E; /* Divider */
}

.page-fishing-games__cta-banner-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: bold;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__cta-banner-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #A7D9B8; /* Text Secondary */
}

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

    .page-fishing-games__container {
        padding: 0 15px; /* Adjust padding for mobile */
    }

    .page-fishing-games__section {
        padding: 40px 0;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* Small padding-top, body has header offset */
        padding-bottom: 40px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .page-fishing-games__description {
        font-size: clamp(15px, 3vw, 18px);
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to prevent overflow */
    }
    
    .page-fishing-games__cta-buttons a {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__guide-list li,
    .page-fishing-games__strategy-list li,
    .page-fishing-games__faq-item {
        padding: 20px;
    }

    .page-fishing-games__hero-image,
    .page-fishing-games__content-image,
    .page-fishing-games__feature-icon,
    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-height: 200px !important; /* Ensure min size */
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__cta-banner-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    
    .page-fishing-games__video-section {
        padding-top: 10px !important; 
    }

    .page-fishing-games__cta-banner {
        padding: 50px 0;
    }
}

/* Ensure all img elements in content area are at least 200px */
.page-fishing-games img:not(.shared-logo, .shared-icon) {
    min-width: 200px;
    min-height: 200px;
}

/* Specific rule for content images to ensure min-width/height */
.page-fishing-games__content-image,
.page-fishing-games__feature-icon,
.page-fishing-games__game-image,
.page-fishing-games__promo-image {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure images have width/height attributes for CLS */
.page-fishing-games img {
    width: 100%; /* Default for images to be responsive */
    height: auto;
}