/* style/fishing-games.css */

/* Variables for custom colors */
:root {
    --page-fishing-games-main-color: #11A84E;
    --page-fishing-games-accent-color: #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 {
    font-family: 'Arial', sans-serif;
    color: var(--page-fishing-games-text-main);
    background-color: var(--page-fishing-games-background);
    line-height: 1.6;
}

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

/* Section styling */
.page-fishing-games__hero-section,
.page-fishing-games__overview-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__safety-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__final-cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly for visual flow */
    background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__main-title {
    font-weight: bold;
    color: var(--page-fishing-games-gold);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--page-fishing-games-glow);
    text-transform: uppercase;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

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

/* Titles */
.page-fishing-games__section-title {
    font-size: 2.5rem;
    color: var(--page-fishing-games-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.page-fishing-games__section-title--light {
    color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__card-title a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
}

.page-fishing-games__card-title a:hover {
    color: var(--page-fishing-games-glow);
}

/* Paragraphs */
.page-fishing-games__paragraph {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--page-fishing-games-text-main);
    text-align: justify;
}

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

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

/* Buttons */
.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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.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);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--page-fishing-games-glow);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--page-fishing-games-glow);
    opacity: 0.95;
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: var(--page-fishing-games-glow);
    color: var(--page-fishing-games-deep-green);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--page-fishing-games-glow);
}

/* Cards */
.page-fishing-games__card {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__card-description {
    font-size: 0.95rem;
    color: var(--page-fishing-games-text-secondary);
}

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

/* Images within content */
.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--page-fishing-games-border);
    min-width: 200px;
    min-height: 200px;
}

/* Grids */
.page-fishing-games__features-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__games-grid,
.page-fishing-games__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__strategy-list,
.page-fishing-games__safety-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-fishing-games__strategy-item,
.page-fishing-games__safety-item {
    padding: 25px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    background-color: var(--page-fishing-games-deep-green);
    border-bottom: 1px solid var(--page-fishing-games-divider);
    list-style: none; /* For details/summary */
}

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

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

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

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

.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: 0;
}

/* Divider */
.page-fishing-games__divider {
    height: 2px;
    background-color: var(--page-fishing-games-divider);
    margin: 60px auto;
    max-width: 800px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-fishing-games__section-title {
        font-size: 2rem;
    }
    .page-fishing-games__hero-content {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }
    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 25px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }
    .page-fishing-games__hero-description {
        font-size: 1rem;
    }
    .page-fishing-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-fishing-games__card-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-fishing-games__cta-buttons, .page-fishing-games__button-group, .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-fishing-games__overview-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__safety-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__final-cta-section {
        padding: 40px 0;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__games-grid,
    .page-fishing-games__promotions-grid,
    .page-fishing-games__strategy-list,
    .page-fishing-games__safety-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .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__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* padding-left: 15px; */
        /* padding-right: 15px; */
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }
    .page-fishing-games__card-image {
        height: 200px;
    }
    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    .page-fishing-games__content-image {
        margin: 30px auto;
    }
    .page-fishing-games__hero-image-wrapper {
        max-height: 400px;
    }
}