.page-fishing-games {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main: #1F2D3D;
    --text-black: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    background-color: var(--background-color);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-fishing-games__hero-section {
    background-color: #0a0909; /* Using a dark background for the hero section as per 3WIN style, but respecting color contrast */
    padding: 10px 0 40px 0; /* Small top padding, larger bottom padding */
    text-align: center;
    color: var(--card-bg); /* White text on dark background */
}

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

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

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

.page-fishing-games__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--card-bg); /* White text */
}

.page-fishing-games__hero-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--card-bg);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games__hero-cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--text-black);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
}

.page-fishing-games__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-main);
    text-align: center;
}

.page-fishing-games__introduction-section, 
.page-fishing-games__features-section, 
.page-fishing-games__popular-games-section, 
.page-fishing-games__how-to-play-section, 
.page-fishing-games__why-choose-us-section {
    padding: 40px 0;
}

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

.page-fishing-games__feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px; /* Ensure images are not too small */
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games__feature-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    color: var(--text-main);
}

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

.page-fishing-games__game-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.page-fishing-games__game-title {
    font-size: 1.3em;
    color: var(--primary-color);
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: var(--text-main);
    padding: 0 20px 20px;
}

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

.page-fishing-games__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--card-bg);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

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

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto 0;
}

.page-fishing-games__step-item {
    background-color: var(--card-bg);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--primary-color);
}

.page-fishing-games__step-title {
    font-size: 1.3em;
    color: var(--text-black);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__step-description {
    font-size: 1em;
    color: var(--text-main);
}

.page-fishing-games__step-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

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

.page-fishing-games__reason-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-fishing-games__reason-item {
    background-color: var(--card-bg);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    color: var(--text-main);
    font-size: 1.05em;
    position: relative;
    padding-left: 40px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.page-fishing-games__reason-item::before {
    content: '✅';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

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

    .page-fishing-games__hero-section {
        padding: 10px 0 20px 0;
    }

    .page-fishing-games__hero-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
        min-width: 200px;
        min-height: 200px;
    }

    .page-fishing-games__hero-title {
        font-size: 2em;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
    }

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

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

    .page-fishing-games__feature-icon,
    .page-fishing-games__game-image {
        max-width: 100%;
        height: auto; /* Crucial for mobile image overflow */
        min-width: 200px;
        min-height: 200px;
    }

    .page-fishing-games__hero-cta-button,
    .page-fishing-games__cta-button,
    .page-fishing-games__cta-button--large {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .page-fishing-games__reason-item {
        padding-left: 35px;
        font-size: 1em;
    }

    .page-fishing-games__reason-item::before {
        left: 10px;
    }
}