.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    text-align: center;
    max-width: 1390px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* For 1920x1080 images */
}

.page-fishing-games__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for H1, slightly larger for main title */
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFF1E8; /* Text Main */
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: #140C0C; /* Dark text for button for contrast */
}

.page-fishing-games__btn--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C;
}

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

.page-fishing-games__btn--secondary {
    background-color: #C61F1F; /* Primary color */
    color: #FFF1E8; /* Text Main */
    border: 2px solid #6A1E1E; /* Border color */
}

.page-fishing-games__btn--secondary:hover {
    background-color: #E53030; /* Auxiliary color */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-fishing-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #F3C54D; /* Gold */
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F3C54D; /* Gold */
    border-radius: 2px;
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 60px 15px;
    max-width: 1390px;
    margin: 0 auto;
}

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

.page-fishing-games__feature-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border color */
    transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-image {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 400px; /* Constrain display width for smaller cards */
    min-width: 200px; /* Minimum display width */
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3; /* For 800x600 images */
}

.page-fishing-games__feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #F3C54D; /* Gold */
}

.page-fishing-games__feature-description {
    font-size: 1rem;
    color: #FFF1E8; /* Text Main */
}

/* How To Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 15px;
    max-width: 1390px;
    margin: 0 auto;
}

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

.page-fishing-games__step-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border color */
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-fishing-games__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F3C54D; /* Gold */
    color: #140C0C; /* Dark text for contrast */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    border: 3px solid #D86A14; /* Button dark part for contrast */
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #F3C54D; /* Gold */
}

.page-fishing-games__step-description {
    font-size: 1rem;
    color: #FFF1E8; /* Text Main */
}

.page-fishing-games__cta-bottom {
    text-align: center;
    margin-top: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-fishing-games__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-fishing-games__faq-item {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #6A1E1E; /* Border color */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item:hover {
    background-color: #7E0D0D; /* Deep Red */
}

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #F3C54D; /* Gold */
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games__faq-answer {
    font-size: 1rem;
    color: #FFF1E8; /* Text Main */
    display: none; /* Hidden by default, toggled by JS */
    margin-top: 10px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    display: block;
}

.page-fishing-games__faq-answer a {
    color: #FFB04A; /* Gold-like for links */
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: #D86A14; /* Darker Gold-like for links */
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    .page-fishing-games__hero-image {
        aspect-ratio: 16/10; /* Slightly taller on smaller screens */
    }
    .page-fishing-games__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-fishing-games__steps-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-bottom: 30px;
    }
    .page-fishing-games__hero-description {
        font-size: 1rem;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__faq-section {
        padding: 40px 15px;
    }

    /* Mobile overflow prevention */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are not too small */
    .page-fishing-games__feature-image,
    .page-fishing-games__hero-image {
        min-width: 200px; /* Enforce min-width for content images */
        width: 100%; /* Ensure responsiveness */
        height: auto;
    }

    /* All images within .page-fishing-games, regardless of selector */
    .page-fishing-games :is(img, picture) {
        max-width: 100%;
        height: auto;
        display: block; /* Ensure block-level behavior for layout */
    }
}

@media (max-width: 549px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.3rem, 7vw, 2rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-container {
        grid-template-columns: 1fr; /* Single column layout */
    }
    .page-fishing-games__feature-image {
        max-width: 100%; /* Allow full width in single column */
    }
    .page-fishing-games__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        top: -22px;
    }
    .page-fishing-games__step-card {
        padding-top: 50px;
    }
}