/* style/fishing-games.css */\n\n/* Base styles for the page content, ensuring light text on dark body background */\n.page-fishing-games {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    color: #ffffff; /* Light text for dark body background */\n    background-color: transparent; /* Body background from shared.css */\n    padding-bottom: 60px; /* Add some padding at the bottom */\n}\n\n/* Hero Section */\n.page-fishing-games__hero-section {\n    position: relative;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    justify-content: center;\n    text-align: center;\n    padding: 80px 20px;\n    background-color: #017439; /* Use primary color for hero background */\n    color: #ffffff; /* Ensure text is white on primary background */\n    padding-top: var(--header-offset, 120px); /* Fixed header spacing */\n    overflow: hidden; /* Ensure content doesn't overflow */\n}\n\n.page-fishing-games__hero-content {\n    max-width: 900px;\n    z-index: 10;\n    margin-bottom: 40px;\n}\n\n.page-fishing-games__hero-title {\n    font-size: 3.2em;\n    margin-bottom: 20px;\n    color: #FFFF00; /* Use specific yellow for titles as per \"Register and Login font: #FFFF00\" might imply this is a highlight color for important text */\n    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);\n}\n\n.page-fishing-games__hero-description {\n    font-size: 1.3em;\n    margin-bottom: 30px;\n    color: #ffffff;\n}\n\n.page-fishing-games__hero-cta-buttons {\n    display: flex;\n    gap: 20px;\n    justify-content: center;\n    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */\n}\n\n.page-fishing-games__hero-image-wrapper {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    overflow: hidden;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    opacity: 0.3; /* Subtle background image */\n}\n\n.page-fishing-games__hero-image {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    min-width: 200px; /* Min size constraint */\n    min-height: 200px; /* Min size constraint */\n}\n\n/* General Section Styling */\n.page-fishing-games__section-title {\n    font-size: 2.5em;\n    text-align: center;\n    margin-bottom: 40px;\n    color: #FFFF00; /* Highlight titles */\n    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);\n}\n\n.page-fishing-games__container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 40px 20px;\n    box-sizing: border-box;\n}\n\n.page-fishing-games__text-block {\n    font-size: 1.1em;\n    margin-bottom: 20px;\n    text-align: justify;\n    color: #ffffff; /* Default light text */\n}\n\n.page-fishing-games__text-block--center {\n    text-align: center;\n}\n\n/* Buttons */\n.page-fishing-games__btn-primary {\n    display: inline-block;\n    padding: 15px 30px;\n    background-color: #C30808; /* Register/Login button color */\n    color: #FFFF00; /* Register/Login font color */\n    text-decoration: none;\n    border-radius: 8px;\n    font-weight: bold;\n    transition: background-color 0.3s ease, transform 0.3s ease;\n    border: none;\n    cursor: pointer;\n    font-size: 1.1em;\n}\n\n.page-fishing-games__btn-primary:hover {\n    background-color: #e02020;\n    transform: translateY(-2px);\n}\n\n.page-fishing-games__btn-secondary {\n    display: inline-block;\n    padding: 15px 30px;\n    background-color: transparent;\n    color: #ffffff;\n    text-decoration: none;\n    border: 2px solid #ffffff;\n    border-radius: 8px;\n    font-weight: bold;\n    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;\n    cursor: pointer;\n    font-size: 1.1em;\n}\n\n.page-fishing-games__btn-secondary:hover {\n    background-color: #ffffff;\n    color: #017439;\n    transform: translateY(-2px);\n}\n\n/* Introduction Section */\n.page-fishing-games__introduction-section {\n    padding: 60px 0;\n}\n\n.page-fishing-games__dark-bg {\n    background-color: #1a1a2e; /* Inherit body background */\n    color: #ffffff; /* Ensure light text on dark background */\n}\n\n/* Features Section */\n.page-fishing-games__features-section {\n    padding: 60px 0;\n    background-color: #017439; /* Primary color background */\n    color: #ffffff;\n}\n\n.page-fishing-games__features-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n    gap: 30px;\n    margin-top: 40px;\n}\n\n.page-fishing-games__feature-card {\n    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card */\n    padding: 30px;\n    border-radius: 10px;\n    text-align: center;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n    transition: transform 0.3s ease;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n}\n\n.page-fishing-games__feature-card:hover {\n    transform: translateY(-5px);\n}\n\n.page-fishing-games__feature-icon {\n    width: 100%;\n    max-width: 250px; /* Card image size */\n    height: auto;\n    border-radius: 8px;\n    margin-bottom: 20px;\n    object-fit: cover;\n    min-width: 200px; /* Min size constraint */\n    min-height: 200px; /* Min size constraint */\n}\n\n.page-fishing-games__feature-title {\n    font-size: 1.5em;\n    margin-bottom: 15px;\n    color: #FFFF00; /* Highlight feature titles */\n}\n\n.page-fishing-games__feature-description {\n    font-size: 1em;\n    color: #ffffff;\n}\n\n/* How to Play Section */\n.page-fishing-games__how-to-play-section {\n    padding: 60px 0;\n}\n\n.page-fishing-games__how-to-play-list {\n    list-style: none;\n    padding: 0;\n    margin-top: 40px;\n}\n\n.page-fishing-games__list-item {\n    background-color: rgba(255, 255, 255, 0.05); /* Lighter background for list items */\n    padding: 25px;\n    margin-bottom: 20px;\n    border-radius: 8px;\n    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n    color: #ffffff;\n}\n\n.page-fishing-games__list-title {\n    font-size: 1.4em;\n    margin-bottom: 10px;\n    color: #FFFF00; /* Highlight list titles */\n}\n\n.page-fishing-games__list-description {\n    font-size: 1em;\n    margin-bottom: 15px;\n}\n\n.page-fishing-games__list-button {\n    margin-top: 10px;\n}\n\n/* Strategies Section */\n.page-fishing-games__strategies-section {\n    padding: 60px 0;\n    background-color: #017439; /* Primary color background */\n    color: #ffffff;\n}\n\n.page-fishing-games__strategy-cards-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n    gap: 30px;\n    margin-top: 40px;\n}\n\n.page-fishing-games__strategy-card {\n    background-color: rgba(255, 255, 255, 0.1);\n    padding: 30px;\n    border-radius: 10px;\n    text-align: center;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n    transition: transform 0.3s ease;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n}\n\n.page-fishing-games__strategy-card:hover {\n    transform: translateY(-5px);\n}\n\n.page-fishing-games__strategy-image {\n    width: 100%;\n    max-width: 250px; /* Card image size */\n    height: auto;\n    border-radius: 8px;\n    margin-bottom: 20px;\n    object-fit: cover;\n    min-width: 200px; /* Min size constraint */\n    min-height: 200px; /* Min size constraint */\n}\n\n.page-fishing-games__card-title {\n    font-size: 1.5em;\n    margin-bottom: 15px;\n    color: #FFFF00; /* Highlight card titles */\n}\n\n.page-fishing-games__card-description {\n    font-size: 1em;\n    color: #ffffff;\n}\n\n.page-fishing-games__cta-buttons--center {\n    text-align: center;\n    margin-top: 40px;\n}\n\n/* Promotions Section */\n.page-fishing-games__promotions-section {\n    padding: 60px 0;\n}\n\n.page-fishing-games__promotions-list {\n    list-style: none;\n    padding: 0;\n    margin-top: 40px;\n}\n\n/* Why Choose Section */\n.page-fishing-games__why-choose-section {\n    padding: 60px 0;\n    background-color: #017439; /* Primary color background */\n    color: #ffffff;\n}\n\n.page-fishing-games__advantages-list {\n    list-style: none;\n    padding: 0;\n    margin-top: 40px;\n}\n\n/* FAQ Section */\n.page-fishing-games__faq-section {\n    padding: 60px 0;\n}\n\n.page-fishing-games__faq-list {\n    max-width: 800px;\n    margin: 40px auto 0 auto;\n}\n\n.page-fishing-games__faq-item {\n    background-color: rgba(255, 255, 255, 0.05);\n    border-radius: 8px;\n    margin-bottom: 15px;\n    overflow: hidden;\n    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n}\n\n.page-fishing-games__faq-question {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    padding: 20px 25px;\n    cursor: pointer;\n    background-color: rgba(255, 255, 255, 0.1);\n    transition: background-color 0.3s ease;\n}\n\n.page-fishing-games__faq-question:hover {\n    background-color: rgba(255, 255, 255, 0.15);\n}\n\n.page-fishing-games__faq-title {\n    font-size: 1.3em;\n    color: #FFFF00; /* Highlight FAQ titles */\n    margin: 0;\n}\n\n.page-fishing-games__faq-toggle {\n    font-size: 1.8em;\n    font-weight: bold;\n    color: #FFFF00;\n    transition: transform 0.3s ease;\n}\n\n.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {\n    transform: rotate(45deg); /* Plus to X (or rotate to minus) */\n}\n\n.page-fishing-games__faq-answer {\n    max-height: 0;\n    overflow: hidden;\n    padding: 0 25px;\n    transition: max-height 0.3s ease, padding 0.3s ease;\n    color: #ffffff;\n}\n\n.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {\n    max-height: 1000px !important; /* Sufficiently large value */\n    padding: 20px 25px;\n}\n\n.page-fishing-games__faq-answer p {\n    margin: 0;\n    font-size: 1em;\n}\n\n/* Video Section */\n.page-fishing-games__video-section {\n    padding: 60px 0;\n    background-color: #1a1a2e; /* Inherit body background */\n    color: #ffffff;\n}