.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__dark-bg {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__light-bg {
    background-color: #F2FFF6; /* Text Main - using as light background */
    color: #08160F; /* Dark text for light background */
}

.page-fishing-games__card-bg {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body has header offset */
    padding-bottom: 40px;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Using clamp for responsive H1 */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #08160F; /* Dark text on light background */
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333333; /* Slightly darker for better contrast on light bg */
}

/* CTA Buttons */
.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #11A84E; /* Main color */
    border: 2px solid #11A84E; /* Border */
}

.page-fishing-games__btn-secondary:hover {
    background-color: #11A84E; /* Main color */
    color: #F2FFF6; /* Text Main */
    transform: translateY(-2px);
}

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

/* Game Types Section */
.page-fishing-games__game-types-section {
    padding: 60px 0;
}

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

.page-fishing-games__game-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__game-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

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

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

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

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

.page-fishing-games__step-title {
    font-size: 1.4em;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
}

.page-fishing-games__step-description {
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-fishing-games__tip-item {
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-fishing-games__tip-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__tip-title {
    font-size: 1.4em;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
}

.page-fishing-games__tip-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
}

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

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

.page-fishing-games__promo-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 225px; /* Fixed height */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
}

.page-fishing-games__promo-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-fishing-games__promo-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us-section {
    padding: 60px 0;
}

.page-fishing-games__advantages-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-fishing-games__advantage-item {
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-fishing-games__advantage-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__advantage-title {
    font-size: 1.4em;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
}

.page-fishing-games__advantage-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
}

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

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

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    border-bottom: 1px solid #2E7A4E;
    list-style: none; /* For details summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.8;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: none;
}

/* Final CTA Section */
.page-fishing-games__final-cta-section {
    padding: 60px 0;
    text-align: center;
}

/* General Link Styling */
.page-fishing-games a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games a:hover {
    color: #2AD16F; /* Lighter green */
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__container {
        padding: 15px;
    }

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

    .page-fishing-games__hero-content {
        padding: 20px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2em, 4vw, 3em);
    }

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

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

    .page-fishing-games__games-grid,
    .page-fishing-games__tips-list,
    .page-fishing-games__promo-cards,
    .page-fishing-games__advantages-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

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

    .page-fishing-games__game-title,
    .page-fishing-games__promo-title,
    .page-fishing-games__step-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__advantage-title {
        font-size: 1.3em;
    }

    .page-fishing-games__text-block,
    .page-fishing-games__game-description,
    .page-fishing-games__promo-description,
    .page-fishing-games__step-description,
    .page-fishing-games__tip-description,
    .page-fishing-games__advantage-description,
    .page-fishing-games__faq-answer {
        font-size: 1em;
    }

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

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* Fixed header spacing */
        padding-bottom: 20px;
    }

    .page-fishing-games__hero-content {
        padding: 15px;
        border-radius: 0; /* Remove border-radius on mobile hero content */
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px; /* Add padding to container */
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-fishing-games__container,
    .page-fishing-games__intro-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__why-choose-us-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__final-cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

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

    .page-fishing-games__games-grid,
    .page-fishing-games__tips-list,
    .page-fishing-games__promo-cards,
    .page-fishing-games__advantages-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-fishing-games__game-card,
    .page-fishing-games__tip-item,
    .page-fishing-games__promo-card,
    .page-fishing-games__advantage-item,
    .page-fishing-games__step-item {
        padding: 20px;
    }

    .page-fishing-games__game-title,
    .page-fishing-games__promo-title,
    .page-fishing-games__step-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__advantage-title {
        font-size: 1.2em;
    }

    .page-fishing-games__text-block,
    .page-fishing-games__game-description,
    .page-fishing-games__promo-description,
    .page-fishing-games__step-description,
    .page-fishing-games__tip-description,
    .page-fishing-games__advantage-description,
    .page-fishing-games__faq-answer {
        font-size: 0.95em;
    }

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

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