.page-fishing-games {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.page-fishing-games__hero-image-wrapper {
    margin-bottom: 30px;
}

.page-fishing-games__hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1200px; /* Max width for desktop */
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-fishing-games__hero-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FF8C1A, #FFA53A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF3E6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-cta-button,
.page-fishing-games__view-all-button,
.page-fishing-games__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6; /* Ensure text color is visible */
    border: none;
}

.page-fishing-games__hero-cta-button:hover,
.page-fishing-games__view-all-button:hover,
.page-fishing-games__cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-fishing-games__introduction-section,
.page-fishing-games__games-showcase,
.page-fishing-games__advantages-section,
.page-fishing-games__cta-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #FF8C1A, #FFA53A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-fishing-games__section-text {
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF3E6;
}

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

.page-fishing-games__game-tile {
    display: block;
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #A84F0C; /* Border color */
}

.page-fishing-games__game-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

.page-fishing-games__game-tile img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
    aspect-ratio: 3/2; /* Common aspect ratio for game images */
}

.page-fishing-games__view-all-wrapper {
    margin-top: 40px;
}

.page-fishing-games__advantage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.page-fishing-games__advantage-item {
    background-color: #17191F; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #A84F0C; /* Border color */
    color: #FFF3E6;
}

.page-fishing-games__advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFA53A; /* Auxiliary color for sub-titles */
}

.page-fishing-games__advantage-description {
    font-size: 0.95rem;
    color: #FFF3E6;
}

.page-fishing-games__cta-section {
    padding-bottom: 60px;
}

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

.page-fishing-games__cta-button--primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
}

.page-fishing-games__cta-button--secondary {
    background: #17191F; /* Card BG as background */
    color: #FFA53A; /* Auxiliary color for text */
    border: 1px solid #FFA53A; /* Border in auxiliary color */
}

.page-fishing-games__cta-button--secondary:hover {
    background: #FFA53A;
    color: #17191F;
    border-color: #FFA53A;
}

/* --- Responsive Adjustments --- */
@media (max-width: 849px) {
    .page-fishing-games__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-fishing-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust min-width for smaller screens */
        padding: 0 10px;
    }

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

    .page-fishing-games__advantage-list {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__games-showcase,
    .page-fishing-games__advantages-section,
    .page-fishing-games__cta-section {
        padding: 30px 15px;
    }

    .page-fishing-games__hero-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

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

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

    .page-fishing-games__game-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .page-fishing-games__hero-cta-button,
    .page-fishing-games__view-all-button,
    .page-fishing-games__cta-button {
        width: 100%;
        max-width: 280px; /* Constrain width for full-width buttons */
        margin-left: auto;
        margin-right: auto;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Ensure content images are responsive and don't overflow on mobile */
@media (max-width: 768px) {
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}
/* CSS rule to ensure minimum size for all images within .page-fishing-games */
.page-fishing-games img {
    min-width: 200px;
    min-height: 200px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}