
        :root {
            --page-lost-bg-dark: #000000;
            --page-lost-text-light: #ffffff;
            --page-lost-accent-yellow: #FFD700;
            --page-lost-accent-orange: #FFA500;
            --page-lost-card-bg: #1a1a1a;
            --page-lost-border-color: #444444;
            --page-lost-button-gradient: linear-gradient(180deg, var(--page-lost-accent-yellow) 0%, var(--page-lost-accent-orange) 100%);
            --page-lost-glow: #FFD700;
            --header-offset: 122px; /* Default for fixed header */
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--page-lost-bg-dark);
            color: var(--page-lost-text-light);
            line-height: 1.6;
            margin: 0;
            padding-top: var(--header-offset); /* Handled by shared.css, but kept for clarity */
            overflow-x: hidden;
        }

        .page-lost {
            max-width: 100%;
            overflow-x: hidden;
        }

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

        .page-lost__hero-section {
            position: relative;
            padding: 10px 0 40px 0; /* Small top padding, body handles main offset */
            background-color: var(--page-lost-bg-dark);
            text-align: center;
            overflow: hidden;
        }

        .page-lost__hero-image-wrapper {
            width: 100%;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .page-lost__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
        }

        .page-lost__hero-content {
            padding: 0 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-lost__hero-title {
            font-size: clamp(2em, 5vw, 3em);
            font-weight: 700;
            color: var(--page-lost-accent-yellow);
            margin-bottom: 10px;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .page-lost__hero-description {
            font-size: clamp(1em, 2.5vw, 1.2em);
            color: var(--page-lost-text-light);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-lost__cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: var(--page-lost-button-gradient);
            color: var(--page-lost-bg-dark);
            font-weight: 700;
            font-size: 1.1em;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-lost__cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
            opacity: 0.9;
        }

        .page-lost__section {
            padding: 60px 0;
            background-color: var(--page-lost-bg-dark);
            text-align: center;
        }

        .page-lost__section-title {
            font-size: 2.2em;
            color: var(--page-lost-accent-yellow);
            margin-bottom: 40px;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }

        .page-lost__section-text {
            font-size: 1.1em;
            color: var(--page-lost-text-light);
            max-width: 900px;
            margin: 0 auto 30px auto;
        }

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

        .page-lost__game-card {
            background-color: var(--page-lost-card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            border: 1px solid var(--page-lost-border-color);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-lost__game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
        }

        .page-lost__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid var(--page-lost-border-color);
        }

        .page-lost__game-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .page-lost__game-title {
            font-size: 1.4em;
            color: var(--page-lost-accent-yellow);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .page-lost__game-description {
            font-size: 0.95em;
            color: var(--page-lost-text-light);
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-lost__game-button {
            display: inline-block;
            padding: 10px 20px;
            background: var(--page-lost-button-gradient);
            color: var(--page-lost-bg-dark);
            font-weight: 600;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9em;
            transition: background 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-lost__game-button:hover {
            background: var(--page-lost-accent-orange);
        }

        .page-lost__features-list {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 900px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .page-lost__feature-item {
            background-color: var(--page-lost-card-bg);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--page-lost-border-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .page-lost__feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Icon glow */
        }

        .page-lost__feature-title {
            font-size: 1.3em;
            color: var(--page-lost-accent-yellow);
            margin-bottom: 10px;
        }

        .page-lost__feature-description {
            color: var(--page-lost-text-light);
            font-size: 0.95em;
        }

        .page-lost__faq-section {
            padding: 60px 0;
            background-color: var(--page-lost-bg-dark);
        }

        .page-lost__faq-list {
            max-width: 900px;
            margin: 0 auto;
            padding: 0;
            list-style: none;
        }

        .page-lost__faq-item {
            background-color: var(--page-lost-card-bg);
            border: 1px solid var(--page-lost-border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .page-lost__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            font-size: 1.15em;
            font-weight: 600;
            color: var(--page-lost-accent-yellow);
            background-color: var(--page-lost-card-bg);
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
            user-select: none;
        }

        .page-lost__faq-question:hover {
            background-color: #2a2a2a;
        }

        .page-lost__faq-item.active .page-lost__faq-question {
            border-bottom-color: var(--page-lost-border-color);
        }

        .page-lost__faq-qtext,
        .page-lost__faq-toggle {
            pointer-events: none; /* Prevent text from blocking click */
        }

        .page-lost__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            margin-left: 15px;
            transition: transform 0.3s ease;
        }

        .page-lost__faq-item.active .page-lost__faq-toggle {
            transform: rotate(45deg);
        }

        .page-lost__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            color: var(--page-lost-text-light);
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            font-size: 1em;
        }

        .page-lost__faq-item.active .page-lost__faq-answer {
            max-height: 2000px !important; /* Sufficiently large */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-lost__provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .page-lost__provider-logo {
            background-color: var(--page-lost-card-bg);
            border-radius: 8px;
            padding: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80px;
            border: 1px solid var(--page-lost-border-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .page-lost__provider-logo img {
            max-width: 100%;
            max-height: 100%;
            height: auto; /* Ensure aspect ratio */
            display: block;
            filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.3)); /* White logo with yellow glow */
        }

        .page-lost__social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .page-lost__social-icon {
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease;
            filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.3)); /* White icon with yellow glow */
        }

        .page-lost__social-icon:hover {
            transform: translateY(-5px) scale(1.1);
        }

        .page-lost__floating-button {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--page-lost-button-gradient);
            color: var(--page-lost-bg-dark);
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1.1em;
            font-weight: 700;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
            z-index: 1000;
            animation: pulse 2s infinite;
            text-decoration: none;
            max-width: calc(100% - 40px); /* Ensure it doesn't overflow on small screens */
            box-sizing: border-box;
            text-align: center;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-lost__floating-button:hover {
            animation: none;
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
        }

        @keyframes pulse {
            0% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
            100% { transform: translateX(-50%) scale(1); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .page-lost__container {
                padding: 0 15px;
            }
            
            .page-lost__hero-section {
                padding: 10px 0 30px 0;
            }

            .page-lost__hero-title {
                font-size: 2em;
            }

            .page-lost__hero-description {
                font-size: 1em;
            }

            .page-lost__cta-button {
                padding: 12px 20px;
                font-size: 1em;
                width: 100% !important;
            }

            .page-lost__section {
                padding: 40px 0;
            }

            .page-lost__section-title {
                font-size: 1.8em;
            }

            .page-lost__section-text {
                font-size: 0.95em;
            }

            .page-lost__game-grid,
            .page-lost__features-list,
            .page-lost__provider-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .page-lost__game-card {
                width: 100%;
                margin: 0 auto;
            }

            .page-lost__faq-question {
                font-size: 1.05em;
                padding: 15px 20px;
            }

            .page-lost__faq-answer {
                padding: 15px 20px !important;
            }

            .page-lost__social-links {
                gap: 15px;
            }

            .page-lost__floating-button {
                padding: 10px 20px;
                font-size: 0.95em;
            }

            /* Ensure all images are responsive */
            .page-lost img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-lost__hero-image {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            /* Image/Video/Button containers responsiveness */
            .page-lost__hero-image-wrapper,
            .page-lost__section,
            .page-lost__game-grid,
            .page-lost__game-card,
            .page-lost__features-list,
            .page-lost__feature-item,
            .page-lost__faq-list,
            .page-lost__faq-item,
            .page-lost__provider-grid,
            .page-lost__provider-logo,
            .page-lost__social-links,
            .page-lost__floating-button {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow: hidden !important;
            }
            .page-lost__hero-content, .page-lost__section-text {
                padding-left: 15px;
                padding-right: 15px;
            }

            /* List items responsiveness */
            .page-lost__features-list li,
            .page-lost__faq-list li {
                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-lost__features-list,
            .page-lost__faq-list {
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

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

            .page-lost__floating-button {
                font-size: 0.9em;
                padding: 8px 15px;
            }
        }
    