.page-fishing-games {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 40px;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-fishing-games__hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Flexible font size */
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__hero-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-fishing-games__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 16/9;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #2F6BFF;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.page-fishing-games__about-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__tips-section,
.page-fishing-games__promotions-section,
.page-fishing-games__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-fishing-games__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-fishing-games__content-wrapper img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1F2D3D;
    text-align: justify;
    max-width: 900px;
}

.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-card {
    display: block;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #1F2D3D;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for visual consistency */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-fishing-games__button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-fishing-games__button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-fishing-games__tip-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #D6E2FF;
}

.page-fishing-games__tip-title {
    font-size: 1.4rem;
    color: #2F6BFF;
    margin-bottom: 15px;
}

.page-fishing-games__tip-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-fishing-games__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-fishing-games__promo-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.page-fishing-games__promo-card img {
    width: 100%;
    height: 250px; /* Consistent height for promo images */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__promo-card h3 {
    font-size: 1.3rem;
    color: #2F6BFF;
    margin: 20px 15px 10px;
}

.page-fishing-games__promo-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-fishing-games__promo-card .page-fishing-games__button {
    margin-bottom: 20px;
    align-self: center;
}

.page-fishing-games__cta-section {
    background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
    color: #FFFFFF;
    margin-bottom: 25px;
}

.page-fishing-games__cta-section .page-fishing-games__paragraph {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FFD700; /* Gold-like color for emphasis */
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games__hero-section {
        flex-direction: column;
        padding: 10px 15px 30px;
    }

    .page-fishing-games__hero-visual img {
        aspect-ratio: 4/3; /* Adjust aspect ratio for mobile hero */
    }

    .page-fishing-games__about-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__cta-section {
        padding: 40px 15px;
    }

    .page-fishing-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min 200px width */
        gap: 20px;
    }

    .page-fishing-games__game-card img,
    .page-fishing-games__promo-card img,
    .page-fishing-games__content-wrapper img {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
        min-width: 200px; /* Enforce min size for content images */
        min-height: 200px;
    }

    .page-fishing-games__promo-list {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__tips-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__hero-title {
        margin-bottom: 10px;
    }

    .page-fishing-games__hero-description {
        margin-bottom: 20px;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__hero-section {
        padding: 10px 10px 20px;
    }
    .page-fishing-games__section-title {
        margin-bottom: 30px;
    }
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__game-card img {
        height: auto; /* Allow auto height for smaller screens */
    }
    .page-fishing-games__promo-card img {
        height: 200px; /* Slightly smaller height for promo images */
    }

    /* Ensure all content area images do not cause horizontal overflow */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    .page-fishing-games {
        overflow-x: hidden;
    }
}