.page-fishing-games {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: sans-serif; /* Placeholder for Roboto-like font */
    line-height: 1.6;
}

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

.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column; /* Stacks image above content */
    align-items: center;
    text-align: center;
    background-color: #100224; /* Background for the entire hero section */
    padding-bottom: 40px; /* Add some padding below content */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
}

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

.page-fishing-games__hero-content {
    padding: 20px;
    max-width: 800px;
    z-index: 1;
    position: relative;
    padding-top: 30px; /* Add space between image and text */
}

.page-fishing-games__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(to right, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

.page-fishing-games__tagline {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 211, 107, 0.4);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 60px 0 30px;
    background: linear-gradient(to right, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

.page-fishing-games__section-description {
    text-align: center;
    font-size: 1.05rem;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #FFF6D6;
}

.page-fishing-games__intro-section,
.page-fishing-games__benefits-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    padding: 40px 0;
}

.page-fishing-games__games-showcase {
    padding: 40px 0;
    background-color: #111111; /* Card BG */
}

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

.page-fishing-games__game-tile {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12; /* Border color */
}

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

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

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

.page-fishing-games__benefit-card {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #3A2A12; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 211, 107, 0.2);
}

.page-fishing-games__benefit-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    min-width: 200px;
    min- /* Adjusted min-height for feature images */
}

.page-fishing-games__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2C14E;
}

.page-fishing-games__card-description {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-fishing-games__how-to-play-section {
    background-color: #111111; /* Card BG */
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-fishing-games__step-number {
    counter-increment: step-counter;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.page-fishing-games__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #F2C14E;
}

.page-fishing-games__step-description {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-fishing-games__step-description a {
    color: #FFD36B;
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__step-description a:hover {
    text-decoration: underline;
}

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

.page-fishing-games__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    width: 100%;
    background-color: transparent;
    color: #FFF6D6;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover,
.page-fishing-games__faq-question[aria-expanded="true"] {
    background-color: rgba(255, 211, 107, 0.1);
}

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

.page-fishing-games__faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(0deg); /* No rotation for minus, just change content */
}

.page-fishing-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #FFF6D6;
}

.page-fishing-games__faq-answer[data-expanded="true"] {
    max-height: 500px; /* Sufficiently large for content */
    padding: 15px 25px 25px;
}

.page-fishing-games__faq-answer p {
    margin: 0;
}

.page-fishing-games__faq-answer a {
    color: #FFD36B;
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

.page-fishing-games__cta-section {
    text-align: center;
    padding-bottom: 60px;
}

.page-fishing-games__cta-button--large {
    margin-top: 30px;
    min-width: 250px;
    font-size: 1.2rem;
    padding: 18px 35px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games__hero-content {
        margin-top: 0; /* Remove overlap on mobile */
        padding: 20px;
        background-color: #100224; /* Ensure text block has dark background */
        width: 100%;
        box-sizing: border-box;
        padding-top: 20px; /* Adjust padding for mobile */
    }

    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 0; /* No margin between image and text block */
    }

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

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

    .page-fishing-games__cta-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        min-height: 44px;
        box-sizing: border-box;
    }

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

    .page-fishing-games__section-description {
        font-size: 0.95rem;
    }

    .page-fishing-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust grid for smaller screens */
    }

    .page-fishing-games__benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-fishing-games__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .page-fishing-games__step-number {
        margin-bottom: 10px;
    }

    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 0 20px;
    }

    .page-fishing-games__faq-answer[data-expanded="true"] {
        padding: 10px 20px 20px;
    }
}

@media (max-width: 549px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }

    .page-fishing-games__game-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .page-fishing-games__benefit-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Global image size constraint for content area (excluding header/footer handled by shared) */
.page-fishing-games img:not(.shared-header img):not(.shared-footer img) {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-fishing-games img:not(.shared-header img):not(.shared-footer img) {
        max-width: 100%;
        height: auto;
    }
}