.page-fishing-games {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    text-align: center;
    padding: 0 0 40px 0;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Main/Accent blend */
    border-radius: 0 0 15px 15px;
    overflow: hidden; /* Ensure image doesn't overflow rounded corners */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

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

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

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

.page-fishing-games__description {
    color: #E0EFFF; /* Lighter text for hero */
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.page-fishing-games__btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.page-fishing-games__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__btn--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__btn--secondary {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #E0EFFF;
}

.page-fishing-games__btn--text {
    color: #2F6BFF; /* Main color for text links */
    text-decoration: underline;
    background: none;
    padding: 0;
}

.page-fishing-games__btn--text:hover {
    color: #6FA3FF; /* Accent color on hover */
}

.page-fishing-games__btn--large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Section Titles */
.page-fishing-games__section-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

/* About Section */
.page-fishing-games__about-section {
    padding: 50px 0;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 15px;
    margin: 40px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

/* Features Section */
.page-fishing-games__features-section {
    padding: 50px 0;
}

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

.page-fishing-games__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__feature-title {
    color: #2F6BFF; /* Main color */
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    color: #1F2D3D; /* Text Main */
    font-size: 1rem;
}

/* Gameplay Section */
.page-fishing-games__gameplay-section {
    padding: 50px 0;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 15px;
    margin: 40px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__gameplay-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-fishing-games__gameplay-steps {
    flex: 1;
    min-width: 300px; /* Ensure steps don't get too narrow */
}

.page-fishing-games__gameplay-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-fishing-games__gameplay-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Max width for gameplay image */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.page-fishing-games__step-number {
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.page-fishing-games__step-title {
    color: #2F6BFF; /* Main color */
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-fishing-games__step-description {
    color: #1F2D3D; /* Text Main */
    font-size: 1rem;
}

/* Gallery Section */
.page-fishing-games__gallery-section {
    padding: 50px 0;
}

.page-fishing-games__gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-fishing-games__gallery-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__gallery-image {
    width: 100%;
    height: 250px; /* Fixed height for gallery items */
    object-fit: cover;
    display: block;
}

/* CTA Section */
.page-fishing-games__cta-section {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Main/Accent blend */
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__cta-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-fishing-games__cta-description {
    color: #E0EFFF;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 50px 0;
}

.page-fishing-games__faq-list {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.page-fishing-games__faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #D6E2FF; /* Border color */
}

.page-fishing-games__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-fishing-games__faq-question {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-fishing-games__faq-answer {
    color: #1F2D3D; /* Text Main */
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 0; /* No extra padding for answer */
}

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

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

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

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

    .page-fishing-games__gameplay-layout {
        flex-direction: column;
    }

    .page-fishing-games__gameplay-steps,
    .page-fishing-games__gameplay-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__btn--large {
        width: 100%;
        max-width: 300px; /* Constrain large button width on mobile */
    }

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

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

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

    .page-fishing-games__features-grid,
    .page-fishing-games__gallery-grid {
        grid-template-columns: 1fr;
    }

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

    /* Content area images CSS size lower bound */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }

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

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

    .page-fishing-games__faq-question {
        font-size: 1.2rem;
    }
    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
    }

    /* Content area images CSS size lower bound */
    .page-fishing-games img:not(.shared-header__logo, .shared-footer__payment-icon, .shared-footer__social-icon) {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-actions {
        flex-direction: column;
    }
    .page-fishing-games__btn {
        width: 100%;
    }
    .page-fishing-games__hero-content {
        padding: 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-fishing-games__section-title {
        font-size: 1.6rem;
    }
    .page-fishing-games__cta-title {
        font-size: 1.8rem;
    }
}