/* style/fishing-games.css */

/* Custom Color Palette */
:root {
    --page-fishing-games-primary: #11A84E;
    --page-fishing-games-secondary: #22C768;
    --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --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;
}

/* Base styles for the page content */
.page-fishing-games {
    background-color: var(--page-fishing-games-background); /* Dark background */
    color: var(--page-fishing-games-text-main); /* Light text for contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

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

.page-fishing-games__section-title {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--page-fishing-games-gold);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.page-fishing-games__section-description {
    font-size: 18px;
    color: var(--page-fishing-games-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px; /* Small top padding, body handles header offset */
    background: var(--page-fishing-games-deep-green);
    overflow: hidden;
}

.page-fishing-games__hero-image-container {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    color: var(--page-fishing-games-text-main);
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 60px);
    color: var(--page-fishing-games-gold);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

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

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: #ffffff; /* White text on dark gradient */
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

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

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

.page-fishing-games__card-button {
    background: var(--page-fishing-games-primary);
    color: #ffffff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
}

.page-fishing-games__card-button:hover {
    background-color: var(--page-fishing-games-secondary);
    transform: translateY(-2px);
}

/* About Section */
.page-fishing-games__about-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-card-bg);
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__image-content {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 40px auto 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure min size */
    min-height: 200px;
}

/* Games List Section */
.page-fishing-games__games-list-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__game-card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--page-fishing-games-text-main);
    transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px;
}

.page-fishing-games__card-title {
    font-size: 24px;
    color: var(--page-fishing-games-gold);
    margin-bottom: 10px;
    font-weight: 700;
}

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

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__step-item {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

.page-fishing-games__step-description {
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__strategy-list li {
    font-size: 18px;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.page-fishing-games__strategy-list li::before {
    content: '•';
    color: var(--page-fishing-games-gold);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.page-fishing-games__strategy-list li strong {
    color: var(--page-fishing-games-gold);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__promo-card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--page-fishing-games-text-main);
}

/* Benefits Section */
.page-fishing-games__benefits-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__benefit-item {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__benefit-description {
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-text-main);
}

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

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

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: var(--page-fishing-games-deep-green);
}

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: '−';
    color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
    line-height: 1.7;
    background-color: var(--page-fishing-games-card-bg);
}

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

details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-background);
}

/* Text colors for specific elements */
.page-fishing-games p {
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__text-main {
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__text-secondary {
    color: var(--page-fishing-games-text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 0 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(28px, 4.5vw, 50px);
    }
    .page-fishing-games__hero-description {
        font-size: 18px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(24px, 3.5vw, 40px);
    }
}

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

    .page-fishing-games__container,
    .page-fishing-games__hero-content,
    .page-fishing-games__about-section,
    .page-fishing-games__games-list-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__benefits-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final-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; /* Small top padding, body handles header offset */
        padding-bottom: 40px !important;
    }

    .page-fishing-games__main-title {
        font-size: clamp(28px, 8vw, 40px) !important;
    }

    .page-fishing-games__hero-description {
        font-size: 16px !important;
    }

    .page-fishing-games__section-title {
        font-size: clamp(24px, 7vw, 36px) !important;
    }

    .page-fishing-games__section-description {
        font-size: 16px !important;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__card-button {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min size even on mobile */
        min-height: 200px !important;
    }

    .page-fishing-games__card-image {
        height: auto !important;
        min-height: 200px !important;
    }

    .page-fishing-games__games-list-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__benefits-section,
    .page-fishing-games__faq-section {
        padding: 50px 0 !important;
    }

    .page-fishing-games__game-cards,
    .page-fishing-games__guide-steps,
    .page-fishing-games__promo-cards,
    .page-fishing-games__benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-fishing-games__faq-question {
        font-size: 16px !important;
        padding: 15px 20px !important;
    }

    .page-fishing-games__faq-answer {
        font-size: 15px !important;
        padding: 10px 20px 15px !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-image-container {
        margin-top: 30px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(24px, 9vw, 36px) !important;
    }
    .page-fishing-games__section-title {
        font-size: clamp(22px, 8vw, 32px) !important;
    }
    .page-fishing-games__hero-description,
    .page-fishing-games__section-description {
        font-size: 15px !important;
    }
}