/* style/fishing-games.css */

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

/* Base styles for the page content, assuming dark body background */
.page-fishing-games {
    background-color: var(--page-fishing-games-background); /* Dark background */
    color: var(--page-fishing-games-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Global text styles */
.page-fishing-games p,
.page-fishing-games li {
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__highlight {
    color: var(--page-fishing-games-gold);
    font-weight: bold;
}

/* Section styling */
.page-fishing-games__hero-section,
.page-fishing-games__introduction-section,
.page-fishing-games__highlights-section,
.page-fishing-games__guide-section,
.page-fishing-games__tips-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-section {
    padding-top: 10px; /* body already handles --header-offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: var(--page-fishing-games-deep-green);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    color: var(--page-fishing-games-gold);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.page-fishing-games__hero-description {
    color: var(--page-fishing-games-text-main);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__section-title {
    color: var(--page-fishing-games-text-main);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--page-fishing-games-gold);
    border-radius: 2px;
}

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

.page-fishing-games__text-block {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__text-center {
    text-align: center;
}

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

/* Card Styling */
.page-fishing-games__card {
    background: var(--page-fishing-games-card-bg);
    color: var(--page-fishing-games-text-main);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--page-fishing-games-glow);
}

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

.page-fishing-games__card-text {
    color: var(--page-fishing-games-text-secondary);
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 15px;
}

.page-fishing-games__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    display: block;
}

/* Grid Layouts */
.page-fishing-games__highlight-grid,
.page-fishing-games__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Guide List */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-fishing-games__guide-list .page-fishing-games__list-item {
    background: var(--page-fishing-games-card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__guide-list .page-fishing-games__list-title {
    color: var(--page-fishing-games-text-main);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__guide-list .page-fishing-games__list-item p {
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 15px;
}

/* Tips List */
.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-fishing-games__tips-list .page-fishing-games__list-item {
    background: var(--page-fishing-games-card-bg);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--page-fishing-games-primary-color);
}

.page-fishing-games__tips-list .page-fishing-games__list-title {
    color: var(--page-fishing-games-text-main);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.page-fishing-games__tips-list .page-fishing-games__list-item p {
    color: var(--page-fishing-games-text-secondary);
}

/* Button Styling */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

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

.page-fishing-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 10px var(--page-fishing-games-glow);
}

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

.page-fishing-games__btn-secondary:hover {
    background: var(--page-fishing-games-glow);
    color: var(--page-fishing-games-background);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-small {
    padding: 8px 18px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.page-fishing-games__btn-large {
    padding: 15px 35px;
    font-size: 1.3rem;
    min-width: 200px;
}

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

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

.page-fishing-games__faq-item {
    background: var(--page-fishing-games-card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--page-fishing-games-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    background: var(--page-fishing-games-deep-green);
    border-bottom: 1px solid var(--page-fishing-games-divider);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--page-fishing-games-gold);
    margin-left: 15px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid var(--page-fishing-games-border);
}

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

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer a {
    color: var(--page-fishing-games-gold);
    text-decoration: underline;
}

/* Theming for sections */
.page-fishing-games__dark-section {
    background-color: var(--page-fishing-games-background);
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__light-bg {
    background-color: #0A1F18; /* A slightly lighter dark green for contrast */
    color: var(--page-fishing-games-text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
}

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

    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__highlights-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 40px 15px !important;
    }

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

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .page-fishing-games__text-block {
        font-size: 1rem;
    }

    .page-fishing-games__card {
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-fishing-games__card-title {
        font-size: 1.3rem;
    }

    .page-fishing-games__card-text {
        font-size: 0.95rem;
    }

    /* Images responsive */
    .page-fishing-games img {
        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-image-wrapper,
    .page-fishing-games__cta-buttons,
    .page-fishing-games__highlight-grid,
    .page-fishing-games__promotion-cards,
    .page-fishing-games__guide-list,
    .page-fishing-games__tips-list,
    .page-fishing-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* 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;
        margin: 8px 0 !important; /* Stack buttons vertically */
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column !important;
        gap: 0;
    }

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

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

@media (max-width: 480px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__highlights-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 30px 10px !important;
    }
    .page-fishing-games__container {
        padding: 0 10px !important;
    }
    .page-fishing-games__hero-content {
        padding: 0 10px;
    }
    .page-fishing-games__card-image {
        height: 200px;
    }
    .page-fishing-games__btn-large {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}