/* style/fishing-games.css */

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

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

.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
}

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

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

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

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

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

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--fishing-games-gold-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--fishing-games-text-main);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-fishing-games__btn-primary {
    background: var(--fishing-games-btn-gradient);
    color: #ffffff; /* Always white for contrast on gradient */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

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

/* Section Titles & Text */
.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--fishing-games-gold-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--fishing-games-gold-color);
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
    text-align: left;
}

.page-fishing-games__introduction-section .page-fishing-games__text-block {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark Section */
.page-fishing-games__dark-section {
    background-color: var(--fishing-games-card-bg);
    color: var(--fishing-games-text-main);
}

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

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 20px;
}

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

.page-fishing-games__card {
    background-color: var(--fishing-games-deep-green);
    border: 1px solid var(--fishing-games-border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--fishing-games-text-main);
}

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

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

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

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

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 80px 20px;
}

.page-fishing-games__numbered-list {
    list-style: none;
    counter-reset: guide-counter;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__numbered-list li {
    counter-increment: guide-counter;
    margin-bottom: 30px;
    position: relative;
    padding-left: 70px;
    text-align: left;
}

.page-fishing-games__numbered-list li::before {
    content: counter(guide-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--fishing-games-gold-color);
    color: var(--fishing-games-bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__list-title {
    font-size: 1.4rem;
    color: var(--fishing-games-gold-color);
    margin-bottom: 10px;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: 80px 20px;
}

.page-fishing-games__bullet-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.page-fishing-games__bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fishing-games-gold-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Security Section */
.page-fishing-games__security-section {
    padding: 80px 20px;
}

.page-fishing-games__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__security-image {
    flex: 1 1 45%;
    min-width: 400px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-fishing-games__text-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-fishing-games__text-content .page-fishing-games__bullet-list li {
    margin-bottom: 15px;
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us-section {
    padding: 80px 20px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 20px;
}

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

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

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

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

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

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    pointer-events: none; /* Allow click on whole summary */
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    margin-left: 15px;
    color: var(--fishing-games-gold-color);
    pointer-events: none; /* Allow click on whole summary */
}

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

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

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    padding: 80px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 15px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    .page-fishing-games__hero-description {
        font-size: 1.1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

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

    .page-fishing-games__card-title {
        font-size: 1.3rem;
    }

    .page-fishing-games__security-image {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        min-height: 500px;
        padding-bottom: 40px;
    }

    .page-fishing-games__hero-content {
        max-width: 100%;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .page-fishing-games__hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

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

    .page-fishing-games__section {
        padding: 40px 15px;
    }

    .page-fishing-games__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

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

    .page-fishing-games__grid-layout {
        grid-template-columns: 1fr;
    }

    .page-fishing-games__card-image {
        height: 200px;
    }

    .page-fishing-games__numbered-list li,
    .page-fishing-games__bullet-list li {
        padding-left: 55px;
    }

    .page-fishing-games__numbered-list li::before {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .page-fishing-games__list-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .page-fishing-games__security-image {
        min-width: unset;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

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

    .page-fishing-games__faq-toggle {
        font-size: 1.5rem;
    }

    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    /* Image Responsive Override */
    .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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}