.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

.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-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #2F6BFF; /* Primary color as background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    width: 100%; /* Ensure content block takes full width within max-width */
}

.page-fishing-games__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 100%; /* Constraint for clamp if used */
}

.page-fishing-games__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #FFFFFF;
}

.page-fishing-games__hero-buttons,
.page-fishing-games__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-fishing-games__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
}

.page-fishing-games__button--primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-fishing-games__button--secondary {
    background-color: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    border: 1px solid #6FA3FF;
}

.page-fishing-games__button--secondary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-fishing-games__overview-section,
.page-fishing-games__features-section,
.page-fishing-games__cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: 2.2em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 40px;
    font-weight: bold;
}

.page-fishing-games__text-content {
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #1F2D3D;
}

.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: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #D6E2FF; /* Border */
}

.page-fishing-games__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency in cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px;
}

.page-fishing-games__feature-title {
    font-size: 1.4em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-fishing-games__cta-section {
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    padding: 80px 0;
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
    color: #FFFFFF;
}

.page-fishing-games__cta-section .page-fishing-games__text-content {
    color: #FFFFFF;
    margin-bottom: 40px;
}

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

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

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

    .page-fishing-games__hero-buttons,
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-fishing-games__button {
        width: 100%;
        padding: 10px 20px;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games__overview-section,
    .page-fishing-games__features-section,
    .page-fishing-games__cta-section {
        padding: 40px 0;
    }

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

    /* Ensure content images are responsive and don't overflow */
    .page-fishing-games__overview-section img,
    .page-fishing-games__features-section img,
    .page-fishing-games__cta-section img,
    .page-fishing-games__hero-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: 1.7em;
    }

    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
}