/* style/fishing-games.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --background-color: #08160F;
    --card-bg: #11271B;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

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

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--deep-green);
    overflow: hidden;
}

.page-fishing-games__hero-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 700px;
}

.page-fishing-games__hero-content {
    position: relative; /* Ensure content is above any potential background layers if needed */
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin-top: 40px;
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__description {
    font-size: clamp(1em, 2vw, 1.25em);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play,
.page-fishing-games__btn-claim {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.4);
}

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

.page-fishing-games__text-block {
    font-size: 1.1em;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-fishing-games__intro-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__game-types-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__how-to-start-section,
.page-fishing-games__faq-section,
.page-fishing-games__contact-cta-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

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

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

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

.page-fishing-games__feature-card img,
.page-fishing-games__game-card img,
.page-fishing-games__promo-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
}

.page-fishing-games__feature-title,
.page-fishing-games__game-title,
.page-fishing-games__promo-title,
.page-fishing-games__step-title {
    font-size: 1.4em;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-fishing-games__feature-description,
.page-fishing-games__game-description,
.page-fishing-games__promo-description,
.page-fishing-games__step-description {
    font-size: 1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__btn-play,
.page-fishing-games__btn-claim {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: var(--text-main);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(17, 168, 78, 0.3);
}

.page-fishing-games__btn-play:hover,
.page-fishing-games__btn-claim:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-fishing-games__strategy-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-heading {
    font-size: 1.3em;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-fishing-games__strategy-description {
    font-size: 1em;
    color: var(--text-secondary);
}

.page-fishing-games__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.8em;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px var(--glow-color);
}

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

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-main);
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
    list-style: none; /* Remove default marker for details */
}

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

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    text-align: left;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 15px;
    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: 15px 20px 20px 20px;
    font-size: 1em;
    color: var(--text-secondary);
    text-align: left;
}

.page-fishing-games__contact-cta-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: 20px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 4.5vw, 3em);
    }

    .page-fishing-games__description {
        font-size: clamp(0.9em, 1.8vw, 1.1em);
    }

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

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

    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__why-choose-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__how-to-start-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__contact-cta-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
        padding-bottom: 40px;
    }

    .page-fishing-games__hero-content {
        margin-top: 0;
    }

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

    .page-fishing-games__description {
        font-size: clamp(0.9em, 3vw, 1em);
    }

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

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

    .page-fishing-games__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
        margin-top: 40px;
        margin-bottom: 30px;
    }

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

    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__promo-grid,
    .page-fishing-games__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__step-card {
        padding: 20px;
    }

    .page-fishing-games__feature-card img,
    .page-fishing-games__game-card img,
    .page-fishing-games__promo-card img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
    }

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

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

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