.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--auxiliary-color);
    padding: 10px 20px 60px;
    background-color: #100224;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-content {
    max-width: 900px;
    margin-top: -80px; /* Adjust to slightly overlap the image for visual flow */
    position: relative;
    z-index: 1;
    background-color: rgba(16, 2, 36, 0.7);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--auxiliary-color);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-fishing-games__hero-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
}

.page-fishing-games__hero-button--primary {
    background: linear-gradient(90deg, #EA7C07 0%, #FF5E3A 100%);
    color: var(--auxiliary-color);
    border: 2px solid #EA7C07;
    box-shadow: 0 4px 15px rgba(234, 124, 7, 0.4);
}

.page-fishing-games__hero-button--primary:hover {
    background: linear-gradient(90deg, #FF5E3A 0%, #EA7C07 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 124, 7, 0.6);
}

.page-fishing-games__hero-button--secondary {
    background-color: #26A9E0;
    color: var(--auxiliary-color);
    border: 2px solid #26A9E0;
    box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
}

.page-fishing-games__hero-button--secondary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(38, 169, 224, 0.6);
}

.page-fishing-games__section {
    padding: 60px 20px;
    background-color: var(--background-color);
    color: #000000;
    text-align: center;
}

.page-fishing-games__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-fishing-games__section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #26A9E0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-fishing-games__section-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.page-fishing-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-fishing-games__game-card {
    background-color: var(--auxiliary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__game-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: #26A9E0;
}

.page-fishing-games__game-card-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__game-card-title a:hover {
    color: #1a8cc4;
}

.page-fishing-games__game-card-description {
    font-size: 0.95rem;
    color: #666;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__game-card-button {
    display: inline-block;
    background-color: #26A9E0;
    color: var(--auxiliary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games__game-card-button:hover {
    background-color: #1a8cc4;
    transform: translateY(-2px);
}

.page-fishing-games__why-choose-us {
    background-color: #f0f7fa;
    padding: 80px 20px;
}

.page-fishing-games__why-choose-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: left;
    gap: 40px;
}

.page-fishing-games__why-choose-us-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.page-fishing-games__why-choose-us-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

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

.page-fishing-games__advantage-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #333;
}

.page-fishing-games__advantage-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

.page-fishing-games__why-choose-us-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__why-choose-us-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__how-to-play {
    background-color: var(--background-color);
    padding: 80px 20px;
}

.page-fishing-games__how-to-play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 50px;
}

.page-fishing-games__step-card {
    background-color: var(--auxiliary-color);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-fishing-games__step-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 400px;
}

.page-fishing-games__step-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-fishing-games__step-card-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.page-fishing-games__how-to-play-cta {
    margin-top: 40px;
}

.page-fishing-games__cta-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background-color: #100224;
}

.page-fishing-games__cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.7);
}

.page-fishing-games__cta-banner-content {
    position: relative;
    z-index: 1;
    color: var(--auxiliary-color);
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__cta-banner-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--auxiliary-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__cta-banner-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__faq-section {
    background-color: #f0f7fa;
    padding: 80px 20px;
}

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

.page-fishing-games__faq-item {
    background-color: var(--auxiliary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-fishing-games__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #26A9E0;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #e6f3f8;
}

.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 {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #444;
}

.page-fishing-games__faq-answer p {
    padding-bottom: 20px;
    line-height: 1.6;
    margin: 0;
}

.page-fishing-games__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }

    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 25px 30px;
    }

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

    .page-fishing-games__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .page-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__hero-button {
        width: 100%;
        max-width: 280px;
    }

    .page-fishing-games__section {
        padding: 40px 15px;
    }

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

    .page-fishing-games__section-description {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        margin-bottom: 30px;
    }

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

    .page-fishing-games__game-card-image {
        height: 200px;
    }

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

    .page-fishing-games__why-choose-us-text {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .page-fishing-games__advantage-list {
        text-align: left;
    }

    .page-fishing-games__advantage-list li {
        margin-left: 15px;
    }

    .page-fishing-games__why-choose-us-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-fishing-games__how-to-play-steps {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__cta-banner {
        min-height: 300px;
        padding: 20px;
    }

    .page-fishing-games__cta-banner-content {
        padding: 30px;
    }

    .page-fishing-games__cta-banner-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .page-fishing-games__cta-banner-description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

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

    /* Enforce min-size for all content images on mobile */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
        object-fit: cover;
    }

    .page-fishing-games__hero-image {
        min-height: 250px;
    }

    .page-fishing-games__game-card-image {
        min-height: 200px;
    }

    .page-fishing-games__why-choose-us-image {
        min-height: 200px;
    }

    .page-fishing-games__step-card-image {
        min-height: 180px;
    }

    .page-fishing-games__cta-banner-image {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    .page-fishing-games__hero-description {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-fishing-games__hero-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}