/* style/fishing-games.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #121212; /* From shared.css body background */
    --button-register-bg: #C30808;
    --button-login-bg: #C30808;
    --button-font-color: #FFFF00;
}

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

.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
}

.page-fishing-games__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: bold;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding: 100px 20px 60px; /* Base padding */
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    margin-bottom: 40px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: bold;
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.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;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background-color: var(--button-register-bg); /* Custom color for register/play */
    color: var(--button-font-color);
    border: 2px solid var(--button-register-bg);
}

.page-fishing-games__btn-primary:hover {
    background-color: #a30606;
    transform: translateY(-3px);
}

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

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

.page-fishing-games__hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__video-link {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    cursor: pointer;
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Intro Section */
.page-fishing-games__intro-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games__intro-section .page-fishing-games__section-title,
.page-fishing-games__intro-section .page-fishing-games__section-description {
    color: var(--text-light);
}

.page-fishing-games__image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__image-wrapper--center {
    display: flex;
    justify-content: center;
}

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

/* Features Section */
.page-fishing-games__features-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__features-section .page-fishing-games__section-title,
.page-fishing-games__features-section .page-fishing-games__section-description {
    color: var(--text-light);
}

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

.page-fishing-games__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-fishing-games__card-text {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Guide Section */
.page-fishing-games__guide-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games__guide-section .page-fishing-games__section-title,
.page-fishing-games__guide-section .page-fishing-games__section-description {
    color: var(--text-light);
}

.page-fishing-games__guide-list {
    list-style: none;
    counter-reset: guide-step;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__guide-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
    padding: 30px;
    text-align: left;
    border-radius: 8px;
    position: relative;
    padding-left: 80px;
    color: var(--text-light);
}

.page-fishing-games__guide-item::before {
    counter-increment: guide-step;
    content: "0" counter(guide-step);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
}

.page-fishing-games__guide-step-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-fishing-games__guide-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.page-fishing-games__guide-item .page-fishing-games__btn-primary {
    margin-top: 10px;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__strategy-section .page-fishing-games__section-title,
.page-fishing-games__strategy-section .page-fishing-games__section-description {
    color: var(--text-light);
}

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

.page-fishing-games__strategy-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
}

.page-fishing-games__strategy-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-fishing-games__strategy-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games__promotions-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-description {
    color: var(--text-light);
}

.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 700px;
    text-align: left;
}

.page-fishing-games__promo-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--primary-color);
}

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

/* Download Section */
.page-fishing-games__download-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__download-section .page-fishing-games__section-title,
.page-fishing-games__download-section .page-fishing-games__section-description {
    color: var(--text-light);
}

.page-fishing-games__download-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

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

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

.page-fishing-games__app-benefits-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__app-benefits-list li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-fishing-games__cta-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-fishing-games__download-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

/* Trust Section */
.page-fishing-games__trust-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games__trust-section .page-fishing-games__section-title,
.page-fishing-games__trust-section .page-fishing-games__section-description {
    color: var(--text-light);
}

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

.page-fishing-games__trust-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.page-fishing-games__trust-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-fishing-games__trust-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
    color: var(--text-light);
}

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

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-light);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    list-style: none; /* For details/summary */
}

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

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

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

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 20px;
}

.page-fishing-games__cta-final-content {
    max-width: 900px;
}

.page-fishing-games__cta-final-section .page-fishing-games__section-title,
.page-fishing-games__cta-final-section .page-fishing-games__section-description {
    color: var(--text-light);
}

.page-fishing-games__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 50px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: 3em;
    }

    .page-fishing-games__section-title {
        font-size: 2em;
    }

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

    .page-fishing-games__download-content,
    .page-fishing-games__download-image-wrapper {
        max-width: 100%;
    }

    .page-fishing-games__app-benefits-list {
        text-align: left;
    }

    .page-fishing-games__cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header */
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

    .page-fishing-games__hero-cta {
        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;
        font-size: 0.9em;
    }

    .page-fishing-games__section {
        padding: 40px 15px;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games__section-description {
        font-size: 0.95em;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__strategy-item,
    .page-fishing-games__trust-item {
        padding: 20px;
    }

    .page-fishing-games__card-title,
    .page-fishing-games__strategy-title,
    .page-fishing-games__trust-title {
        font-size: 1.3em;
    }

    .page-fishing-games__guide-item {
        padding: 20px 20px 20px 60px;
    }

    .page-fishing-games__guide-item::before {
        font-size: 1.8em;
        left: 15px;
    }

    .page-fishing-games__guide-step-title {
        font-size: 1.4em;
    }

    .page-fishing-games__image,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games__image-wrapper,
    .page-fishing-games__hero-video-wrapper,
    .page-fishing-games__video-link,
    .page-fishing-games__download-image-wrapper,
    .page-fishing-games__cta-group,
    .page-fishing-games__container,
    .page-fishing-games__hero-content,
    .page-fishing-games__download-flex,
    .page-fishing-games__download-content,
    .page-fishing-games__cta-final-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }

    .page-fishing-games__cta-group {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .page-fishing-games__btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: 1.8em;
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 10px 15px;
        font-size: 0.85em;
    }
}

/* No CSS filters for images */
.page-fishing-games img {
    filter: none !important;
}