.page-fishing-games {
    font-family: Arial, sans-serif;
    color: #F2FFF6;
    background-color: #08160F;
}

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

.page-fishing-games__section-title {
    font-size: clamp(2em, 4vw, 2.5em);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E; /* Gold */
    line-height: 1.2;
}

.page-fishing-games__section-description {
    text-align: center;
    margin-bottom: 40px;
    color: #A7D9B8;
    font-size: 1.1em;
}

.page-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.page-fishing-games__btn--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
}

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

.page-fishing-games__btn--secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
}

.page-fishing-games__btn--secondary:hover {
    background-color: #2AD16F;
    color: #08160F;
}

.page-fishing-games__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-fishing-games__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 60px;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    padding: 40px 20px;
    text-align: center;
    position: relative; /* Ensure content is above any potential background effect of the section */
    z-index: 1;
    max-width: 900px;
    margin: -80px auto 0; /* Pull content up slightly over the image for visual flow */
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 900;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    line-height: 1.6;
}

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

/* About Section */
.page-fishing-games__about-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    margin-bottom: 60px;
}

.page-fishing-games__about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__about-text {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.7;
    color: #F2FFF6;
}

.page-fishing-games__about-text p {
    margin-bottom: 20px;
}

.page-fishing-games__about-image {
    flex: 1;
    min-width: 200px; /* Minimum size requirement */
}

.page-fishing-games__about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Games Section */
.page-fishing-games__games-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.page-fishing-games__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E;
}

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

.page-fishing-games__game-card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__game-card-title a {
    color: inherit;
    text-decoration: none;
}

.page-fishing-games__game-card-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__game-card-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-fishing-games__view-all-button {
    text-align: center;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    margin-bottom: 60px;
}

.page-fishing-games__why-choose-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__why-choose-image {
    flex: 1;
    min-width: 200px;
}

.page-fishing-games__why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.page-fishing-games__why-choose-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-fishing-games__why-choose-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__why-choose-item:last-child {
    margin-bottom: 0;
}

.page-fishing-games__why-choose-item-title {
    font-size: 1.3em;
    color: #2AD16F; /* Button primary color */
    margin-bottom: 10px;
}

.page-fishing-games__why-choose-item p {
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.page-fishing-games__step-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
}

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

.page-fishing-games__step-card p {
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

.page-fishing-games__how-to-play-image {
    text-align: center;
    margin-top: 40px;
}

.page-fishing-games__how-to-play-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: cover;
}

/* CTA Section */
.page-fishing-games__cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #0A4B2C 0%, #1E3A2A 100%); /* Deep Green to Divider */
    text-align: center;
    margin-bottom: 60px;
}

.page-fishing-games__cta-content {
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-fishing-games__cta-title {
    font-size: clamp(2em, 4.5vw, 3em);
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games__cta-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-fishing-games__cta-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: cover;
}

/* 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: #11271B; /* Card BG */
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: transparent;
    border: none;
    color: #F2FFF6; /* Text Main */
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #1E3A2A; /* Divider */
}

.page-fishing-games__faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.page-fishing-games__faq-icon::before,
.page-fishing-games__faq-icon::after {
    content: '';
    position: absolute;
    background-color: #2AD16F;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.page-fishing-games__faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-fishing-games__faq-question[aria-expanded="true"] .page-fishing-games__faq-icon::after {
    transform: translateX(-50%) rotate(90deg); /* Hide vertical bar */
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games__about-content,
    .page-fishing-games__why-choose-grid {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__about-image,
    .page-fishing-games__why-choose-image {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }

    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 30px 15px;
    }

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

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

    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-fishing-games__hero-title {
        font-size: 2em;
    }

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

    .page-fishing-games__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

    .page-fishing-games__cta-title {
        font-size: 1.8em;
    }

    /* Enforce image max-width for content area images */
    .page-fishing-games__about-image img,
    .page-fishing-games__game-card-image,
    .page-fishing-games__why-choose-image img,
    .page-fishing-games__how-to-play-image img,
    .page-fishing-games__cta-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content {
        margin-top: -20px;
        padding: 20px 10px;
    }

    .page-fishing-games__hero-title {
        font-size: 1.8em;
    }

    .page-fishing-games__hero-buttons {
        gap: 10px;
    }

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