.page-fishing-games {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-top: 10px; /* Small top padding for the first section */
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
}

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

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

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__main-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-fishing-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-fishing-games__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
}

.page-fishing-games__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

.page-fishing-games__button--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #E6F0FF;
}

/* General Section Titles */
.page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D;
    position: relative;
    padding-bottom: 15px;
}

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

/* About Section */
.page-fishing-games__about-section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

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

/* Features Section */
.page-fishing-games__features-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-fishing-games__feature-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;
    border-radius: 12px;
    box-shadow: 0 5px 20px 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;
}

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

.page-fishing-games__feature-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Example min size requirement check */
    min-width: 200px; /* Explicitly ensure min-size for content images */
    min-height: 200px;
    border-radius: 8px;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2F6BFF;
}

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

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

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

.page-fishing-games__step-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    padding: 30px;
    text-align: center;
    border: 1px solid #D6E2FF;
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 15px;
}

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

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

.page-fishing-games__button--large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-fishing-games__promo-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 5px 20px 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;
}

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

.page-fishing-games__promo-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Example min size requirement check */
    min-width: 200px; /* Explicitly ensure min-size for content images */
    min-height: 200px;
    border-radius: 8px;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__promo-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2F6BFF;
}

.page-fishing-games__promo-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 20px;
}

.page-fishing-games__button--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

.page-fishing-games__faq-list {
    margin-top: 30px;
}

.page-fishing-games__faq-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1F2D3D;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #F0F5FF;
}

.page-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question::after {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 0 25px 18px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

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

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

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

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

    .page-fishing-games__description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 20px;
    }

    .page-fishing-games__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__button {
        width: 100%;
        max-width: 280px;
    }

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

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

    /* Ensure images are responsive and not smaller than 200px */
    .page-fishing-games__hero-image,
    .page-fishing-games__feature-image,
    .page-fishing-games__promo-image {
        max-width: 100%; /* Important for mobile overflow */
        height: auto;
        min-width: 200px; /* Still maintain min size */
        min-height: 200px;
    }

    .page-fishing-games__text-content {
        text-align: left; /* Align left for better readability on small screens */
    }

    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95rem;
    }
}

/* Media query for very small screens if necessary, but 768px should cover most */
@media (max-width: 549px) {
    .page-fishing-games__button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .page-fishing-games__button--large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Ensure no image filter */
.page-fishing-games img {
    filter: none;
}