.page-fishing-games {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: 'Roboto', sans-serif;
}

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

.page-fishing-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-fishing-games__hero-visual {
    width: 100%;
    max-height: 675px; /* Limit height for desktop */
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-fishing-games__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(13, 14, 18, 0.8) 0%, #0D0E12 100%);
    border-radius: 0 0 15px 15px;
    margin-top: -50px; /* Overlap slightly with image for visual flow */
    position: relative; /* Ensure it's above other content if needed */
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 4.5vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FFA53A 0%, #FF8C1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    max-width: 100%;
}

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

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-fishing-games__introduction-section,
.page-fishing-games__game-showcase-section,
.page-fishing-games__features-section,
.page-fishing-games__call-to-action-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #FFA53A 0%, #FF8C1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-fishing-games__section-title--glow {
    text-shadow: 0 0 10px #FFB04D;
}

.page-fishing-games__text-block {
    font-size: 1em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #FFF3E6;
}

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

.page-fishing-games__game-tile {
    background-color: #17191F;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #A84F0C;
}

.page-fishing-games__game-tile:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 140, 26, 0.3);
}

.page-fishing-games__game-tile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    min-height: 200px; /* Ensure images are not too small */
}

.page-fishing-games__action-area {
    margin-top: 50px;
}

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

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

.page-fishing-games__feature-card {
    background-color: #17191F;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #A84F0C;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.2);
}

.page-fishing-games__feature-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFA53A;
}

.page-fishing-games__feature-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF3E6;
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: #17191F;
    border: 1px solid #A84F0C;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
}

.page-fishing-games__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #FFA53A;
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF3E6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -30px;
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6em, 4vw, 2.5em);
    }
    .page-fishing-games__game-grid,
    .page-fishing-games__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 15px;
    }
    .page-fishing-games__hero-content {
        margin-top: 0;
        border-radius: 0;
    }
    .page-fishing-games__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-fishing-games__introduction-section,
    .page-fishing-games__game-showcase-section,
    .page-fishing-games__features-section,
    .page-fishing-games__call-to-action-section,
    .page-fishing-games__faq-section {
        padding: 40px 0;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 7vw, 2.5em);
    }
    .page-fishing-games__description {
        font-size: 1em;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-fishing-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Minimum 200px */
        gap: 15px;
    }
    .page-fishing-games__game-tile img,
    .page-fishing-games__feature-card img { /* Ensure content area images are responsive and min 200px */
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-fishing-games__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__feature-card {
        padding: 20px;
    }
    .page-fishing-games__faq-item {
        padding: 20px;
    }
    .page-fishing-games__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__hero-content {
        padding: 20px 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.2em, 8vw, 2em);
    }
    .page-fishing-games__description {
        font-size: 0.9em;
    }
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
    .page-fishing-games__game-tile img {
        width: 100%;
        height: auto;
        min-width: 200px; /* Still maintain minimum size */
        min-height: 200px;
    }
}