.page-fishing-games {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: sans-serif; /* Roboto-like */
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

/* Hero Section */
.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding as per rules */
    display: flex;
    flex-direction: column; /* Image above, text below */
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__hero-content {
    max-width: 800px;
}

.page-fishing-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #FFF1E8; /* Main text color for contrast */
    margin-bottom: 20px;
    /* No fixed font-size, rely on clamp if absolutely needed, otherwise responsive design */
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 241, 232, 0.8);
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C; /* Dark text for gradient button */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    min-height: 44px; /* Touch target */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__cta-button--bottom {
    margin-top: 40px;
}

/* Section Titles & Descriptions */
.page-fishing-games__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #FFF1E8;
    background: linear-gradient(90deg, #F3C54D, #FFB04A); /* Gold gradient for titles */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-top: 20px;
}

.page-fishing-games__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 241, 232, 0.7);
    padding-left: 15px;
    padding-right: 15px;
}

/* Featured Games Section */
.page-fishing-games__featured-games-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

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

.page-fishing-games__game-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block; /* Make the whole card clickable */
    text-decoration: none;
    border: 1px solid #6A1E1E; /* Border color */
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency in grid, object-fit will handle aspect ratio */
    object-fit: cover;
    display: block;
    min-height: 200px; /* Enforce min size */
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-fishing-games__why-choose-content {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    text-align: left;
}

.page-fishing-games__why-choose-content .page-fishing-games__section-title,
.page-fishing-games__why-choose-content .page-fishing-games__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__feature-item {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #6A1E1E; /* Border color */
}

.page-fishing-games__feature-icon {
    font-size: 2rem;
    line-height: 1;
    color: #F3C54D; /* Gold */
}

.page-fishing-games__feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
    color: #FFF1E8;
}

.page-fishing-games__feature-text {
    font-size: 1rem;
    color: rgba(255, 241, 232, 0.7);
}

.page-fishing-games__why-choose-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid #6A1E1E; /* Border color */
}

.page-fishing-games__why-choose-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

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

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

.page-fishing-games__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__step-text {
    font-size: 1rem;
    color: rgba(255, 241, 232, 0.7);
}

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

.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #6A1E1E; /* Border color */
    overflow: hidden;
}

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    color: #FFF1E8;
    position: relative;
    padding-right: 50px; /* Space for toggle icon */
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px; /* Touch target */
}

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

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

.page-fishing-games__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: rgba(255, 241, 232, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-fishing-games__faq-answer p {
    margin: 0;
    padding-top: 10px;
}

.page-fishing-games__faq-item.is-open .page-fishing-games__faq-answer {
    max-height: 200px; /* Adjust based on content, or use JS to calculate */
}


/* Responsive Design */
@media (max-width: 849px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem); /* Clamp for H1 */
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .page-fishing-games__hero-section {
        padding-top: 10px;
    }

    .page-fishing-games__why-choose-section {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__why-choose-content .page-fishing-games__section-title,
    .page-fishing-games__why-choose-content .page-fishing-games__section-description {
        text-align: center;
    }

    .page-fishing-games__feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-fishing-games__cta-button {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .page-fishing-games__step-card {
        padding-top: 45px;
    }

    .page-fishing-games__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: -20px;
    }

    .page-fishing-games__hero-description,
    .page-fishing-games__section-description,
    .page-fishing-games__feature-text,
    .page-fishing-games__step-text,
    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
    }

    .page-fishing-games__game-image {
        height: auto; /* Let height be auto to maintain aspect ratio with max-width: 100% */
        min-height: 200px; /* Ensure it still meets the minimum height requirement */
    }
}

/* Ensure all images within .page-fishing-games are responsive and meet minimum size */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Specific rule to prevent shrinking below 200px for content images */
.page-fishing-games img:not(.shared-header__logo-image):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    min-width: 200px;
    min-height: 200px;
}