/* style/fishing-games.css */

/* --- Base Styles --- */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: #08160F; /* Ensure background matches body for smooth transition */
}

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

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

.page-fishing-games__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -150px; /* Overlap slightly for visual flow, but text is below image in DOM */
    position: relative;
    z-index: 1; /* Ensure content is above any background elements */
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-fishing-games__description {
    font-size: 1.15em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 20px;
    width: 100%; /* Ensure container takes full width for responsive wrapping */
    max-width: 600px; /* Limit max width for button group */
    margin: 0 auto;
}

/* --- Buttons --- */
.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;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

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

.page-fishing-games__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

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

.page-fishing-games__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    transform: translateY(-2px);
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

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

/* --- Section Backgrounds --- */
.page-fishing-games__intro-section,
.page-fishing-games__game-types,
.page-fishing-games__strategy-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-final {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-fishing-games__why-choose-us,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG - using for alternate sections */
}

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

.page-fishing-games__light-bg {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main - adjusted for contrast on this background */
}

/* Adjustments for text on light-bg sections to ensure contrast */
.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg h3 {
    color: #F2FFF6; /* Keep light for readability */
}
.page-fishing-games__light-bg p,
.page-fishing-games__light-bg li,
.page-fishing-games__light-bg a {
    color: #A7D9B8; /* Text Secondary */
}
.page-fishing-games__light-bg a {
    text-decoration: underline;
    color: #57E38D; /* Glow for links */
}

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

.page-fishing-games__feature-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__feature-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

/* --- Advantage List --- */
.page-fishing-games__advantage-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__advantage-list li {
    background-color: rgba(46, 122, 78, 0.2); /* Divider with opacity */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #A7D9B8; /* Text Secondary */
    border-left: 5px solid #2AD16F;
}

.page-fishing-games__advantage-list li b {
    color: #F2FFF6; /* Text Main */
}

/* --- Game Grid & Promo Grid --- */
.page-fishing-games__game-grid,
.page-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__game-card,
.page-fishing-games__promo-card {
    background-color: #11271B; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__game-card img,
.page-fishing-games__promo-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__game-title,
.page-fishing-games__promo-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-fishing-games__game-card p,
.page-fishing-games__promo-card p {
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1; /* Ensure consistent height */
}

/* --- Guide Section --- */
.page-fishing-games__step-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__step-list li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-fishing-games__step-list li b {
    color: #F2FFF6; /* Text Main */
}

/* --- Strategy Section --- */
.page-fishing-games__strategy-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__strategy-list li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-fishing-games__strategy-list li b {
    color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2E7A4E; /* Border */
}

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

.page-fishing-games__faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    font-size: 1.1em;
    border-bottom: 1px solid transparent; /* No border by default */
}

.page-fishing-games__faq-question:hover {
    background-color: rgba(42, 209, 111, 0.1);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid #2E7A4E; /* Divider when open */
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F;
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

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

.page-fishing-games__faq-answer a {
    color: #57E38D; /* Glow for links */
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-fishing-games__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-fishing-games__hero-content {
        padding: 30px 15px;
        margin-top: -100px; /* Adjust overlap for mobile */
    }

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

    .page-fishing-games__description {
        font-size: 1em;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        padding: 0 15px; /* Add padding to container for buttons */
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-fishing-games__intro-section,
    .page-fishing-games__why-choose-us,
    .page-fishing-games__game-types,
    .page-fishing-games__guide-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final {
        padding: 40px 0;
    }

    .page-fishing-games__container {
        padding: 0 15px;
    }

    /* Images responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    /* Video responsiveness - if any */
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-fishing-games__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}