.page-fishing-games {
    background-color: #F4F7FB;
    color: #1F2D3D;
    padding-top: 10px; /* Small top padding to avoid header overlap, body handles main offset */
}

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

.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden; /* Ensure image corners are contained if rounded */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

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

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

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

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

.page-fishing-games__hero-button,
.page-fishing-games__cta-button,
.page-fishing-games__step-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-fishing-games__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.page-fishing-games__text-content {
    font-size: 1.05em;
    line-height: 1.7;
    color: #1F2D3D;
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__image-inline {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure min width for content images */
    min-height: 200px; /* Ensure min height for content images */
}

.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-fishing-games__feature-item {
    background-color: #F4F7FB;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.page-fishing-games__feature-heading {
    font-size: 1.4em;
    color: #2F6BFF;
    margin-bottom: 10px;
}

.page-fishing-games__feature-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #1F2D3D;
}

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

.page-fishing-games__step-card {
    background-color: #F4F7FB;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__step-title {
    font-size: 1.5em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

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

.page-fishing-games__faq-item {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-fishing-games__faq-question {
    font-size: 1.25em;
    color: #2F6BFF;
    margin-bottom: 10px;
}

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

.page-fishing-games__cta-section {
    text-align: center;
    padding: 50px 20px;
}

.page-fishing-games__cta-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
}

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

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

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

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

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

    .page-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games__image-inline {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
    }

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

    .page-fishing-games__cta-title {
        font-size: 2em;
    }

    /* Crucial for preventing horizontal scroll */
    .page-fishing-games img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-description {
        font-size: 1em;
    }

    .page-fishing-games__hero-button,
    .page-fishing-games__cta-button,
    .page-fishing-games__step-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

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

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

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

    .page-fishing-games__cta-title {
        font-size: 1.8em;
    }
}