.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--text-main, #1F2D3D);
    background-color: var(--background, #F4F7FB);
    padding-top: 10px; /* Small top padding for non-index page */
}

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

.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--main-color, #2F6BFF);
    color: #FFFFFF;
    padding-bottom: 40px;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* Using clamp for responsive font size, avoiding fixed large values */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-fishing-games__description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0;
}

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

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

.page-fishing-games__game-showcase-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: var(--card-bg, #FFFFFF);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: bold;
    color: var(--text-main, #1F2D3D);
    text-align: center;
    margin-bottom: 20px;
}

.page-fishing-games__section-description {
    font-size: 1rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

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

.page-fishing-games__game-card,
.page-fishing-games__feature-item {
    background-color: var(--card-bg, #FFFFFF);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__game-card-image,
.page-fishing-games__feature-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-card-title,
.page-fishing-games__feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-main, #1F2D3D);
    margin: 20px 15px 10px 15px;
}

.page-fishing-games__game-card-text,
.page-fishing-games__feature-text {
    font-size: 0.95rem;
    color: #666;
    padding: 0 15px 20px 15px;
    line-height: 1.5;
}

.page-fishing-games__game-card-button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.page-fishing-games__game-card-button:hover {
    opacity: 0.9;
}

.page-fishing-games__how-to-play-section {
    background-color: var(--background, #F4F7FB);
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-fishing-games__step-item {
    background-color: var(--card-bg, #FFFFFF);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-fishing-games__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color, #2F6BFF);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-color, #2F6BFF);
    border-radius: 50%;
}

.page-fishing-games__step-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-main, #1F2D3D);
    margin-top: 0;
    margin-bottom: 10px;
}

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

.page-fishing-games__step-text a {
    color: var(--main-color, #2F6BFF);
    text-decoration: none;
    font-weight: bold;
}

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

.page-fishing-games__faq-section {
    background-color: var(--card-bg, #FFFFFF);
}

.page-fishing-games__faq-item {
    border-bottom: 1px solid var(--border, #D6E2FF);
    padding: 20px 0;
}

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

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main, #1F2D3D);
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.page-fishing-games__cta-banner {
    background: linear-gradient(135deg, var(--main-color, #2F6BFF) 0%, var(--secondary-color, #6FA3FF) 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-fishing-games__cta-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-fishing-games__cta-description {
    font-size: 1.125rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E0E0E0;
}

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

/* Ensure images within content areas are not smaller than 200px */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__game-card img,
.page-fishing-games__feature-image img {
    min-width: 200px;
    min-height: 200px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-bottom: 30px;
    }

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

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

    .page-fishing-games__game-grid,
    .page-fishing-games__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__game-card-image,
    .page-fishing-games__feature-image {
        height: 200px; /* Adjust height for smaller screens if needed */
    }

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

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

    .page-fishing-games__steps-list {
        gap: 20px;
    }

    .page-fishing-games__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-fishing-games__step-item::before {
        margin-bottom: 10px;
    }

    .page-fishing-games__cta-banner {
        padding: 60px 20px;
    }

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

    /* Enforce max-width: 100%; height: auto; for all images in content area */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}