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

.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.page-fishing-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 15px;
}

.page-fishing-games__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1em;
}

.page-fishing-games__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: 1px solid #2F6BFF;
}

.page-fishing-games__btn--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__btn--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF;
    border: 1px solid #2F6BFF;
}

.page-fishing-games__btn--secondary:hover {
    background-color: #F4F7FB;
    color: #2F6BFF;
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.1);
}

.page-fishing-games__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 60px auto 40px auto;
    max-width: 800px;
    line-height: 1.3;
}

.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__game-list-section,
.page-fishing-games__seo-text-section {
    max-width: 1390px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-fishing-games__feature-image,
.page-fishing-games__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, object-fit will handle aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games__feature-title,
.page-fishing-games__game-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.page-fishing-games__feature-text,
.page-fishing-games__game-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-fishing-games__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.page-fishing-games__step-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2F6BFF;
    color: #FFFFFF;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

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

.page-fishing-games__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games__btn--bottom-cta {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-fishing-games__seo-text-section p {
    line-height: 1.7;
    margin-bottom: 1.2em;
    font-size: 1em;
    color: #1F2D3D;
}

.page-fishing-games__seo-text-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2em;
}

.page-fishing-games__seo-text-section ul li {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-fishing-games__seo-text-section ul li strong {
    color: #2F6BFF;
    margin-right: 8px;
}

.page-fishing-games__sub-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-fishing-games__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games__main-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        margin-bottom: 30px;
        padding: 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Use clamp for H1 */
        margin-bottom: 10px;
    }
    .page-fishing-games__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-fishing-games__section-title {
        font-size: 1.6em;
        margin: 40px auto 30px auto;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__how-to-play-section {
        padding: 0 15px;
    }
    .page-fishing-games__steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__step-card {
        padding: 20px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__game-title {
        font-size: 1.3em;
    }
    .page-fishing-games__step-title {
        font-size: 1.2em;
    }
    .page-fishing-games__seo-text-section p,
    .page-fishing-games__seo-text-section ul li {
        font-size: 0.95em;
    }
    .page-fishing-games__seo-text-section ul li {
        padding: 12px 15px;
    }
    .page-fishing-games__sub-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    /* Mobile image constraint */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.6em, 6vw, 2em); /* Further clamp for very small screens */
    }
    .page-fishing-games__section-title {
        font-size: 1.4em;
    }
    .page-fishing-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-fishing-games__feature-image,
    .page-fishing-games__game-image {
        height: 180px;
    }
}