/* style/fishing-games.css */

/* Base Styles for the Page Content */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark background */
    background-color: transparent; /* Inherit from body or shared, will be dark */
    padding-top: 0; /* Assuming shared.css handles body padding-top */
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    color: #f0f0f0;
}

.page-fishing-games__link {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.page-fishing-games__highlight {
    color: #EA7C07; /* Login color for highlight */
    font-weight: bold;
}

/* Buttons */
.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;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
    background-color: #1a7fb0;
    border-color: #1a7fb0;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

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

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

/* Image Styles - Global responsive and size limits */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* No filter properties allowed */
}

/* Section specific styles */
.page-fishing-games__dark-section {
    background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent brand color for dark theme contrast */
    padding: 60px 0;
    color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__paragraph {
    color: #f0f0f0;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-fishing-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 0;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Intro Section */
.page-fishing-games__intro-section {
    padding: 80px 0;
}

/* Video Section */
.page-fishing-games__video-section {
    padding: 80px 0;
    background-color: rgba(38, 169, 224, 0.05); /* Lighter background for video */
    text-align: center;
}

.page-fishing-games__video-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 12px;
}

.page-fishing-games__video-caption {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

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

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* Light background for contrast */
}

.page-fishing-games__features-section .page-fishing-games__section-title {
    color: #000000;
}

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

.page-fishing-games__feature-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333333; /* Dark text for light background */
}

.page-fishing-games__feature-card .page-fishing-games__feature-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    margin: 0 auto 20px auto;
}

.page-fishing-games__feature-card .page-fishing-games__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-card .page-fishing-games__feature-description {
    font-size: 1em;
    color: #555555;
    text-align: left;
}

/* Games List Section */
.page-fishing-games__games-list {
    padding: 80px 0;
}

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

.page-fishing-games__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__game-card .page-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-fishing-games__game-card .page-fishing-games__game-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__game-card .page-fishing-games__game-title .page-fishing-games__link {
    color: #26A9E0;
}
.page-fishing-games__game-card .page-fishing-games__game-title .page-fishing-games__link:hover {
    color: #FFFFFF;
}

.page-fishing-games__game-card .page-fishing-games__game-description {
    font-size: 0.95em;
    color: #f0f0f0;
    flex-grow: 1; /* Ensures description takes available space */
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-fishing-games__strategy-section .page-fishing-games__section-title {
    color: #000000;
}

.page-fishing-games__strategy-section .page-fishing-games__paragraph {
    color: #333333;
}

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

.page-fishing-games__list-item {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: #333333;
}

.page-fishing-games__list-item .page-fishing-games__list-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__list-item .page-fishing-games__list-description {
    font-size: 1em;
    color: #555555;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us {
    padding: 80px 0;
}

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

.page-fishing-games__why-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-fishing-games__why-item .page-fishing-games__why-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto 20px auto;
}

.page-fishing-games__why-item .page-fishing-games__why-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__why-item .page-fishing-games__why-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

/* Promotions CTA Section */
.page-fishing-games__promotions-cta {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.page-fishing-games__promotions-cta .page-fishing-games__section-title {
    color: #000000;
}

.page-fishing-games__promotions-cta .page-fishing-games__paragraph {
    color: #333333;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: rgba(38, 169, 224, 0.05);
}

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

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    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;
    cursor: pointer;
    background-color: #26A9E0;
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #1a7fb0;
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 1.2em;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    transform: rotate(45deg); /* Changes + to x (rotated +) */
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-fishing-games__faq-answer p {
    margin: 0;
    font-size: 1em;
    text-align: left;
}

/* Final CTA Section */
.page-fishing-games__final-cta {
    padding: 80px 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: 3em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__paragraph {
        font-size: 1em;
    }
    .page-fishing-games__hero-description {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games__hero-section {
        height: auto;
        min-height: 600px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header */
    }

    .page-fishing-games__hero-title {
        font-size: 2.2em;
    }

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

    .page-fishing-games__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .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: 12px 20px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-fishing-games__container {
        padding: 0 15px;
    }

    /* Mobile image and video responsive fix */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper,
    .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;
        overflow: hidden !important;
    }

    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__games-grid,
    .page-fishing-games__strategy-list,
    .page-fishing-games__why-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__list-item,
    .page-fishing-games__why-item {
        padding: 20px;
    }

    .page-fishing-games__feature-card .page-fishing-games__feature-image,
    .page-fishing-games__why-item .page-fishing-games__why-image {
        height: auto; /* Allow auto height on mobile */
    }

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

    .page-fishing-games__faq-answer {
        padding: 0 20px;
    }
    .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
        padding: 15px 20px;
    }

    .page-fishing-games__intro-section,
    .page-fishing-games__video-section,
    .page-fishing-games__features-section,
    .page-fishing-games__games-list,
    .page-fishing-games__strategy-section,
    .page-fishing-games__why-choose-us,
    .page-fishing-games__promotions-cta,
    .page-fishing-games__faq-section,
    .page-fishing-games__final-cta {
        padding: 40px 0;
    }
}