.page-fishing-games {
    background-color: #140C0C;
    color: #FFF1E8;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for content, relying on body for header offset */
}

.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;
    padding-bottom: 40px;
    background-color: #2A1212;
    border-bottom: 2px solid #6A1E1E;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure image wrapper can scale */
}

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

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

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

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-fishing-games__hero-cta,
.page-fishing-games__game-card-cta,
.page-fishing-games__view-all-cta,
.page-fishing-games__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-cta:hover,
.page-fishing-games__game-card-cta:hover,
.page-fishing-games__view-all-cta:hover,
.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F3C54D;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__introduction-section {
    padding: 60px 0;
}

.page-fishing-games__text-content {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #FFF1E8;
}

.page-fishing-games__game-showcase-section {
    padding: 60px 0;
    background-color: #2A1212;
    border-top: 2px solid #6A1E1E;
    border-bottom: 2px solid #6A1E1E;
}

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

.page-fishing-games__game-card {
    background-color: #140C0C;
    border: 1px solid #6A1E1E;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    border-bottom: 1px solid #6A1E1E;
}

.page-fishing-games__game-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F3C54D;
    margin-bottom: 10px;
    padding: 0 15px;
}

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

.page-fishing-games__view-all-games {
    text-align: center;
}

.page-fishing-games__features-section {
    padding: 60px 0;
}

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

.page-fishing-games__feature-item {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-icon {
    width: 200px; /* Minimum size requirement */
    height: 150px; /* Minimum size requirement */
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F3C54D;
    margin-bottom: 10px;
}

.page-fishing-games__feature-description {
    font-size: 0.95rem;
    color: #FFF1E8;
}

.page-fishing-games__cta-section {
    padding: 60px 0;
    background-color: #140C0C;
    border-top: 2px solid #6A1E1E;
}

.page-fishing-games__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

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

.page-fishing-games__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #F3C54D;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__cta-description {
    font-size: 1.1rem;
    color: #FFF1E8;
    margin-bottom: 30px;
}

.page-fishing-games__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

    .page-fishing-games__feature-icon,
    .page-fishing-games__game-card-image,
    .page-fishing-games__cta-image,
    .page-fishing-games__hero-image {
        max-width: 100%;
        height: auto;
    }

    .page-fishing-games__cta-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

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

@media (max-width: 480px) {
    .page-fishing-games__hero-cta,
    .page-fishing-games__game-card-cta,
    .page-fishing-games__view-all-cta,
    .page-fishing-games__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}