.page-fishing-games {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
}

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

.page-fishing-games__hero-section {
    background-color: #F4F7FB; /* Use background color, not image */
    padding: 0;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    text-align: center;
    gap: 20px;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 20px;
    background-color: #FFFFFF; /* Card background for content */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -80px; /* Overlap slightly with image for visual interest, but no text on image */
    position: relative;
    z-index: 10;
}

.page-fishing-games__main-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-fishing-games__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

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

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

.page-fishing-games__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-fishing-games__text-content {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
    text-align: justify;
}

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

.page-fishing-games__features-section,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section,
.page-fishing-games__introduction-section,
.page-fishing-games__cta-section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

.page-fishing-games__features-section .page-fishing-games__container,
.page-fishing-games__tips-section .page-fishing-games__container,
.page-fishing-games__faq-section .page-fishing-games__container,
.page-fishing-games__cta-section .page-fishing-games__container {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.page-fishing-games__feature-item,
.page-fishing-games__tip-item {
    background-color: #FFFFFF; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover,
.page-fishing-games__tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.1);
}

.page-fishing-games__feature-title,
.page-fishing-games__tip-title,
.page-fishing-games__faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

.page-fishing-games__feature-description,
.page-fishing-games__tip-description,
.page-fishing-games__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

.page-fishing-games__faq-item {
    background-color: #F4F7FB; /* Background color for FAQ item */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #D6E2FF; /* Border color */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item:hover {
    background-color: #e8ecf3;
}

.page-fishing-games__faq-question {
    margin-bottom: 0;
    position: relative;
    padding-right: 30px;
}

.page-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2F6BFF;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games__faq-answer {
    display: none;
    padding-top: 15px;
    border-top: 1px solid #D6E2FF;
    margin-top: 15px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 15px;
    }

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

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

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

    .page-fishing-games__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-fishing-games__text-content {
        font-size: 0.95rem;
    }

    .page-fishing-games__features-section .page-fishing-games__container,
    .page-fishing-games__tips-section .page-fishing-games__container,
    .page-fishing-games__faq-section .page-fishing-games__container,
    .page-fishing-games__cta-section .page-fishing-games__container {
        padding: 25px;
    }

    .page-fishing-games__feature-list,
    .page-fishing-games__tip-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__faq-question {
        font-size: 1.2rem;
    }

    /* CRITICAL: Mobile image overflow fix and minimum size */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure content images are not smaller than 200px */
        min-height: 200px;
    }
}