
        :root {
            --primary-color: #113B7A;
            --secondary-color: #1D5FD1;
            --glow-color: #4FA8FF;
            --gold-color: #F2C14E;
            --border-color: #244D84;
            --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
            --card-bg: #10233F;
            --divider-color: #1B3357;
            --deep-navy: #08162B;
            --text-main: #F3F8FF;
            --text-secondary: #AFC4E8;
            --dark-background-color: #08162B;
            --light-text-color: #F3F8FF;
            --dark-text-color: #333333;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark-background-color); /* Body background from shared.css, assuming dark */
            color: var(--light-text-color); /* Text color for dark background */
            line-height: 1.6;
        }

        .page-fishing-games {
            color: var(--light-text-color);
            background-color: var(--deep-navy);
            padding: 0;
            margin: 0;
        }

        .page-fishing-games__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-fishing-games__section--dark {
            background-color: var(--card-bg);
        }

        .page-fishing-games__hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            padding-top: 10px; /* Small decorative top padding, main offset from body */
            background-color: var(--deep-navy);
            overflow: hidden;
        }

        .page-fishing-games__hero-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .page-fishing-games__hero-image {
            width: 100%;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .page-fishing-games__hero-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 2px solid var(--border-color);
        }

        .page-fishing-games__hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 800px;
            margin-top: -80px; /* Adjust to slightly overlap the image for visual flow */
            padding: 20px;
            background: linear-gradient(180deg, rgba(16, 35, 63, 0.8) 0%, rgba(8, 22, 43, 0.9) 100%);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .page-fishing-games__hero-content h1 {
            font-size: clamp(2em, 4vw, 3.5em);
            color: var(--gold-color);
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 0.05em;
            text-shadow: 0 0 10px var(--glow-color);
        }

        .page-fishing-games__hero-content p {
            font-size: 1.1em;
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-fishing-games__cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--button-gradient);
            color: var(--light-text-color);
            text-decoration: none;
            border-radius: 30px;
            font-size: 1.2em;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .page-fishing-games__cta-button:hover {
            background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .page-fishing-games__title {
            font-size: 2.5em;
            color: var(--gold-color);
            margin-bottom: 30px;
            font-weight: 700;
            text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
        }

        .page-fishing-games__subtitle {
            font-size: 1.5em;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

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

        .page-fishing-games__card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-align: left;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: var(--text-main);
            position: relative;
            overflow: hidden;
        }

        .page-fishing-games__card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .page-fishing-games__card-icon {
            font-size: 3em;
            color: var(--gold-color);
            margin-bottom: 20px;
        }

        .page-fishing-games__card h3 {
            font-size: 1.8em;
            color: var(--gold-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-fishing-games__card p {
            font-size: 1em;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .page-fishing-games__card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
        }

        .page-fishing-games__button-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }

        .page-fishing-games__btn-secondary {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--gold-color);
            border: 2px solid var(--gold-color);
            text-decoration: none;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .page-fishing-games__btn-secondary:hover {
            background: var(--gold-color);
            color: var(--deep-navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

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

        .page-fishing-games__game-item {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

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

        .page-fishing-games__game-thumbnail {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid var(--divider-color);
        }

        .page-fishing-games__game-content {
            padding: 20px;
            text-align: left;
        }

        .page-fishing-games__game-content h4 {
            font-size: 1.4em;
            color: var(--gold-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-fishing-games__game-content p {
            font-size: 0.95em;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        .page-fishing-games__link {
            color: var(--glow-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .page-fishing-games__link:hover {
            color: var(--gold-color);
            text-decoration: underline;
        }

        /* FAQ Section */
        .page-fishing-games__faq-section {
            background-color: var(--deep-navy);
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

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

        details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: background-color 0.3s ease;
            font-size: 1.1em;
            font-weight: 600;
            color: var(--gold-color);
        }

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

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

        .page-fishing-games__faq-qtext {
            flex: 1;
            text-align: left;
        }

        .page-fishing-games__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: var(--glow-color);
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }

        details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
            padding: 0 25px 25px;
            background: var(--deep-navy);
            border-radius: 0 0 8px 8px;
            text-align: left;
            color: var(--text-secondary);
        }

        .page-fishing-games__faq-answer p {
            margin: 0;
            font-size: 1em;
        }

        /* General text styles */
        .page-fishing-games p {
            color: var(--text-secondary);
            margin-bottom: 1em;
            font-size: 1em;
        }

        .page-fishing-games h2 {
            font-size: 2.2em;
            color: var(--gold-color);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .page-fishing-games h3 {
            font-size: 1.8em;
            color: var(--glow-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .page-fishing-games ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }

        .page-fishing-games ul li {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            margin-bottom: 10px;
            padding: 15px 20px;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            color: var(--text-main);
            font-size: 1em;
        }

        .page-fishing-games ul li::before {
            content: '✅';
            margin-right: 15px;
            color: var(--gold-color);
            font-size: 1.2em;
            line-height: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-fishing-games__hero-content {
                margin-top: -60px;
                padding: 15px;
            }
            .page-fishing-games__hero-content h1 {
                font-size: clamp(1.8em, 3.5vw, 3em);
            }
            .page-fishing-games__hero-content p {
                font-size: 1em;
            }
            .page-fishing-games__cta-button {
                padding: 12px 30px;
                font-size: 1.1em;
            }
            .page-fishing-games__section {
                padding: 40px 15px;
            }
            .page-fishing-games__title {
                font-size: 2em;
            }
            .page-fishing-games__subtitle {
                font-size: 1.3em;
            }
            .page-fishing-games__card h3 {
                font-size: 1.6em;
            }
            .page-fishing-games__game-thumbnail {
                height: 180px;
            }
        }

        @media (max-width: 768px) {
            .page-fishing-games__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-fishing-games__hero-image img {
                border-radius: 8px;
            }
            .page-fishing-games__hero-content {
                margin-top: -40px;
                padding: 15px;
            }
            .page-fishing-games__hero-content h1 {
                font-size: clamp(1.5em, 5vw, 2.5em);
                margin-bottom: 10px;
            }
            .page-fishing-games__hero-content p {
                font-size: 0.9em;
                margin-bottom: 20px;
            }
            .page-fishing-games__cta-button {
                padding: 10px 25px;
                font-size: 1em;
                margin-top: 15px;
            }
            .page-fishing-games__section {
                padding: 30px 15px;
            }
            .page-fishing-games__title {
                font-size: 1.8em;
                margin-bottom: 20px;
            }
            .page-fishing-games__subtitle {
                font-size: 1.1em;
                margin-bottom: 30px;
            }
            .page-fishing-games__grid, .page-fishing-games__game-list {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 30px;
            }
            .page-fishing-games__card {
                padding: 20px;
            }
            .page-fishing-games__card h3 {
                font-size: 1.4em;
            }
            .page-fishing-games__game-thumbnail {
                height: 160px;
            }
            .page-fishing-games__faq-section {
                padding: 30px 15px;
            }
            details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
                padding: 15px 20px;
                font-size: 1em;
            }
            .page-fishing-games__faq-answer {
                padding: 0 20px 20px;
            }
            .page-fishing-games__faq-answer p {
                font-size: 0.9em;
            }
            .page-fishing-games ul li {
                padding: 12px 15px;
                font-size: 0.95em;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
            .page-fishing-games ul li::before {
                margin-right: 10px;
            }
            .page-fishing-games__cta-button,
            .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__button-group {
                flex-direction: column;
                gap: 15px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-fishing-games img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !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;
            }
        }
    