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

.page-fishing-games__hero-section {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5;
    object-fit: cover;
    margin-bottom: 20px;
}

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

.page-fishing-games__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2C14E;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-fishing-games__introduction-section {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 60px 0;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__intro-card {
    background-color: #111111;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease;
}

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

.page-fishing-games__intro-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD36B;
}

.page-fishing-games__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-fishing-games__popular-games-section {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 60px 0;
}

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

.page-fishing-games__game-card {
    background-color: #111111;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #FFF6D6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
}

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

.page-fishing-games__game-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 1px solid #3A2A12;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-title {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
    color: #FFD36B;
}

.page-fishing-games__view-all {
    text-align: center;
    margin-top: 30px;
}

.page-fishing-games__cta-banner {
    background-color: #111111;
    color: #FFF6D6;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #3A2A12;
}

.page-fishing-games__cta-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2C14E;
}

.page-fishing-games__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button--secondary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__hero-visual img {
        aspect-ratio: 16/6;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-visual img,
    .page-fishing-games__intro-card img,
    .page-fishing-games__game-card img {
        max-width: 100%;
        height: auto;
    }

    .page-fishing-games__hero-visual img {
        aspect-ratio: 16/7;
    }

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

    .page-fishing-games__description,
    .page-fishing-games__card-text,
    .page-fishing-games__section-description,
    .page-fishing-games__cta-description {
        font-size: 0.95em;
    }

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

    .page-fishing-games__intro-grid,
    .page-fishing-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-visual img {
        aspect-ratio: 16/9;
    }

    .page-fishing-games__hero-content {
        padding-bottom: 30px;
    }

    .page-fishing-games__main-title {
        margin-bottom: 15px;
    }

    .page-fishing-games__description {
        margin-bottom: 25px;
    }

    .page-fishing-games__intro-grid,
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__intro-card,
    .page-fishing-games__game-card {
        padding: 20px;
    }

    .page-fishing-games__intro-card img,
    .page-fishing-games__game-card img {
        min-width: unset;
        min-height: unset;
    }

    .page-fishing-games__section-title {
        margin-bottom: 30px;
    }

    .page-fishing-games__popular-games-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__cta-banner {
        padding: 40px 0;
    }
}

/* Ensure content area images do not display smaller than 200px */
.page-fishing-games img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}