.page-fishing-games {
    background-color: #F4F7FB; /* Background color from palette */
    color: #1F2D3D; /* Main text color from palette */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some bottom padding */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding to respect body padding-top */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Blue gradient background for hero */
    color: #FFFFFF;
    position: relative;
    overflow: hidden; /* Ensure no image overflow */
}

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

.page-fishing-games__hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

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

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

.page-fishing-games__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-fishing-games__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color from palette */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-fishing-games__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.page-fishing-games__intro-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section {
    padding: 40px 0;
}

.page-fishing-games__text-content {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__text-content--note {
    font-style: italic;
    color: #2F6BFF; /* Changed to primary color for better contrast */
    text-align: center;
}

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

.page-fishing-games__feature-card {
    background-color: #FFFFFF; /* Card BG from palette */\    border-radius: 12px;
    box-shadow: 0 4px 12px 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; /* Border color from palette */
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, adjust as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
}

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

.page-fishing-games__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games__secondary-cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color from palette */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__secondary-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* How-To-Play Section */
.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__list-item {
    background-color: #FFFFFF; /* Card BG from palette */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2F6BFF; /* Primary color accent */
}

.page-fishing-games__list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 10px;
}

.page-fishing-games__list-description {
    font-size: 1rem;
    color: #1F2D3D;
}

/* FAQ Section */
.page-fishing-games__faq-item {
    background-color: #FFFFFF; /* Card BG from palette */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color from palette */
}

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

.page-fishing-games__faq-answer {
    font-size: 1rem;
    color: #1F2D3D;
}

.page-fishing-games__faq-answer a {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .page-fishing-games__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-bottom: 30px;
    }

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

    .page-fishing-games__hero-image {
        max-width: 100%;
        height: auto;
    }

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

    .page-fishing-games__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-fishing-games__cta-button {
        padding: 12px 25px;
    }

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

    .page-fishing-games__intro-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__faq-section {
        padding: 30px 0;
    }

    .page-fishing-games__features-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-fishing-games__feature-card {
        padding: 20px;
    }

    .page-fishing-games__feature-image {
        height: auto; /* Allow auto height for mobile images */
        max-width: 100%; /* Ensure content images don't overflow */
        min-width: 200px;
        min-height: 200px;
    }
    
    /* Ensure all content area images are responsive and not too small */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    
    /* Specific override for feature images to ensure minimum size and responsive */
    .page-fishing-games__feature-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-fishing-games__feature-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__list-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .page-fishing-games__list-title {
        font-size: 1.1rem;
    }

    .page-fishing-games__faq-item {
        padding: 15px;
        margin-bottom: 10px;
    }

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