.page-fishing-games {
    background-color: #F4F7FB; /* Default page background from custom colors */
    color: #1F2D3D; /* Text Main color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-fishing-games__container {
    max-width: 1280px; /* Aligned with 3WIN style boxed feeling */
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Spacing below content */
    background: #0a0909; /* Deep red/wine red suggested by 3WIN style, but dark for contrast */
    color: #FFFFFF;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%; /* Ensure responsiveness */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

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

.page-fishing-games__main-title {
    font-size: 2.8em; /* Adjusted for larger screens */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 100%; /* Ensure it doesn't overflow */
}

.page-fishing-games__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #D6E2FF; /* Border color for lighter text */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    min-width: 120px;
    text-align: center;
}

.page-fishing-games__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-fishing-games__btn--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-fishing-games__btn--secondary {
    background-color: transparent;
    color: #6FA3FF; /* Auxiliary color */
    border: 2px solid #6FA3FF;
}

.page-fishing-games__btn--secondary:hover {
    background-color: rgba(111, 163, 255, 0.1);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-fishing-games__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-fishing-games__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Section Titles & Descriptions */
.page-fishing-games__section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
    padding-top: 40px;
}

.page-fishing-games__section-description {
    font-size: 1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #1F2D3D; /* Text Main */
}

/* About Section */
.page-fishing-games__about-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

.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-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__feature-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2D3D; /* Changed to Text Main for better contrast on white card BG */
}

.page-fishing-games__feature-text {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
}

/* Game Showcase Section */
.page-fishing-games__game-showcase-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

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

.page-fishing-games__game-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.page-fishing-games__game-card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #1F2D3D; /* Changed to Text Main for better contrast on white card BG */
    padding: 15px 20px 10px;
}

.page-fishing-games__game-card-text {
    font-size: 0.9em;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px 15px;
    flex-grow: 1; /* Ensures text takes available space */
}

.page-fishing-games__game-card .page-fishing-games__btn {
    margin: 0 20px 20px;
}

/* CTA Section */
.page-fishing-games__cta-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
    text-align: center;
}

.page-fishing-games__cta-section .page-fishing-games__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-fishing-games__cta-content .page-fishing-games__section-title {
    padding-top: 0;
    margin-bottom: 15px;
}

.page-fishing-games__cta-content .page-fishing-games__section-description {
    margin-bottom: 30px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 2.5em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        padding-top: 8px; /* Slightly less padding for mobile */
    }
    .page-fishing-games__hero-content {
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: 2em; /* Smaller H1 for mobile */
    }
    .page-fishing-games__description {
        font-size: 1em;
    }
    .page-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn {
        width: 100%;
        max-width: 300px; /* Limit button width */
        margin: 0 auto;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-description {
        font-size: 0.95em;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-cards-grid {
        grid-template-columns: 1fr; /* Single column for grids */
    }
    .page-fishing-games__game-card-image,
    .page-fishing-games__cta-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size for content images */
        min-height: 200px; /* Enforce min size for content images */
    }
    /* Enforce min-size for all images within .page-fishing-games for mobile */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-title {
        font-size: 1.6em;
    }
    .page-fishing-games__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}