.page-fishing-games {
    background-color: #B71C1C; /* Background */
    color: #FFF5E1; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #7A0E0E; /* Deep Red for contrast */
    text-align: center;
    overflow: hidden; /* Ensure no overflow from image */
}

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

.page-fishing-games__hero-image {
    display: block;
    width: 100%;
    height: auto; /* Responsive */
    max-width: 1200px; /* Example display size */
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-fishing-games__hero-content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F4D34D; /* Gold for title */
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF5E1; /* Text Main */
}

.page-fishing-games__highlight {
    color: #FFCC66; /* Glow */
    font-weight: bold;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red for button text for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    border: 2px solid #F2B544; /* Border */
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F4D34D; /* Gold */
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F2B544; /* Border */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-fishing-games__section-text {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Games Showcase */
.page-fishing-games__games-showcase {
    padding: 60px 0;
    background-color: #D32F2F; /* Card BG */
}

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

.page-fishing-games__game-card {
    background-color: #7A0E0E; /* Deep Red */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #E53935; /* Auxiliary color */
}

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

.page-fishing-games__game-image {
    width: 100%;
    min-height: 200px; /* Ensure minimum height */
    height: auto; /* Let it scale with width, maintaining aspect ratio or minimum height */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #E53935; /* Auxiliary color */
}

.page-fishing-games__game-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 15px 10px 10px;
    color: #FFCC66; /* Glow */
}

.page-fishing-games__game-description {
    font-size: 0.95rem;
    margin: 0 15px 20px;
    color: #FFF5E1; /* Text Main */
}

.page-fishing-games__game-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red */
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background 0.3s ease;
    border: 1px solid #F2B544; /* Border */
}

.page-fishing-games__game-button:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

/* Features Section */
.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;
}

.page-fishing-games__feature-item {
    background-color: #D32F2F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #E53935; /* Auxiliary color */
}

.page-fishing-games__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F4D34D; /* Gold */
}

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

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background-color: #7A0E0E; /* Deep Red */
}

.page-fishing-games__how-to-play-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__how-to-play-steps {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.page-fishing-games__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    min-width: 40px; /* Ensure it doesn't shrink */
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red */
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    border: 2px solid #F2B544; /* Border */
}

.page-fishing-games__step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #F4D34D; /* Gold */
}

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

.page-fishing-games__how-to-play-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-fishing-games__how-to-play-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Example display size */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #F2B544; /* Border */
}

/* CTA Section */
.page-fishing-games__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #D32F2F; /* Card BG */
}

.page-fishing-games__section-title--cta {
    margin-bottom: 20px;
}

.page-fishing-games__cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
}

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

.page-fishing-games__faq-item {
    background-color: #D32F2F; /* Card BG */
    border: 1px solid #E53935; /* Auxiliary color */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F4D34D; /* Gold */
    cursor: pointer; /* Indicate it's clickable for JS */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
    font-size: 1rem;
    color: #FFF5E1; /* Text Main */
    display: none; /* Hidden by default, shown by JS */
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__container {
        padding: 20px 30px;
    }
    .page-fishing-games__hero-image {
        max-width: 1000px;
        height: 563px; /* Example 16:9 for 1000px width */
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 20px;
    }

    /* Enforce min-size and responsiveness for all images in content area */
    .page-fishing-games img {
        min-width: 200px;
        min-height: 200px;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

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

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

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

    .page-fishing-games__how-to-play-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content {
        padding: 15px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-fishing-games__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}