body {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset); /* Ensure this is only on body */
}

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

.page-fishing-games__hero-section {
    position: relative;
    text-align: center;
    padding: 10px 0 40px;
    background-color: #08160F;
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2FFF6;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
    min-width: 200px;
    text-align: center;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__cta-button--centered {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    padding-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section-description {
    font-size: 1.1rem;
    color: #A7D9B8;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__about-section, .page-fishing-games__features-section, .page-fishing-games__popular-games-section, .page-fishing-games__how-to-play-section, .page-fishing-games__promotions-section, .page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green for sections */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-fishing-games__about-section .page-fishing-games__image,
.page-fishing-games__promotions-section .page-fishing-games__image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

.page-fishing-games__feature-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
}

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

.page-fishing-games__feature-icon {
    width: 150px; /* Min size 200px not for icons but for content images, this is decorative */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforcing minimum size for all images */
    min-height: 200px;
}

.page-fishing-games__feature-title {
    font-size: 1.5rem;
    color: #F2FFF6;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games__feature-text {
    color: #A7D9B8;
    font-size: 1rem;
}

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

.page-fishing-games__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D;
}

.page-fishing-games__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, will be responsive */
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-card .page-fishing-games__game-title {
    font-size: 1.4rem;
    color: #F2FFF6;
    padding: 15px 20px 5px;
    font-weight: 600;
}

.page-fishing-games__game-description {
    color: #A7D9B8;
    font-size: 0.95rem;
    padding: 0 20px 15px;
}

.page-fishing-games__game-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 0;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
}

.page-fishing-games__game-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-fishing-games__guide-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.page-fishing-games__guide-steps {
    flex: 2;
    min-width: 300px;
}

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

.page-fishing-games__step-number {
    background-color: #22C768; /* Accent color */
    color: #08160F;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    color: #F2FFF6;
    margin-bottom: 5px;
}

.page-fishing-games__step-text {
    color: #A7D9B8;
    font-size: 1rem;
}

.page-fishing-games__guide-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question {
    font-size: 1.25rem;
    color: #F2FFF6;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.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 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #A7D9B8;
    font-size: 1rem;
    padding: 0 20px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 0 20px 20px;
}

.page-fishing-games__faq-answer p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 10px 0 20px;
    }

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

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

    .page-fishing-games__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        padding-top: 20px;
    }

    .page-fishing-games__section-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-fishing-games__about-section, .page-fishing-games__features-section, .page-fishing-games__popular-games-section, .page-fishing-games__how-to-play-section, .page-fishing-games__promotions-section, .page-fishing-games__faq-section {
        padding: 30px 0;
    }

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

    .page-fishing-games__guide-content {
        flex-direction: column;
    }

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

    .page-fishing-games__image, .page-fishing-games__feature-icon, .page-fishing-games__game-image, .page-fishing-games__guide-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    /* Ensure all images within .page-fishing-games do not cause horizontal scroll */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 150px;
    }

    .page-fishing-games__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

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

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

    .page-fishing-games__faq-answer {
        padding: 0 15px 15px;
    }
}