.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
    background: #B71C1C; /* Background */
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #F4D34D; /* Gold */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.page-fishing-games__section-title--light {
    color: #FFF5E1; /* Text Main */
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFF5E1; /* Text Main */
}

/* Hero Section */
.page-fishing-games__hero-section {
    background: #B71C1C; /* Background */
    padding-top: 10px; /* Small top padding, body handles header offset */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Desktop: cover to fill space */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin-top: 40px; /* Positive margin to separate from image */
    background: rgba(122, 14, 14, 0.8); /* Deep Red with opacity */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #F2B544; /* Border */
}

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    font-weight: 900;
    color: #FFCC66; /* Glow */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 204, 102, 0.7);
}

.page-fishing-games__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFF5E1; /* Text Main */
}

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

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
    color: #7A0E0E; /* Deep Red for contrast */
    border: 2px solid #F2B544; /* Border */
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #FFE89C 0%, #F5C71A 100%);
}

.page-fishing-games__btn-secondary {
    background: #7A0E0E; /* Deep Red */
    color: #FFCC66; /* Glow */
    border: 2px solid #FFCC66; /* Glow */
}

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background: #9A1E1E;
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 60px 0;
    background: #B71C1C; /* Background */
}

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

.page-fishing-games__feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
    background: #D32F2F; /* Card BG */
}

.page-fishing-games__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFCC66);
}

.page-fishing-games__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFCC66; /* Glow */
}

.page-fishing-games__feature-text {
    font-size: 1em;
    color: #FFF5E1; /* Text Main */
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
    padding: 60px 0;
    background: #7A0E0E; /* Deep Red */
}

.page-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-fishing-games__game-tile {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
    background: #D32F2F; /* Card BG */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-fishing-games__game-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #F2B544; /* Border */
}

.page-fishing-games__game-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFCC66; /* Glow */
}

.page-fishing-games__btn-play {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
    color: #7A0E0E; /* Deep Red for contrast */
    border: 1px solid #F2B544; /* Border */
}

.page-fishing-games__btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* How To Play Section */
.page-fishing-games__how-to-play {
    padding: 60px 0;
    background: #B71C1C; /* Background */
}

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

.page-fishing-games__step-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
    background: #D32F2F; /* Card BG */
}

.page-fishing-games__step-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFCC66);
}

.page-fishing-games__step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFCC66; /* Glow */
}

.page-fishing-games__step-text {
    font-size: 1em;
    color: #FFF5E1; /* Text Main */
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background: #7A0E0E; /* Deep Red */
}

.page-fishing-games__promo-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
    background: #D32F2F; /* Card BG */
}

.page-fishing-games__promo-image {
    width: 40%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #F2B544; /* Border */
}

.page-fishing-games__promo-content {
    flex: 1;
}

.page-fishing-games__promo-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFCC66; /* Glow */
}

.page-fishing-games__promo-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main */
}

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

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFCC66; /* Glow */
    cursor: pointer;
    background: #7A0E0E; /* Deep Red */
    border-bottom: 1px solid #F2B544; /* Border */
    list-style: none; /* For details/summary */
}

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

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

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #FFCC66; /* Glow */
}

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

.page-fishing-games__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: #FFF5E1; /* Text Main */
    background: #D32F2F; /* Card BG */
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    padding: 60px 0;
    text-align: center;
    background: #7A0E0E; /* Deep Red */
}

.page-fishing-games__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #F2B544; /* Border */
}

/* General image styling for content areas */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block; /* Ensures proper spacing and alignment */
}

/* General container styling for content areas */
.page-fishing-games__section,
.page-fishing-games__card,
.page-fishing-games__container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent horizontal scroll for contained elements */
}

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

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

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

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

    .page-fishing-games__promo-card {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__promo-image {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* General image and container responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important; /* Ensure images are not cropped */
    }

    .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 !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }

    /* Hero Section */
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
    }

    .page-fishing-games__hero-image {
        object-fit: contain !important; /* Mobile: contain to show full image, not crop */
        aspect-ratio: unset !important; /* Remove fixed aspect ratio */
        max-height: none !important;
    }

    .page-fishing-games__hero-content {
        margin-top: 20px; /* Positive margin on mobile */
        padding: 20px;
        border-radius: 0;
        background: rgba(122, 14, 14, 0.9);
        border: none;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Smaller on mobile */
        margin-bottom: 15px;
    }

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

    /* Buttons and Button Containers */
    .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 !important;
        padding-right: 15px !important;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
        overflow-x: hidden !important;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-play,
    .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: 12px 20px !important;
        font-size: 1em !important;
    }

    /* Game Grid Section */
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        gap: 20px;
    }

    .page-fishing-games__game-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important; /* Maintain square aspect ratio */
        object-fit: cover !important;
    }

    /* Features Grid */
    .page-fishing-games__features-grid {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        gap: 20px;
    }

    /* How to Play Steps Grid */
    .page-fishing-games__steps-grid {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        gap: 20px;
    }

    /* Promotions Section */
    .page-fishing-games__promo-card {
        flex-direction: column !important; /* Stack on mobile */
        gap: 20px;
        padding: 20px;
    }

    .page-fishing-games__promo-image {
        width: 100% !important; /* Full width on mobile */
        margin-bottom: 15px;
    }

    .page-fishing-games__promo-title {
        font-size: 1.5em;
    }

    .page-fishing-games__promo-text {
        font-size: 0.95em;
    }

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

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

    .page-fishing-games__faq-answer {
        padding: 15px;
        font-size: 0.95em;
    }

    /* Final CTA Section */
    .page-fishing-games__cta-image {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }

    .page-fishing-games__section-title,
    .page-fishing-games__section-description {
        padding-left: 10px;
        padding-right: 10px;
    }
}