.page-fishing-games__hero-section {
    background-color: var(--background);
    padding-top: 10px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

.page-fishing-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--custom-color-1776249996415);
}

.page-fishing-games__description {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: var(--button);
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px var(--glow);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--glow);
}

.page-fishing-games__game-showcase-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__cta-section {
    background-color: var(--background);
    padding: 60px 20px;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--custom-color-1776249996415);
    margin-bottom: 40px;
}

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

.page-fishing-games__game-card {
    background-color: var(--card-b-g);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

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

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

.page-fishing-games__game-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 20px 10px;
}

.page-fishing-games__game-card-text {
    font-size: 1rem;
    color: var(--text-main);
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__game-card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 0;
    background: var(--button);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

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

.page-fishing-games__features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-fishing-games__feature-item {
    background-color: var(--card-b-g);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.page-fishing-games__step-card {
    background-color: var(--card-b-g);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-fishing-games__step-description {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__step-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button);
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

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

.page-fishing-games__cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFFFFF;
    border-radius: 0;
}

.page-fishing-games__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games__cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-fishing-games__cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #E0EFFF;
}

.page-fishing-games__cta-button--large {
    padding: 16px 35px;
    font-size: 1.2rem;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%); /* Using a contrasting color for main CTA */
    color: #1F2D3D;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

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

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

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

    .page-fishing-games__game-card-image {
        height: 200px;
    }

    .page-fishing-games__game-card-title {
        font-size: 1.3rem;
    }

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

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

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

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

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

    /* Ensure content area images are responsive and not smaller than 200px */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width if not 100% */
        min-height: 200px;
    }
    .page-fishing-games__game-card-image {
        min-width: unset;
        min-height: unset;
    }
}

/* Custom Colors */
.page-fishing-games {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-b-g: #FFFFFF;
    --background: #F4F7FB;
    --text-main: #1F2D3D;
    --custom-color-1776249996415: #000000;
    --border: #D6E2FF;
    --glow: #A5C4FF;
}