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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding for content */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 40px 20px;
    margin-top: -100px; /* Overlap slightly for visual effect, but not text on image */
    position: relative;
    z-index: 10;
    background-color: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
    border-radius: 10px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Glow effect */
}

.page-fishing-games__description {
    font-size: 1.2rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 20px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box;
}

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

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

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

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

/* General Section Styling */
.page-fishing-games__section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-fishing-games__section:last-of-type {
    border-bottom: none;
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2AD16F; /* Primary color */
    border-radius: 2px;
}

.page-fishing-games__text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__text a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: bold;
}

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

.page-fishing-games__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-fishing-games__features-grid,
.page-fishing-games__game-list,
.page-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #F2FFF6; /* Text Main for card content */
}

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

.page-fishing-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__card-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-fishing-games__card-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
    flex-grow: 1; /* Allow text to grow */
}

/* List Styling (Ordered and Unordered) */
.page-fishing-games__step-list,
.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

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

.page-fishing-games__list-item:hover {
    transform: translateY(-3px);
}

.page-fishing-games__list-title {
    font-size: 1.3rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
}

.page-fishing-games__step-list .page-fishing-games__list-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2AD16F; /* Primary color */
    color: #08160F; /* Background */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}

.page-fishing-games__strategy-list .page-fishing-games__list-title::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    color: #2AD16F; /* Primary color */
    line-height: 1;
}

.page-fishing-games__list-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

/* CTA Center */
.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 30px;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    color: #F2C14E; /* Gold */
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    position: relative;
    list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    text-align: left;
    color: #F2C14E; /* Gold */
}

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

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

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #2AD16F; /* Primary color */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -50px;
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games__description {
        font-size: 1.1rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
    }
    .page-fishing-games__card-title {
        font-size: 1.3rem;
    }
    .page-fishing-games__list-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__faq-question {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        margin-top: 0; /* Remove overlap on mobile */
        padding: 20px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-fishing-games__description {
        font-size: 1rem;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-fishing-games__text {
        font-size: 0.95rem;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__card {
        padding: 20px;
    }
    .page-fishing-games__card-image {
        height: 180px; /* Adjust height for mobile */
    }
    .page-fishing-games__card-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__card-text {
        font-size: 0.9rem;
    }
    .page-fishing-games__list-item {
        padding: 15px 20px;
    }
    .page-fishing-games__list-title {
        font-size: 1.1rem;
        padding-left: 30px;
    }
    .page-fishing-games__list-text {
        font-size: 0.9rem;
    }
    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 1.5rem;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.9rem;
    }

    /* Image responsive handling */
    .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__hero-section {
        padding-top: 10px !important; /* body already has padding-top */
    }
}

/* Ensure images meet minimum size requirements */
.page-fishing-games img:not(.page-fishing-games__hero-image) {
    min-width: 200px;
    min-height: 200px;
}

/* No CSS filters on images */
.page-fishing-games img {
    filter: none;
}

/* For ordered list counter */
.page-fishing-games__step-list {
    counter-reset: step-counter;
}

/* Contrast Fixes if needed */
.page-fishing-games__dark-section {
  background: #11A84E; /* Primary Color */
  color: #ffffff; /* Forced white text */
}

.page-fishing-games__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}