.page-fishing-games {
    background-color: #08162B; /* Deep Navy as main background */
    color: #F3F8FF; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #F2C14E; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-fishing-games__text-content {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #AFC4E8; /* Text Secondary */
    text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #113B7A; /* Main color as hero background */
}

.page-fishing-games__hero-visual {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.page-fishing-games__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__hero-content {
    text-align: center;
    padding: 0 15px 40px;
    max-width: 800px;
}

.page-fishing-games__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: #F3F8FF; /* Text Main */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
    color: #F3F8FF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    text-align: center;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--secondary {
    background: linear-gradient(180deg, #1D5FD1 0%, #113B7A 100%);
}

/* About Section */
.page-fishing-games__about-section {
    padding: 60px 0;
    background-color: #10233F; /* Card BG */
    margin-bottom: 40px;
    border-radius: 10px;
}

.page-fishing-games__about-section .page-fishing-games__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__image-wrapper {
    margin: 30px 0;
    width: 100%;
    max-width: 800px;
}

.page-fishing-games__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* Game List Section */
.page-fishing-games__game-list-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

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

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

.page-fishing-games__game-tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__view-all-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 25px;
    background: linear-gradient(180deg, #1D5FD1 0%, #113B7A 100%); /* Auxiliary color for secondary buttons */
    color: #F3F8FF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* Features Section */
.page-fishing-games__features-section {
    padding: 60px 0;
    background-color: #113B7A; /* Main color */
    margin-bottom: 40px;
    border-radius: 10px;
}

.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: #10233F; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__feature-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__feature-description {
    font-size: 0.95rem;
    color: #AFC4E8; /* Text Secondary */
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.page-fishing-games__step-item {
    background-color: #10233F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-fishing-games__step-title {
    font-size: 1.5rem;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: #113B7A; /* Main color */
    border-radius: 10px;
}

.page-fishing-games__faq-item {
    background-color: #10233F; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
}

.page-fishing-games__faq-answer {
    font-size: 1rem;
    color: #AFC4E8; /* Text Secondary */
    display: block;
    padding-top: 5px;
}

/* Media Queries for responsiveness */
@media (min-width: 850px) {
    .page-fishing-games__hero-section {
        flex-direction: row;
        padding: 0;
        align-items: center;
        justify-content: space-between;
        background-color: #113B7A;
        min-height: 500px; /* Ensure hero section has a minimum height on desktop */
    }

    .page-fishing-games__hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin-bottom: 0;
        z-index: 1;
    }

    .page-fishing-games__hero-visual img {
        height: 100%;
        width: 100%;
        aspect-ratio: auto;
    }

    .page-fishing-games__hero-content {
        position: relative;
        z-index: 2;
        padding: 80px 15px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-fishing-games__game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container img,
    .page-fishing-games__game-tile img,
    .page-fishing-games__feature-card img,
    .page-fishing-games__image-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-fishing-games__game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 549px) {
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure content area image min-width/height is respected */
.page-fishing-games img:not(.page-fishing-games__hero-visual img) {
    min-width: 200px;
    min-height: 200px;
}