/* style/fishing-games.css */

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

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

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

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Rely on body for --header-offset, this is for aesthetic spacing */
    overflow: hidden;
    text-align: center;
}

.page-fishing-games__hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px; /* Ensure image container has a min height */
    max-height: 700px;
    overflow: hidden;
}

.page-fishing-games__hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: -100px; /* Pull content up over the bottom part of the image slightly */
    background: rgba(8, 22, 15, 0.85); /* Semi-transparent background for readability */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__main-title {
    font-weight: bold;
    color: var(--page-fishing-games-gold-color);
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.1em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 30px;
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main);
    border: 2px solid var(--page-fishing-games-glow-color);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

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

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--page-fishing-games-gold-color);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__sub-title {
    font-size: 1.8em;
    color: var(--page-fishing-games-glow-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-fishing-games__text-block {
    font-size: 1.05em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 20px;
}

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

.page-fishing-games__about-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section,
.page-fishing-games__conclusion-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-background-color);
}

.page-fishing-games__why-choose-section,
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-card-bg);
}

.page-fishing-games__strategy-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-deep-green);
}

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

.page-fishing-games__grid-item {
    background-color: var(--page-fishing-games-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__list {
    list-style: disc;
    padding-left: 25px;
    color: var(--page-fishing-games-text-main);
    margin-top: 15px;
}

.page-fishing-games__list li {
    margin-bottom: 8px;
}

.page-fishing-games__image-left,
.page-fishing-games__image-right {
    margin: 40px 0;
    text-align: center;
}

.page-fishing-games__image-left img,
.page-fishing-games__image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--page-fishing-games-border-color);
    display: block;
    margin: 0 auto;
}

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

.page-fishing-games__step-item {
    background-color: var(--page-fishing-games-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-border-color);
    text-align: center;
}

.page-fishing-games__step-item h3 {
    color: var(--page-fishing-games-gold-color);
    font-size: 1.6em;
}

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

.page-fishing-games__promo-card {
    background-color: var(--page-fishing-games-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-border-color);
    text-align: center;
}

.page-fishing-games__promo-title {
    color: var(--page-fishing-games-glow-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: var(--page-fishing-games-card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--page-fishing-games-border-color);
}

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

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

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

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

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

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

.page-fishing-games__link {
    color: var(--page-fishing-games-glow-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__link:hover {
    color: var(--page-fishing-games-gold-color);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-fishing-games__container,
    .page-fishing-games__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-fishing-games__hero-section {
        padding-bottom: 30px;
        padding-top: 10px !important;
    }

    .page-fishing-games__hero-content {
        margin-top: -50px; /* Adjust for mobile */
        padding: 15px;
    }

    .page-fishing-games__main-title {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .page-fishing-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-fishing-games__sub-title {
        font-size: 1.4em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-fishing-games__text-block {
        font-size: 0.95em;
    }

    .page-fishing-games__about-section,
    .page-fishing-games__why-choose-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        padding: 40px 0;
    }

    .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__grid-item,
    .page-fishing-games__step-item,
    .page-fishing-games__promo-card,
    .page-fishing-games__image-left,
    .page-fishing-games__image-right {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

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