:root {
    --page-fishing-games-bg: #08160F; /* Background */
    --page-fishing-games-card-bg: #11271B; /* Card BG */
    --page-fishing-games-text-main: #F2FFF6; /* Text Main */
    --page-fishing-games-text-secondary: #A7D9B8; /* Text Secondary */
    --page-fishing-games-border: #2E7A4E; /* Border */
    --page-fishing-games-glow: #57E38D; /* Glow */
    --page-fishing-games-gold: #F2C14E; /* Gold */
    --page-fishing-games-divider: #1E3A2A; /* Divider */
    --page-fishing-games-deep-green: #0A4B2C; /* Deep Green */
    --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
}

.page-fishing-games {
    background-color: var(--page-fishing-games-bg);
    color: var(--page-fishing-games-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column; /* Image above content */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: var(--page-fishing-games-deep-green); /* Use a darker green for hero background */
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for mood */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up over image a bit for visual flow, but not *on* the image */
    background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    color: var(--page-fishing-games-text-main);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.1em;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-cta {
    margin-top: 20px;
}

/* General Section Styling */
.page-fishing-games__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--page-fishing-games-gold);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-fishing-games__text-block {
    font-size: 1.05em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-fishing-games__list-item {
    background-color: var(--page-fishing-games-card-bg);
    border-left: 5px solid var(--page-fishing-games-gold);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__list-title {
    font-size: 1.4em;
    color: var(--page-fishing-games-text-main);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-fishing-games__list-item p {
    color: var(--page-fishing-games-text-secondary);
    font-size: 1em;
}

.page-fishing-games__dark-section {
    background-color: var(--page-fishing-games-deep-green);
    padding: 60px 0;
}

.page-fishing-games__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-fishing-games__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: block; /* Ensure block for max-width/height auto */
    margin: 0 auto;
}

/* Buttons */
.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;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* For responsiveness */
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main); /* Light text for dark button */
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--page-fishing-games-gold);
    border: 2px solid var(--page-fishing-games-gold);
    margin-left: 20px;
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--page-fishing-games-gold);
    color: var(--page-fishing-games-bg); /* Dark text for gold background */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-fishing-games__card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__card-title {
    font-size: 1.6em;
    color: var(--page-fishing-games-gold);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-fishing-games__card-description {
    color: var(--page-fishing-games-text-secondary);
    font-size: 1em;
}

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

/* How To Play Section */
.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-fishing-games__steps-list .page-fishing-games__list-item {
    text-align: left;
}

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

.page-fishing-games__faq-item {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    background-color: var(--page-fishing-games-deep-green);
    border-bottom: 1px solid var(--page-fishing-games-border);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-fishing-games__faq-question:hover {
    background-color: var(--page-fishing-games-divider);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--page-fishing-games-gold);
    margin-left: 15px;
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--page-fishing-games-text-secondary);
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding-top: 15px;
}

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

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 500px !important; /* For JS fallback */
    padding-top: 15px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question {
    border-bottom: none;
}

/* Highlighted keywords */
.page-fishing-games .highlight {
    color: var(--page-fishing-games-gold);
    font-weight: bold;
}

/* Links within content */
.page-fishing-games a:not([class*="btn"]) {
    color: var(--page-fishing-games-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-fishing-games a:not([class*="btn"]):hover {
    color: var(--page-fishing-games-glow);
}

/* Ensure no filter on images */
.page-fishing-games img {
    filter: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -50px;
    }
}

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

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* Ensure small padding, not header offset */
        padding-bottom: 20px;
    }

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

    .page-fishing-games__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

    .page-fishing-games__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    /* Buttons responsiveness */
    .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;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    
    .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;
        overflow: hidden !important;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }

    /* Mobile image responsiveness */
    .page-fishing-games img,
    .page-fishing-games__video {
        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,
    .page-fishing-games__image-wrapper,
    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__hero-image-wrapper {
        padding: 0 !important; /* Remove potential padding */
    }
    .page-fishing-games__hero-image {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
}