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

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

.page-fishing-games__hero-section {
    background-color: #F4F7FB;
    padding-bottom: 40px;
    padding-top: 10px; /* Small top padding as per instruction */
    text-align: center;
}

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

.page-fishing-games__hero-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

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

.page-fishing-games__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Using clamp as per instruction */
    color: #1F2D3D;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__intro-text {
    font-size: 1.1em;
    color: #1F2D3D;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__cta-button--secondary {
    background: #6FA3FF;
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.4);
}

.page-fishing-games__cta-button--secondary:hover {
    background: #2F6BFF;
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.6);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
}

.page-fishing-games__about-section .page-fishing-games__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__about-section .page-fishing-games__text-content {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__about-section .page-fishing-games__image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-fishing-games__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.page-fishing-games__feature-icon {
    font-size: 2em;
    margin-right: 15px;
    color: #2F6BFF; /* Using primary color for icons */
    line-height: 1;
}

.page-fishing-games__feature-heading {
    font-size: 1.3em;
    color: #1F2D3D;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-fishing-games__feature-item p {
    font-size: 0.95em;
    color: #1F2D3D;
}

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

.page-fishing-games__game-card,
.page-fishing-games__step-card,
.page-fishing-games__why-choose-item {
    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;
    border: 1px solid #D6E2FF;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__step-card:hover,
.page-fishing-games__why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games__game-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-fishing-games__game-card-title {
    font-size: 1.4em;
    color: #1F2D3D;
    margin-bottom: 10px;
}

.page-fishing-games__game-card-description {
    font-size: 0.95em;
    color: #1F2D3D;
    margin-bottom: 20px;
}

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

.page-fishing-games__game-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__cta-more,
.page-fishing-games__cta-play {
    text-align: center;
    margin-top: 40px;
}

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

.page-fishing-games__step-number {
    display: inline-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: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__step-title {
    font-size: 1.3em;
    color: #1F2D3D;
    margin-bottom: 10px;
}

.page-fishing-games__step-description {
    font-size: 0.95em;
    color: #1F2D3D;
}

.page-fishing-games__step-description a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__step-description a:hover {
    text-decoration: underline;
}

.page-fishing-games__why-choose-icon {
    font-size: 2.5em;
    color: #2F6BFF;
    margin-bottom: 15px;
}

.page-fishing-games__why-choose-heading {
    font-size: 1.3em;
    color: #1F2D3D;
    margin-bottom: 10px;
}

.page-fishing-games__why-choose-description {
    font-size: 0.95em;
    color: #1F2D3D;
}

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

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

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

    .page-fishing-games__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-fishing-games__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-fishing-games__about-section .page-fishing-games__content-wrapper {
        flex-direction: column;
    }

    .page-fishing-games__feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-fishing-games__feature-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .page-fishing-games__game-card,
    .page-fishing-games__step-card,
    .page-fishing-games__why-choose-item {
        padding: 20px;
    }

    .page-fishing-games__games-grid,
    .page-fishing-games__steps-grid,
n    .page-fishing-games__why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}