/* 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: #2E7A4E;
    --fishing-games-glow: #57E38D;
    --fishing-games-gold: #F2C14E;
    --fishing-games-divider: #1E3A2A;
    --fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--fishing-games-text-main);
    background-color: var(--fishing-games-background);
}

.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(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--fishing-games-text-main);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-fishing-games__text-block {
    font-size: 18px;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-fishing-games__btn-primary {
    background: var(--fishing-games-button-gradient);
    color: var(--fishing-games-text-main);
    border: none;
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: var(--fishing-games-primary-color);
    color: var(--fishing-games-text-main);
    transform: translateY(-2px);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: -80px; /* Overlap slightly with image for visual flow */
    position: relative;
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--fishing-games-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.page-fishing-games__about-section {
    padding: 80px 0;
    background-color: var(--fishing-games-background);
}

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

.page-fishing-games__feature-card {
    background-color: var(--fishing-games-card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--fishing-games-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
}

.page-fishing-games__feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--fishing-games-text-main);
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 80px 0;
    background-color: var(--fishing-games-text-main);
    color: var(--fishing-games-text-contrast-fix);
}

.page-fishing-games__text-contrast-fix {
    color: #333333; /* Ensure readability on light background */
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.page-fishing-games__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--fishing-games-primary-color);
}

.page-fishing-games__step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--fishing-games-primary-color);
}

.page-fishing-games__step-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase-section {
    padding: 80px 0;
    background-color: var(--fishing-games-background);
}

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

.page-fishing-games__game-card {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--fishing-games-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__game-info {
    padding: 25px;
    text-align: center;
}

.page-fishing-games__game-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--fishing-games-gold);
    margin-bottom: 10px;
}

.page-fishing-games__game-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__game-button {
    display: inline-block;
    background: var(--fishing-games-button-gradient);
    color: var(--fishing-games-text-main);
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.page-fishing-games__game-button:hover {
    opacity: 0.9;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: var(--fishing-games-text-main);
    color: var(--fishing-games-text-contrast-fix);
}

.page-fishing-games__promotions-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__promotion-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-fishing-games__promotion-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--fishing-games-primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__promotion-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* Download App Section */
.page-fishing-games__download-app-section {
    padding: 80px 0;
    background-color: var(--fishing-games-background);
}

.page-fishing-games__download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-fishing-games__download-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.page-fishing-games__download-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--fishing-games-text-main);
    color: var(--fishing-games-text-contrast-fix);
}

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

.page-fishing-games__faq-item {
    background-color: #ffffff;
    border: 1px solid var(--fishing-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-item[open] {
    box-shadow: 0 5px 15px 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: 18px;
    font-weight: 600;
    color: var(--fishing-games-primary-color);
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--fishing-games-border);
    list-style: none; /* For details/summary */
}

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

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

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

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    background-color: #ffffff;
}

/* Call to Action Section */
.page-fishing-games__call-to-action {
    padding: 80px 0;
    background-color: var(--fishing-games-deep-green);
    text-align: center;
}

.page-fishing-games__call-to-action .page-fishing-games__section-title {
    color: var(--fishing-games-text-main);
}

.page-fishing-games__call-to-action .page-fishing-games__text-block {
    color: var(--fishing-games-text-secondary);
    margin-bottom: 50px;
}

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

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 20px;
    }
    .page-fishing-games__text-block {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }
    .page-fishing-games__hero-image-wrapper {
        max-height: 400px;
    }
    .page-fishing-games__hero-content {
        margin-top: -40px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(28px, 7vw, 48px);
    }
    .page-fishing-games__description {
        font-size: 18px;
    }

    .page-fishing-games__about-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__games-showcase-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__download-app-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__call-to-action {
        padding: 60px 0;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__steps-list,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__promotions-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-fishing-games__feature-icon {
        max-width: 200px;
    }
    .page-fishing-games__game-image {
        height: 200px;
    }

    .page-fishing-games__download-content {
        margin-bottom: 20px;
    }
    .page-fishing-games__download-image {
        max-width: 90%;
    }

    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-fishing-games__faq-qtext {
        color: #333333 !important;
    }
    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px 20px;
        font-size: 15px;
    }

    /* Mobile image and video specific overrides */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .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__hero-section,
    .page-fishing-games__download-app-section,
    .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__video-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(24px, 8vw, 40px);
    }
    .page-fishing-games__description {
        font-size: 16px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        font-size: 16px;
        padding: 10px 15px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__step-title,
    .page-fishing-games__game-title,
    .page-fishing-games__promotion-title {
        font-size: 20px;
    }
}