/* style/fishing-games.css */

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

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

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

.page-fishing-games__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__dark-section {
    background-color: var(--fishing-games-bg-main);
    color: var(--fishing-games-text-main);
}

.page-fishing-games__section-title {
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--fishing-games-gold);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--fishing-games-text-secondary);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetics */
    background-color: var(--fishing-games-bg-main);
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for large screens */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-fishing-games__hero-content {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly with image for visual flow */
    z-index: 1;
    background: rgba(17, 39, 27, 0.85); /* Card BG with transparency for contrast */
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--fishing-games-border);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 800;
    color: var(--fishing-games-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px var(--fishing-games-glow);
}

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

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    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;
    text-align: center;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-btn-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    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);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--fishing-games-glow);
    border: 2px solid var(--fishing-games-glow);
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    background-color: rgba(87, 227, 141, 0.1);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

/* Card Styles */
.page-fishing-games__card {
    background-color: var(--fishing-games-bg-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fishing-games-border);
    color: var(--fishing-games-text-main);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us {
    background-color: var(--fishing-games-bg-main);
}

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

.page-fishing-games__feature-card {
    text-align: center;
}

.page-fishing-games__feature-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid var(--fishing-games-deep-green);
    box-shadow: 0 0 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__feature-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--fishing-games-glow);
    margin-bottom: 15px;
}

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

/* Featured Games Section */
.page-fishing-games__featured-games {
    background-color: var(--fishing-games-bg-card);
}

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

.page-fishing-games__game-card {
    text-align: center;
    padding: 20px;
}

.page-fishing-games__game-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--fishing-games-border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__game-text {
    font-size: 1em;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__content-block {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--fishing-games-bg-main);
    border-radius: 12px;
    border: 1px solid var(--fishing-games-border);
}

.page-fishing-games__content-subtitle {
    font-size: 2em;
    font-weight: 700;
    color: var(--fishing-games-glow);
    margin-bottom: 20px;
    text-align: center;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    color: var(--fishing-games-text-main);
    text-align: justify;
}

/* How To Join Section */
.page-fishing-games__how-to-join {
    background-color: var(--fishing-games-bg-main);
}

.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-fishing-games__step-card {
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-fishing-games__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fishing-games-gold);
    color: var(--fishing-games-bg-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 800;
    border: 3px solid var(--fishing-games-glow);
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.page-fishing-games__step-text {
    font-size: 1em;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
}

/* Promotions Section */
.page-fishing-games__promotions {
    background-color: var(--fishing-games-bg-card);
}

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

.page-fishing-games__promo-card {
    text-align: center;
    padding: 20px;
}

.page-fishing-games__promo-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--fishing-games-border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__promo-text {
    font-size: 1em;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__cta-block {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--fishing-games-bg-main);
    border-radius: 12px;
    border: 1px solid var(--fishing-games-border);
}

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

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies {
    background-color: var(--fishing-games-bg-main);
}

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

.page-fishing-games__strategy-card {
    padding: 30px;
}

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

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

/* FAQ Section */
.page-fishing-games__faq {
    background-color: var(--fishing-games-bg-card);
}

.page-fishing-games__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-fishing-games__faq-item {
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid var(--fishing-games-border);
    overflow: hidden;
}

.page-fishing-games__faq-item summary {
    list-style: none;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--fishing-games-text-main);
    background-color: var(--fishing-games-deep-green);
    border-radius: 12px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

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

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

.page-fishing-games__faq-answer {
    padding: 20px 30px;
    background-color: var(--fishing-games-bg-card);
    color: var(--fishing-games-text-secondary);
    border-top: 1px solid var(--fishing-games-border);
    font-size: 1em;
    line-height: 1.8;
    text-align: justify;
}

.page-fishing-games__faq-answer p {
    margin-bottom: 15px;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__faq-answer .page-fishing-games__btn-secondary {
    margin-top: 10px;
}

/* Conclusion Section */
.page-fishing-games__conclusion {
    background-color: var(--fishing-games-bg-main);
    text-align: center;
}

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

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

    .page-fishing-games__hero-title {
        font-size: clamp(2em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 0;
    }

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

    .page-fishing-games__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

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

    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }

    .page-fishing-games__hero-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }

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

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

    .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;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__cta-buttons,
    .page-fishing-games__hero-cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
        overflow: hidden !important;
    }

    .page-fishing-games__card {
        padding: 20px;
    }

    .page-fishing-games__feature-title,
    .page-fishing-games__game-title,
    .page-fishing-games__promo-title,
    .page-fishing-games__strategy-title {
        font-size: 1.4em;
    }

    .page-fishing-games__feature-icon {
        max-width: 150px;
    }

    .page-fishing-games__step-card {
        padding-top: 50px;
    }

    .page-fishing-games__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }

    .page-fishing-games__content-subtitle {
        font-size: 1.6em;
    }

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

    .page-fishing-games__faq-answer {
        padding: 15px 20px;
    }
    
    /* Mobile image responsiveness */
    .page-fishing-games img {
      max-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__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__content-block,
    .page-fishing-games__cta-block,
    .page-fishing-games__faq-item {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    
    /* Ensure images in grids are responsive */
    .page-fishing-games__features-grid,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__promotions-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section {
        padding: 30px 0;
    }

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

    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 20px 10px;
    }

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

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

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