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

.page-fishing-games__hero-section {
    position: relative;
    background-color: #017439; /* Use primary color as base for hero */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding as per rules */
    padding-bottom: 40px;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 20px;
}

.page-fishing-games__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 250px; /* Ensure hero image is large enough */
}

.page-fishing-games__hero-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-fishing-games__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
    min-height: 44px; /* Touch target size */
}

.page-fishing-games__btn--primary {
    background-color: #C30808; /* Register/Login color for primary CTA */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-fishing-games__btn--primary:hover {
    background-color: #e00b0b;
    transform: translateY(-2px);
}

.page-fishing-games__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-fishing-games__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-fishing-games__section-title--gradient {
    background: linear-gradient(90deg, #ff9500, #ff5e3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__gallery-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Default background */
}

.page-fishing-games__introduction-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 15px;
    text-align: justify;
}

.page-fishing-games__introduction-section p strong {
    color: #017439;
}

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

.page-fishing-games__feature-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__feature-image {
    width: 100%;
    height: 200px; /* Ensure minimum height */
    object-fit: cover;
    margin-bottom: 20px;
    min-height: 200px; /* Specific override for these elements */
    min-width: 200px;
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    color: #017439;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__feature-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    padding: 0 15px;
}

.page-fishing-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted for more columns on desktop */
    gap: 20px;
    margin-bottom: 40px;
}

.page-fishing-games__game-tile {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-fishing-games__game-tile:hover {
    transform: translateY(-5px);
}

.page-fishing-games__game-tile img {
    width: 100%;
    height: 200px; /* Minimum size for game images */
    object-fit: cover;
    display: block;
    min-height: 200px; /* Specific override for these elements */
    min-width: 200px;
}

.page-fishing-games__view-all {
    text-align: center;
}

.page-fishing-games__how-to-play-section {
    background-color: #f0fdf5; /* Lighter background for steps */
}

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

.page-fishing-games__step-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-fishing-games__step-item h3 {
    font-size: 1.3rem;
    color: #017439;
    margin-bottom: 10px;
}

.page-fishing-games__step-item p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

.page-fishing-games__step-item p a {
    color: #C30808; /* Link color for internal links in steps */
    text-decoration: underline;
}

.page-fishing-games__faq-section {
    background-color: #FFFFFF;
}

.page-fishing-games__faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-fishing-games__faq-question {
    font-size: 1.15rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__faq-answer {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

.page-fishing-games__cta-section {
    background-color: #017439;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-fishing-games__cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__btn--large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Global image reset to ensure minimum size and responsiveness */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no CSS filter changes image colors */
}

/* Mobile responsiveness */
@media (max-width: 849px) {
    .page-fishing-games__hero-section {
        padding-bottom: 30px;
    }

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

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

    .page-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__btn {
        width: 100%;
        max-width: 280px;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-fishing-games__introduction-section,
    .page-fishing-games__features-section,
    .page-fishing-games__gallery-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 40px 0;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__games-grid,
    .page-fishing-games__steps-list {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__feature-image,
    .page-fishing-games__game-tile img {
        height: 200px; /* Maintain minimum height */
        min-height: 200px;
        min-width: unset; /* Allow width to scale down */
    }

    .page-fishing-games__game-tile {
        max-width: 100%;
    }

    .page-fishing-games__introduction-section p,
    .page-fishing-games__feature-card p,
    .page-fishing-games__step-item p,
    .page-fishing-games__faq-answer,
    .page-fishing-games__cta-description {
        font-size: 0.9rem;
    }
}

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

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

    .page-fishing-games__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .page-fishing-games__hero-actions {
        gap: 10px;
    }

    .page-fishing-games__btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
        margin-bottom: 25px;
    }

    .page-fishing-games__introduction-section,
    .page-fishing-games__features-section,
    .page-fishing-games__gallery-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 30px 0;
    }

    .page-fishing-games__feature-image,
    .page-fishing-games__game-tile img {
         /* Slightly smaller for very small screens, but still >200 */
        min-height: 200px;
        min-width: unset;
    }
    
    .page-fishing-games__game-tile {
        max-width: 100%;
    }
}