.page-fishing-games {
    background-color: var(--background-color, #F4F7FB);
    color: var(--text-main-color, #1F2D3D);
    padding-top: 10px; /* Small top padding for the first section */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    text-align: center;
    padding: 40px 0;
    background-color: var(--card-bg-color, #FFFFFF); /* Using Card BG for hero section background */
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--custom-color-1776249996415, #000000); /* Black text for H1 */
}

.page-fishing-games__description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-main-color, #1F2D3D);
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3); /* Glow effect */
}

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

/* General Sections */
.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__promo-section,
.page-fishing-games__cta-bottom-section {
    padding: 60px 0;
    margin-bottom: 30px;
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 8px;
}

.page-fishing-games__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--custom-color-1776249996415, #000000);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-fishing-games__text-content {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-main-color, #1F2D3D);
}

.page-fishing-games__image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.page-fishing-games__content-image {
    width: 100%;
    max-width: 500px; /* Ensure images are not too small */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__secondary-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--main-color, #2F6BFF);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.page-fishing-games__secondary-cta-button:hover {
    background-color: var(--aux-color, #6FA3FF);
    transform: translateY(-2px);
}

/* Features Section */
.page-fishing-games__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-fishing-games__feature-item {
    background-color: var(--background-color, #F4F7FB); /* Using light background for feature cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #D6E2FF);
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--custom-color-1776249996415, #000000);
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main-color, #1F2D3D);
}

.page-fishing-games__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

.page-fishing-games__note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 15px;
    }

    .page-fishing-games__hero-section {
        padding: 30px 0;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 15px;
    }

    .page-fishing-games__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-fishing-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-fishing-games__text-content {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-fishing-games__image-grid {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__content-image {
        max-width: 100%;
        width: 100%; /* Ensure content images are not smaller than 200px and take full width on mobile */
        height: auto;
    }

    /* Enforce min-width for all images in content area */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure content images are not smaller than 200px */
        min-height: 200px; /* Ensure content images are not smaller than 200px */
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

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

    .page-fishing-games__section-title {
        font-size: 1.6rem;
    }

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