        :root {
            --spacing-xs: 4px;
            --spacing-sm: 8px;
            --spacing-md: 16px;
            --spacing-lg: 24px;
            --spacing-xl: 48px;
            --border-radius-soft: 16px;
            --border-radius-round: 20px;
            --border-radius-pill: 50px;
            --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
            --primary-text-color: #f5f5f7;
            --secondary-text-color: rgba(245, 245, 247, 0.8);
            --muted-text-color: rgba(245, 245, 247, 0.6);
            --border-color-subtle: rgba(255, 255, 255, 0.08);
            --background-color-page: #000000;
            --glass-base-bg: rgba(0, 0, 0, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --button-primary-bg: #f5f5f7;
            --button-primary-text: #1d1d1f;
            --button-primary-hover-bg: #ffffff;
            --accent-color: #ffffff;
            --accent-secondary: #b1b1b1;
            --gradient-start: rgba(0, 0, 0, 0);
            --gradient-middle: rgba(0, 0, 0, 0.3);
            --gradient-end: rgba(0, 0, 0, 0.9);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        html::-webkit-scrollbar,
        body::-webkit-scrollbar {
            display: none;
        }

        html {
            background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            position: relative;
            background-attachment: fixed;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
            color: var(--primary-text-color);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            transition: all 0.4s var(--ease-apple);
        }

        body.overlay-open {
            overflow: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(to right, var(--border-color-subtle) 1px, transparent 1px),
                linear-gradient(to bottom, var(--border-color-subtle) 1px, transparent 1px);
            background-size: 80px 80px;
            background-position: 0 0;
            opacity: 0.6;
            z-index: 0;
            pointer-events: none;
        }

        .liquid-orbs {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .liquid-orbs>div {
            position: absolute;
            background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
            border-radius: 50%;
            opacity: 0.15;
            filter: blur(120px);
            animation: liquidFloat 20s infinite ease-in-out;
        }

        .liquid-orbs>div:nth-child(1) {
            width: 400px;
            height: 400px;
            top: -10%;
            left: -5%;
            animation-duration: 25s;
        }

        .liquid-orbs>div:nth-child(2) {
            width: 300px;
            height: 300px;
            top: 50%;
            right: -5%;
            animation-duration: 30s;
            animation-delay: -8s;
        }

        .liquid-orbs>div:nth-child(3) {
            width: 350px;
            height: 350px;
            bottom: -10%;
            left: 30%;
            animation-duration: 35s;
            animation-delay: -15s;
        }

        @keyframes liquidFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }

            25% {
                transform: translate(100px, -150px) scale(1.2) rotate(90deg);
            }

            50% {
                transform: translate(-80px, -100px) scale(0.8) rotate(180deg);
            }

            75% {
                transform: translate(150px, 50px) scale(1.1) rotate(270deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes glowPulse {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(145, 145, 145, 0.3);
            }

            50% {
                box-shadow: 0 0 40px rgba(145, 145, 145, 0.5);
            }
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
            position: relative;
            z-index: 2;
        }

        .interactive-border {
            position: relative;
            background: var(--glass-base-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            transition: all 0.4s var(--ease-apple);
            transform-style: preserve-3d;
        }

        .interactive-border::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            pointer-events: none;
            border: 1px solid transparent;
            background: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), var(--accent-color), transparent 40%) border-box;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            opacity: var(--opacity, 0);
            transition: opacity 0.3s ease-out;
        }

        .interactive-border:hover {
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        #landing {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 2rem;
            width: 100%;
        }

        #landing .header-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 70vh;
            background-size: cover;
            background-position: center 25%;
            opacity: 0.2;
            mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
            -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
            z-index: -1;
            transition: all 1s var(--ease-apple);
        }

        #landing h1 {
            font-size: 150px;
            letter-spacing: -0.02em;
            line-height: 0.9;
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 50%, #e5e5e7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1.2s 0.2s var(--ease-apple) both;
            margin: 0;
        }

        #landing p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--secondary-text-color);
            margin-top: var(--spacing-lg);
            max-width: 600px;
            animation: fadeInUp 1.2s 0.4s var(--ease-apple) both;
            font-weight: 400;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-mouse {
            width: 1.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 0.25rem;
            margin-bottom: 40px;
        }

        .scroll-dot {
            width: 0.375rem;
            height: 0.375rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            animation: pulse 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            53%,
            80%,
            100% {
                transform: translateY(0);
            }

            40%,
            43% {
                transform: translateY(-20px);
            }

            70% {
                transform: translateY(-10px);
            }
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: 0.6;
                transform: translateY(0);
            }

            50% {
                opacity: 1;
                transform: translateY(8px);
            }
        }

        .floating-navbar {
            position: fixed;
            top: var(--spacing-lg);
            left: 50%;
            transform: translate(-50%, -150%);
            width: 95%;
            max-width: 960px;
            z-index: 1001;
            padding: var(--spacing-sm) var(--spacing-md);
            background: rgba(3, 3, 3, 0.24);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: var(--border-radius-pill);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: opacity 0.5s var(--ease-apple), transform 0.5s var(--ease-apple);
            opacity: 0;
            visibility: hidden;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .floating-navbar.visible {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
            text-decoration: none;
            color: var(--primary-text-color);
            padding: 8px 12px;
            border-radius: var(--border-radius-pill);
            transition: all 0.3s var(--ease-apple);
            font-weight: 500;
        }

        .navbar-brand:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .navbar-logo {
            height: 28px;
            width: 28px;
            transition: transform 0.3s var(--ease-apple);
            border-radius: 100%;
        }

        .navbar-brand:hover .navbar-logo {
            transform: rotate(360deg);
        }

        .brand-text {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            text-decoration: none;
            color: var(--secondary-text-color);
            padding: 10px 18px;
            border-radius: var(--border-radius-pill);
            transition: all 0.3s var(--ease-apple);
            font-weight: 500;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--primary-text-color);
            transform: translateY(-2px);
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1002;
            padding: 10px;
            width: 44px;
            height: 44px;
        }

        .hamburger-icon {
            position: relative;
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--primary-text-color);
            transition: all 0.3s var(--ease-apple);
            margin: auto;
        }

        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-text-color);
            transition: all 0.3s var(--ease-apple);
        }

        .hamburger-icon::before {
            top: -8px;
        }

        .hamburger-icon::after {
            bottom: -8px;
        }

        .floating-navbar.nav-open .hamburger-icon {
            background-color: transparent;
        }

        .floating-navbar.nav-open .hamburger-icon::before {
            transform: translateY(8px) rotate(45deg);
        }

        .floating-navbar.nav-open .hamburger-icon::after {
            transform: translateY(-8px) rotate(-45deg);
        }

        .main-content {
            padding: var(--spacing-xl) 0;
            position: relative;
            z-index: 2;
        }

        .content-row-wrapper {
            margin-bottom: var(--spacing-xl);
            animation: slideInScale 0.8s var(--ease-apple) both;
        }

        .content-row-wrapper:nth-child(2) {
            animation-delay: 0.1s;
        }

        .content-row-wrapper:nth-child(3) {
            animation-delay: 0.2s;
        }

        .content-row-wrapper:nth-child(4) {
            animation-delay: 0.3s;
        }

        .content-row-wrapper:nth-child(5) {
            animation-delay: 0.4s;
        }

        .content-row-header {
            margin-bottom: var(--spacing-lg);
        }

        .content-row-header h3 {
            font-size: clamp(1.8rem, 4vw, 2.2rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-text-color) 0%, var(--secondary-text-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .search-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: var(--spacing-lg);
        }

        .content-card {
            border-radius: calc(var(--border-radius-round) * 0.8);
            overflow: hidden;
            aspect-ratio: 16/9;
            position: relative;
            transform-style: preserve-3d;
            transition: all 0.32s var(--ease-apple);
        }

        .content-card:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .card-link {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
            cursor: pointer;
            border-radius: inherit;
            overflow: hidden;
        }

        .content-card-poster {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s var(--ease-apple);
            filter: brightness(0.8) contrast(1.1);
        }

        .card-link:hover .content-card-poster {
            transform: scale(1.1);
            filter: brightness(1) contrast(1.2);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.9) 0%,
                    rgba(0, 0, 0, 0.6) 40%,
                    rgba(0, 0, 0, 0.2) 70%,
                    transparent 100%);
            opacity: 0;
            transition: all 0.4s var(--ease-apple);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: var(--spacing-lg);
        }

        .card-link:hover .card-overlay {
            opacity: 1;
            backdrop-filter: blur(2px);
        }

        .card-overlay-content {
            transform: translateY(30px);
            transition: all 0.4s var(--ease-apple);
            margin-bottom: 20px;
        }

        .card-actions {
            display: flex;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-md);
        }

        .action-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--primary-text-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s var(--ease-bounce);
            font-size: 1rem;
        }

        .action-btn:hover {
            background: var(--button-primary-bg);
            color: var(--button-primary-text);
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .action-btn:active {
            transform: scale(0.95);
        }

        .content-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-xs);
            line-height: 1.3;
        }

        .content-card-meta {
            font-size: 0.95rem;
            color: var(--secondary-text-color);
            font-weight: 500;
        }

        #details-overlay {
            position: fixed;
            inset: 0;
            z-index: 10002;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.4s var(--ease-apple);
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
        }

        #details-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        .details-overlay-pane {
            width: 100%;
            max-width: 1400px;
            border-radius: var(--border-radius-round);
            max-height: 90vh;
            box-shadow:
                0 50px 100px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: translateY(60px) scale(0.9);
            opacity: 0;
            transition: all 0.5s var(--ease-apple);
            background-color: #0d0d0d;
        }

        #details-overlay.active .details-overlay-pane {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .details-overlay-scroll-container {
            height: 100%;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
            -webkit-overflow-scrolling: touch;
        }

        .details-overlay-scroll-container::-webkit-scrollbar {
            width: 6px;
        }

        .details-overlay-scroll-container::-webkit-scrollbar-track {
            background: transparent;
        }

        .details-overlay-scroll-container::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        .details-overlay-header-wrapper {
            position: relative;
            min-height: 40vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            overflow: hidden;
        }

        .details-overlay-background {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center 20%;
            z-index: 0;
            filter: brightness(0.7) contrast(1.2) saturate(1.1);
            transform: scale(1.1);
            transition: all 0.8s var(--ease-apple);
        }

        .details-overlay-background::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, #0d0d0d 0%, rgba(13, 13, 13, .8) 20%, transparent 100%);
            z-index: 1;
        }

        #details-overlay.active .details-overlay-background {
            transform: scale(1);
        }

        .details-overlay-header-content {
            position: relative;
            z-index: 2;
        }

        #details-overlay-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--accent-color);
            line-height: 1.1;
            text-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
            margin-bottom: var(--spacing-sm);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        #details-overlay-game-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: var(--spacing-lg);
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
        }

        .details-overlay-actions {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
        }

        .details-overlay-body-content {
            padding: 40px;
            background-color: #000000;
        }

        .details-overlay-body-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-text-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        #details-overlay-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--secondary-text-color);
            margin: 0;
        }

        .details-overlay-close {
            position: absolute;
            top: 24px;
            right: 24px;
            z-index: 10;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            color: var(--primary-text-color);
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s var(--ease-apple);
        }

        .details-overlay-close:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1) rotate(90deg);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .copy-loadstring-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-md);
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-text-color);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius-pill);
            cursor: pointer;
            transition: all 0.3s var(--ease-apple);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .copy-loadstring-btn:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .copy-loadstring-btn:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .copy-loadstring-btn.copied {
            color: white;
            animation: glowPulse 1s ease-in-out;
            border-color: transparent;
        }

        .copy-loadstring-btn i {
            transition: all 0.3s var(--ease-apple);
        }

        .copy-loadstring-btn.copied i {
            transform: scale(1.3);
        }

        #notification-container {
            position: fixed;
            top: calc(var(--spacing-lg) * 2 + 70px);
            right: var(--spacing-lg);
            z-index: 10006;
            width: auto;
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .notification {
            width: auto;
            background: var(--glass-base-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(25px) saturate(180%);
            border-radius: var(--border-radius-pill);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            padding: var(--spacing-lg);
            transform: translateX(120%) scale(0.9);
            opacity: 0;
            transition: all 0.5s var(--ease-bounce);
        }

        .notification.show {
            transform: translateX(0) scale(1);
            opacity: 1;
        }

        .notification-icon {
            font-size: 1.4rem;
            margin-right: var(--spacing-md);
            color: #34d399;
            animation: notificationPulse 0.5s ease-out;
        }

        @keyframes notificationPulse {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .notification-message {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5;
            color: var(--primary-text-color);
        }

        .footer {
            padding: var(--spacing-xl) 0;
            text-align: center;
            border-top: 1px solid var(--glass-border);
            background: rgba(12, 12, 12, 0.6);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            position: relative;
            z-index: 2;
        }

        .footer p {
            color: var(--muted-text-color);
            font-size: 0.95rem;
            margin-bottom: var(--spacing-lg);
            font-weight: 500;
        }

        .footer .social-links {
            display: flex;
            justify-content: center;
            gap: var(--spacing-lg);
        }

        .footer .social-links a {
            color: var(--muted-text-color);
            font-size: 1.5rem;
            transition: all 0.3s var(--ease-apple);
        }

        .footer .social-links a:hover {
            color: var(--primary-text-color);
            transform: scale(1.15) translateY(-2px);
        }

        @media (max-width: 768px) {
            :root {
                --spacing-lg: 16px;
                --spacing-xl: 32px;
            }

            .container {
                padding: 0 var(--spacing-md);
            }

            .main-content {
                margin-top: var(--spacing-xl);
            }

            .search-results-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
                justify-items: center;
            }

            .nav-toggle {
                display: block;
            }

            .nav-links-desktop {
                position: fixed;
                top: calc(-1 * (var(--spacing-lg) + 25px));
                left: calc(-50vw + 50%);
                width: 100vw;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(25px);
                -webkit-backdrop-filter: blur(25px);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: var(--spacing-xl);
                transform: translateX(100%);
                transition: transform 0.5s var(--ease-apple);
                z-index: 1001;
            }

            .floating-navbar.nav-open .nav-links-desktop {
                transform: translateX(0);
            }

            .floating-navbar .nav-links-desktop .nav-link {
                font-size: 1.5rem;
                padding: 1rem 2rem;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.4s ease, transform 0.4s ease;
            }

            .floating-navbar.nav-open .nav-links-desktop .nav-link {
                opacity: 1;
                transform: translateY(0);
            }

            .floating-navbar.nav-open .nav-links-desktop .nav-link:nth-child(1) {
                transition-delay: 0.2s;
            }

            .floating-navbar.nav-open .nav-links-desktop .nav-link:nth-child(2) {
                transition-delay: 0.3s;
            }

            .floating-navbar .nav-links-desktop .nav-link span {
                display: inline-block;
            }

            .floating-navbar .brand-text {
                display: none;
            }

            .floating-navbar {
                margin-top: 20px;
                max-width: 80%;
            }

            #landing {
                padding: 1rem;
            }

            #landing h1 {
                font-size: clamp(3.5rem, 18vw, 8rem);
            }

            #landing p {
                font-size: clamp(0.9rem, 3vw, 1.1rem);
                margin-top: var(--spacing-md);
                max-width: 90%;
            }

            .scroll-down-link {
                bottom: 30px;
            }

            .content-card {
                width: 90%;
            }

            .details-overlay-pane {
                width: 100vw;
                height: 100vh;
                max-height: 100vh;
                border-radius: 0;
                margin: 0;
            }

            .details-overlay-header-wrapper {
                min-height: 320px;
                padding: 24px;
            }

            .details-overlay-body-content {
                padding: 24px;
            }

            #details-overlay-title {
                font-size: clamp(2rem, 8vw, 2.5rem);
            }

            #details-overlay-game-name {
                font-size: 1.1rem;
            }

            .details-overlay-close {
                width: 44px;
                height: 44px;
                top: 16px;
                right: 16px;
                font-size: 1.1rem;
            }

            .copy-loadstring-btn {
                padding: 14px 22px;
                font-size: 1rem;
                gap: var(--spacing-md);
            }

            #notification-container {
                right: var(--spacing-md);
                left: var(--spacing-md);
                width: auto;
            }

            .notification {
                width: 100%;
                padding: var(--spacing-md);
            }

            .notification-message {
                font-size: 0.9rem;
            }

            .footer .social-links {
                gap: var(--spacing-md);
            }

            .footer .social-links a {
                font-size: 1.5rem;
            }

            .content-row-header h3 {
                font-size: 1.8rem;
            }

            .card-actions {
                gap: var(--spacing-sm);
            }

            .action-btn {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }

            .content-card-title {
                font-size: 1.1rem;
            }

            .content-card-meta {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            :root {
                --spacing-md: 12px;
                --spacing-lg: 12px;
                --spacing-xl: 24px;
            }

            #landing h1 {
                font-size: clamp(3rem, 20vw, 5rem);
            }

            #landing p {
                font-size: 0.9rem;
                max-width: 90%;
            }

            .content-row-header h3 {
                font-size: 1.5rem;
            }

            #notification-container {
                top: calc(var(--spacing-md) * 2 + 50px);
            }

            .details-overlay-header-wrapper {
                padding: 20px;
                min-height: 280px;
            }

            .details-overlay-body-content {
                padding: 20px;
            }

            #details-overlay-title {
                font-size: clamp(1.8rem, 7vw, 2.2rem);
            }

            .copy-loadstring-btn {
                width: 100%;
                justify-content: center;
            }

            .details-overlay-actions {
                flex-direction: column;
                width: 100%;
                gap: var(--spacing-sm);
            }
        }

        @media (min-width: 1400px) {
            .search-results-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }

            .container {
                max-width: 1600px;
            }
        }

        @media (hover: none) and (pointer: coarse) {

            .interactive-border:hover::before,
            .interactive-border:hover::after {
                opacity: 0;
            }

            .interactive-border:hover {
                box-shadow: none;
            }

            .card-link:hover .content-card-poster {
                transform: scale(1);
            }

            .card-overlay {
                opacity: 1;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
            }

            .card-overlay-content {
                transform: translateY(0);
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        @media (prefers-contrast: high) {
            :root {
                --primary-text-color: #ffffff;
                --secondary-text-color: #e0e0e0;
                --border-color-subtle: rgba(255, 255, 255, 0.3);
                --glass-base-bg: rgba(255, 255, 255, 0.1);
            }
        }