/* style/fishing-games.css */
:root {
    --fishing-games-primary-color: #11A84E;
    --fishing-games-secondary-color: #22C768;
    --fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --fishing-games-card-bg: #11271B;
    --fishing-games-background: #08160F;
    --fishing-games-text-main: #F2FFF6;
    --fishing-games-text-secondary: #A7D9B8;
    --fishing-games-border-color: #2E7A4E;
    --fishing-games-glow-color: #57E38D;
    --fishing-games-gold-color: #F2C14E;
    --fishing-games-divider-color: #1E3A2A;
    --fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
    background-color: var(--fishing-games-background);
    color: var(--fishing-games-text-main);
}

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

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    color: var(--fishing-games-text-main);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-fishing-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--fishing-games-gold-color);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Using clamp for responsive H1 */
}

.page-fishing-games__hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
    background: var(--fishing-games-deep-green);
    color: var(--fishing-games-gold-color);
    border: 2px solid var(--fishing-games-gold-color);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--fishing-games-gold-color);
    color: var(--fishing-games-deep-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--fishing-games-gold-color);
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--fishing-games-text-secondary);
}

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

.page-fishing-games__image--centered {
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__dark-bg {
    background-color: var(--fishing-games-background);
    color: var(--fishing-games-text-main);
    padding: 80px 0;
}

.page-fishing-games__light-bg {
    background-color: var(--fishing-games-card-bg);
    color: var(--fishing-games-text-main);
    padding: 80px 0;
}

/* Intro Section */
.page-fishing-games__intro-section .page-fishing-games__container {
    text-align: center;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us .page-fishing-games__container {
    text-align: center;
}

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

.page-fishing-games__feature-item {
    background-color: var(--fishing-games-deep-green);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--fishing-games-border-color);
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary);
}

/* Popular Games Section */
.page-fishing-games__popular-games .page-fishing-games__container {
    text-align: center;
}

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

.page-fishing-games__card {
    background-color: var(--fishing-games-deep-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--fishing-games-border-color);
    display: flex;
    flex-direction: column;
    color: var(--fishing-games-text-main);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 15px 20px 5px;
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 20px 15px;
    color: var(--fishing-games-text-secondary);
    flex-grow: 1;
}

.page-fishing-games__card-button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* How to Play Section */
.page-fishing-games__how-to-play .page-fishing-games__container {
    text-align: center;
}

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

.page-fishing-games__step-item {
    background-color: var(--fishing-games-deep-green);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--fishing-games-border-color);
    position: relative;
    padding-top: 60px;
}

.page-fishing-games__step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--fishing-games-gold-color);
    color: var(--fishing-games-background);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.page-fishing-games__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__cta-buttons--centered {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies .page-fishing-games__container {
    text-align: center;
}

.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-fishing-games__strategy-list li {
    background-color: var(--fishing-games-deep-green);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
    border: 1px solid var(--fishing-games-border-color);
}

.page-fishing-games__strategy-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__strategy-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary);
}

/* Promotions Section */
.page-fishing-games__promotions .page-fishing-games__container {
    text-align: center;
}

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

.page-fishing-games__promo-card {
    padding: 30px;
    text-align: center;
}

.page-fishing-games__promo-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__promo-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary);
}

/* Support Section */
.page-fishing-games__support-section .page-fishing-games__container {
    text-align: center;
}

/* FAQ Section */
.page-fishing-games__faq-section .page-fishing-games__container {
    text-align: center;
}

.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    background-color: var(--fishing-games-deep-green);
    border: 1px solid var(--fishing-games-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    text-align: left;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--fishing-games-gold-color);
    cursor: pointer;
    position: relative;
    list-style: none;
}

.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.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--fishing-games-gold-color);
}

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

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary);
}

/* Final CTA Section */
.page-fishing-games__cta-final .page-fishing-games__container {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-fishing-games__hero-content {
        padding: 30px 20px;
    }
    .page-fishing-games__dark-bg, .page-fishing-games__light-bg {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    .page-fishing-games__hero-description,
    .page-fishing-games__text-block,
    .page-fishing-games__feature-description,
    .page-fishing-games__card-description,
    .page-fishing-games__step-description,
    .page-fishing-games__strategy-description,
    .page-fishing-games__promo-description,
    .page-fishing-games__faq-answer {
        font-size: 1rem;
    }
    
    .page-fishing-games__hero-content {
        padding: 20px 15px;
    }
    .page-fishing-games__dark-bg, .page-fishing-games__light-bg {
        padding: 40px 0;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }

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

    /* Containers for images/buttons/videos responsive */
    .page-fishing-games__hero-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__why-choose-us,
    .page-fishing-games__popular-games,
    .page-fishing-games__how-to-play,
    .page-fishing-games__tips-strategies,
    .page-fishing-games__promotions,
    .page-fishing-games__support-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final,
    .page-fishing-games__container,
    .page-fishing-games__features-grid,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__promos-grid,
    .page-fishing-games__faq-list,
    .page-fishing-games__card,
    .page-fishing-games__feature-item,
    .page-fishing-games__step-item,
    .page-fishing-games__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    /* Buttons responsive */
    .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-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }

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

/* Ensure content area images are never too small */
.page-fishing-games__intro-section img,
.page-fishing-games__why-choose-us img,
.page-fishing-games__popular-games img,
.page-fishing-games__how-to-play img,
.page-fishing-games__tips-strategies img,
.page-fishing-games__promotions img {
    min-width: 200px;
    min-height: 200px;
}

/* Image color filter restriction */
.page-fishing-games img {
    filter: none; /* Absolutely no CSS filters to change image colors */
}