/* style/fishing-games.css */

/* --- General Styling for page-fishing-games scope --- */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #f9f9f9; /* Inherited from body, but good to define for scope */
}

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

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #0A4B2C; /* Deep Green for titles on light background */
    font-weight: bold;
}

.page-fishing-games__section-title--light {
    color: #F2FFF6; /* Text Main for titles on dark background */
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333333; /* Default for light background */
}

.page-fishing-games__text-block--light {
    color: #F2FFF6; /* Text Main for dark background */
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding for first section */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #08160F; /* Background color for hero section */
}

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

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

.page-fishing-games__hero-content {
    padding: 40px 20px;
    background-color: #f9f9f9; /* Light background for content over image */
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    margin-top: -80px; /* Overlap image slightly for visual effect */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1; /* Ensure content is above image */
    color: #333333;
}

.page-fishing-games__main-title {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555555;
}

/* --- CTA Buttons --- */
.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.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;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #2AD16F; /* Lighter Green for secondary text */
    border: 2px solid #2AD16F;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #2AD16F;
    color: #F2FFF6;
    transform: translateY(-2px);
}

.page-fishing-games__btn-inline {
    margin-top: 20px;
}

/* --- Benefits Section --- */
.page-fishing-games__benefits-section {
    background-color: #08160F; /* Background color */
    color: #F2FFF6; /* Text Main */
    padding-bottom: 80px;
}

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

.page-fishing-games__card {
    background-color: #ffffff; /* Default light card background for general sections */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    color: #333333; /* Default dark text for light card */
}

.page-fishing-games__dark-bg-card {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2AD16F; /* Lighter Green */
}

.page-fishing-games__dark-bg-card .page-fishing-games__card-title {
    color: #F2C14E; /* Gold for titles on dark cards */
}


.page-fishing-games__card-text {
    font-size: 1em;
    color: #555555;
}

.page-fishing-games__dark-bg-card .page-fishing-games__card-text {
    color: #A7D9B8; /* Text Secondary */
}

/* --- Popular Games Section --- */
.page-fishing-games__popular-games {
    background-color: #f9f9f9;
}

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

.page-fishing-games__game-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-fishing-games__game-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__game-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__game-description {
    font-size: 1em;
    color: #555555;
}

/* --- Guide Section --- */
.page-fishing-games__guide-section {
    background-color: #08160F; /* Background color */
    color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #F2C14E; /* Gold */
}

.page-fishing-games__step-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

/* --- Tips Section --- */
.page-fishing-games__tips-section {
    background-color: #f9f9f9;
}

.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__tips-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-fishing-games__tips-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__tips-description {
    font-size: 1em;
    color: #555555;
}

/* --- Security Section --- */
.page-fishing-games__security-section {
    background-color: #08160F; /* Background color */
    color: #F2FFF6; /* Text Main */
}

/* --- FAQ Section --- */
.page-fishing-games__faq-section {
    background-color: #f9f9f9;
}

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

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #0A4B2C; /* Deep Green */
    cursor: pointer;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: #e6e6e6;
}

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #22C768; /* Auxiliary color */
}

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

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #555555;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

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

/* For details/summary, hide default marker */
.page-fishing-games__faq-item summary {
    list-style: none;
}
.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none;
}

/* --- Conclusion Section --- */
.page-fishing-games__conclusion-section {
    background-color: #08160F; /* Background color */
    color: #F2FFF6; /* Text Main */
    padding-bottom: 80px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -60px;
    }
    .page-fishing-games__main-title {
        font-size: 2.2em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games__description {
        font-size: 1.1em;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-fishing-games__text-block {
        font-size: 1em;
        margin-bottom: 15px;
    }

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

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    .page-fishing-games__card,
    .page-fishing-games__game-item,
    .page-fishing-games__step-item,
    .page-fishing-games__tips-item,
    .page-fishing-games__faq-item {
        padding: 20px;
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .page-fishing-games__grid,
    .page-fishing-games__game-list,
    .page-fishing-games__tips-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.5em;
    }
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__description {
        font-size: 1em;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        font-size: 0.95em;
    }
}