/* style/fishing-games.css */

/* Base styles for the fishing games page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Body background is light */
}

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

.page-fishing-games__section {
    padding: 60px 0;
}

.page-fishing-games__dark-bg {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-fishing-games__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: inherit; /* Inherit color from parent section */
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-fishing-games__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: inherit;
    line-height: 1.3;
}

.page-fishing-games__paragraph {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
}

.page-fishing-games__subtitle {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    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: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-fishing-games__btn-primary:hover {
    background-color: #d16b00;
    border-color: #d16b00;
}

.page-fishing-games__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #e0f7fa;
    color: #1a7b9e;
    border-color: #1a7b9e;
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-fishing-games__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Intro Section */
.page-fishing-games__intro-section .page-fishing-games__section-title {
    color: #26A9E0;
}

.page-fishing-games__image-text-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-fishing-games__image-content {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: block;
}

.page-fishing-games__text-content {
    flex: 1;
    max-width: 50%;
}

.page-fishing-games__list {
    list-style: disc;
    padding-left: 25px;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-fishing-games__list-item {
    margin-bottom: 10px;
}

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

.page-fishing-games__feature-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

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

.page-fishing-games__feature-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 15px;
    color: #26A9E0;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    line-height: 1.5;
    padding: 0 15px;
}

/* How to Play Section */
.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__step-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-fishing-games__step-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

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

.page-fishing-games__tip-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-fishing-games__tip-description {
    font-size: 1em;
    line-height: 1.5;
}

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

.page-fishing-games__promotion-card {
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__promotion-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 15px;
    color: #ffffff;
}

.page-fishing-games__promotion-description {
    font-size: 1em;
    line-height: 1.5;
    padding: 0 15px;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* Support Section */
.page-fishing-games__support-section .page-fishing-games__paragraph {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    background-color: #eaf6fa;
    border-bottom: 1px solid #d0e8f2;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #d0e8f2;
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
    background-color: #d0e8f2;
    border-bottom: 1px solid #a7d9ed;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    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 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

/* Hide default details marker */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* Call to Action Bottom Section */
.page-fishing-games__cta-bottom-section .page-fishing-games__paragraph {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__image-text-block {
        flex-direction: column;
        align-items: center;
    }

    .page-fishing-games__image-content,
    .page-fishing-games__text-content {
        max-width: 100%;
        width: 100%;
    }
}

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

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

    .page-fishing-games__main-title {
        font-size: clamp(2em, 8vw, 2.8em);
    }

    .page-fishing-games__subtitle {
        font-size: 1.1em;
    }

    .page-fishing-games__section-title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-fishing-games__sub-title {
        font-size: 1.5em;
    }

    .page-fishing-games__paragraph,
    .page-fishing-games__list-item,
    .page-fishing-games__feature-description,
    .page-fishing-games__step-description,
    .page-fishing-games__tip-description,
    .page-fishing-games__promotion-description,
    .page-fishing-games__faq-answer p {
        font-size: 1em;
        text-align: left;
    }

    .page-fishing-games__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;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 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 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__feature-card,
    .page-fishing-games__promotion-card,
    .page-fishing-games__tip-card,
    .page-fishing-games__step-card,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

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

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

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 1.8em;
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        font-size: 1em;
        padding: 12px 20px;
    }
}