.page-fishing-games {
    padding: 10px 0 60px;
    color: #1F2D3D;
    background-color: #F4F7FB;
}

.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1390px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-fishing-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1F2D3D;
    max-width: 100%;
    letter-spacing: -0.02em;
}

.page-fishing-games__intro-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
}

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

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

.page-fishing-games__section-title {
    font-weight: 700;
    font-size: 2.2em;
    line-height: 1.3;
    color: #1F2D3D;
    text-align: center;
    margin: 60px auto 25px;
    max-width: 800px;
    padding: 0 20px;
}

.page-fishing-games__section-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: #1F2D3D;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 900px;
    padding: 0 20px;
}

.page-fishing-games__overview-section, 
.page-fishing-games__gameplay-section, 
.page-fishing-games__promotions-section, 
.page-fishing-games__faq-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.page-fishing-games__image-wrapper {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-fishing-games__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.page-fishing-games__feature-item::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

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

.page-fishing-games__step-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-fishing-games__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 15px;
}

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

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

.page-fishing-games__step-button:hover {
    background: #2F6BFF;
}

.page-fishing-games__cta-button--secondary {
    background: #6FA3FF;
    margin-top: 20px;
}

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

.page-fishing-games__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-fishing-games__faq-question {
    font-size: 1.15em;
    font-weight: 600;
    color: #1F2D3D;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 0;
}

.page-fishing-games__faq-answer a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 500;
}

.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__overview-section,
    .page-fishing-games__gameplay-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section {
        padding: 0 15px;
    }

    .page-fishing-games__main-title {
        font-size: 2.2em;
    }

    .page-fishing-games__intro-description {
        font-size: 1em;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-fishing-games__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

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

    .page-fishing-games__feature-item {
        padding: 15px;
        font-size: 0.95em;
    }

    .page-fishing-games__steps-container {
        gap: 20px;
    }

    .page-fishing-games__step-card {
        padding: 25px;
    }

    .page-fishing-games__step-title {
        font-size: 1.2em;
    }

    .page-fishing-games__step-text {
        font-size: 0.9em;
    }

    .page-fishing-games__step-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-fishing-games__faq-question {
        font-size: 1.05em;
    }

    .page-fishing-games__faq-answer {
        font-size: 0.95em;
    }

    /* Ensure images do not overflow on mobile */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-title {
        font-size: 1.6em;
    }
    .page-fishing-games__hero-section {
        margin-bottom: 30px;
    }
    .page-fishing-games__feature-item::before {
        font-size: 1em;
    }
}