.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-bottom: 40px;
}

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

.page-fishing-games__hero-section {
    position: relative;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding-top: 10px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-fishing-games__hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    filter: none !important;
}

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

.page-fishing-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-fishing-games__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    min-width: 150px;
}

.page-fishing-games__btn--primary {
    background-color: #EA7C07;
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-fishing-games__btn--primary:hover {
    background-color: #d16e06;
    transform: translateY(-2px);
}

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

.page-fishing-games__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #26A9E0;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #EA7C07;
    border-radius: 2px;
}

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

.page-fishing-games__feature-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
    min-height: 400px;
}

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

.page-fishing-games__feature-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    filter: none !important;
}

.page-fishing-games__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    padding: 0 15px;
}

.page-fishing-games__guide-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 600px;
}

.page-fishing-games__step-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 60px;
}

.page-fishing-games__step-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.page-fishing-games__step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 8px;
}

.page-fishing-games__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
}

.page-fishing-games__guide-image {
    max-width: 500px;
    width: 100%;
}

.page-fishing-games__guide-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    filter: none !important;
}

.page-fishing-games__cta-section {
    background-color: #26A9E0;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
}

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

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

.page-fishing-games__cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-fishing-games__faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-fishing-games__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
}

@media (min-width: 769px) {
    .page-fishing-games__guide-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .page-fishing-games__guide-steps {
        flex: 1;
        max-width: 50%;
    }

    .page-fishing-games__guide-image {
        flex: 1;
        max-width: 45%;
    }

    .page-fishing-games__hero-section {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-fishing-games__btn {
        width: 100%;
        max-width: 250px;
    }

    .page-fishing-games__section-spacing {
        padding: 30px 15px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-fishing-games__hero-description {
        font-size: 1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .page-fishing-games__features-card img,
    .page-fishing-games__guide-image img,
    .page-fishing-games__hero-image-wrapper img {
        max-width: 100%;
        height: auto;
    }

    .page-fishing-games img {
        min-width: 200px;
        min-height: 200px;
        width: 100%;
        height: auto;
    }
    .page-fishing-games__feature-card img {
        width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-fishing-games__guide-image img {
        width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-fishing-games__hero-image-wrapper img {
        width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__features-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__hero-actions {
        gap: 10px;
    }
}

.page-fishing-games img {
    filter: none !important;
}