.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-fishing-games a {
    color: #57E38D; /* Glow */
    text-decoration: none;
}

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

/* Section styling */
.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
    background-color: #08160F; /* Background */
    position: relative;
    z-index: 1;
}

/* Specific padding-top for the first section in main, as body handles header offset */
.page-fishing-games__hero-section {
    padding-top: 10px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto; /* Ensures image scales with aspect ratio */
    object-fit: cover;
    max-height: 500px; /* Limit hero image height on desktop */
    display: block;
    margin-bottom: 30px; /* Space between image and content */
}

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-fishing-games__hero-description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__text-block {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-fishing-games__container {
    width: 100%; /* Ensure container takes full width when needed */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Card styling */
.page-fishing-games__card {
    background-color: #11271B; /* Card B G */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6; /* Text Main */
    height: 100%; /* Ensure cards in a grid have equal height */
    box-sizing: border-box;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__card-title {
    font-size: 1.5rem;
    color: #F2FFF6; /* Text Main */
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__card-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

/* Grid layouts */
.page-fishing-games__features-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__promotions-grid,
.page-fishing-games__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Image styling within cards/features */
.page-fishing-games__feature-image,
.page-fishing-games__promotion-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover; /* Crop to fit */
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Remove extra space below image */
}

/* CTA Buttons */
.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping in buttons on desktop */
    box-sizing: border-box;
    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(34, 199, 104, 0.4);
}

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
}

.page-fishing-games__btn-secondary:hover {
    background-color: #57E38D; /* Glow */
    color: #08160F; /* Background */
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card B G */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card B G */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

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

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: "−";
}

.page-fishing-games__faq-answer {
    padding: 0 30px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

.page-fishing-games__faq-answer p {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .page-fishing-games__hero-section {
        padding-top: 10px;
    }

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

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

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 80%;
        max-width: 300px;
    }
}

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

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body handles header offset */
        padding-bottom: 40px;
    }
    
    .page-fishing-games__hero-image {
        max-height: 300px;
        margin-bottom: 20px;
    }

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

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

    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 30px;
    }

    .page-fishing-games__text-block {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-fishing-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__feature-image,
    .page-fishing-games__promotion-image {
        height: auto;
        min-height: 200px;
        object-fit: contain;
    }

    /* Buttons */
    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 15px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
    }

    .page-fishing-games__btn-small {
        width: auto !important;
        max-width: fit-content !important;
        display: inline-block !important;
    }
    .page-fishing-games__faq-answer .page-fishing-games__btn-small {
        margin-left: 0;
        margin-right: 0;
    }

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

    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
}