
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

        :root {
            --bg-black: #ffffff;
            --bg-panel: #f9fafb;
            --bg-hover: #f3f4f6;
            --accent-green: #000000;
            --accent-green-glow: rgba(0, 0, 0, 0.1);
            --accent-gold: #d4af37;
            --accent-gold-glow: rgba(212, 175, 55, 0.2);
            --text-main: #000000;
            --text-muted: #4b5563;
            --border-color: #000000;
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-black);
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            background-position: center;
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Top Banner */
        .top-banner {
            background: #ffffff;
            color: #10b981;
            font-weight: bold;
            text-align: center;
            padding: 8px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            border-bottom: 1px solid;
            border-image: linear-gradient(90deg, transparent, #10b981, transparent) 1;
            position: relative;
            z-index: 1001;
        }

        /* Top Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #000000;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: #000000;
            text-decoration: none;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .nav-logo-text:hover {
            color: var(--accent-gold);
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-link {
            font-family: 'Orbitron', sans-serif;
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #000000;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-search-input {
            background: #ffffff;
            border: 1px solid #000000;
            color: #000000;
            padding: 8px 15px;
            font-size: 0.75rem;
            border-radius: 4px;
            font-family: 'Orbitron', sans-serif;
            outline: none;
            width: 150px;
            transition: all 0.3s ease;
        }

        .nav-search-input:focus {
            width: 200px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        /* Main Container */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px;
            flex: 1;
            width: 100%;
        }

        /* Centered Hero Splash */
        .hero {
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-bottom: 1px solid #000000;
            margin-bottom: 60px;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.03) 40%, transparent 70%);
            filter: blur(50px);
            z-index: -1;
            pointer-events: none;
            animation: pulseGlow 8s infinite alternate;
        }

        @keyframes pulseGlow {
            0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
            100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
        }

        .splash-graphic {
            width: 100%;
            max-width: 800px;
            height: auto;
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1), 0 0 40px rgba(212, 175, 55, 0.2);
            animation: float 8s ease-in-out infinite;
            z-index: 2;
            position: relative;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            color: #000000;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        
        .hero h1 span {
            background: linear-gradient(90deg, #000000, #4b5563);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            color: #374151;
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 850px;
            margin-bottom: 40px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            padding: 35px 50px;
            border-radius: 20px;
            border: 1px solid #000000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(0,0,0,0.02);
            position: relative;
        }

        .highlight {
            font-weight: 800;
            color: #10b981;
        }

        /* Vision Section */
        .vision {
            max-width: 900px;
            margin: 0 auto 80px auto;
            padding: 50px;
            background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(240,240,240,0.8) 100%);
            border: 1px solid #000000;
            border-left: 3px solid var(--accent-gold);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: relative;
        }
        
        .vision h2 {
            font-family: 'Orbitron', sans-serif;
            color: var(--accent-gold);
            font-size: 1.5rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        
        .vision p {
            color: #4b5563;
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .vision p strong {
            color: #000000;
            font-weight: 600;
        }

        .promise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(255,255,255,0.5);
            border-radius: 8px;
            border: 1px solid #000000;
        }

        .promise-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1f2937;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .promise-item i {
            color: #000000;
            font-style: normal;
            font-size: 1.2rem;
            text-shadow: 0 0 10px var(--accent-green-glow);
        }
        
        .vision-signoff {
            margin-top: 50px;
            text-align: right;
            border-top: 1px solid #000000;
            padding-top: 30px;
        }
        
        .vision-quote {
            font-family: 'Orbitron', sans-serif;
            color: #10b981;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .vision-author {
            color: #6b7280;
            font-size: 1rem;
            font-style: italic;
        }

        /* Main Search Bar */
        .search-wrapper {
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .search-input-main {
            width: 100%;
            background: #ffffff;
            border: 2px solid #000000;
            color: #000000;
            padding: 15px 25px;
            font-size: 1.1rem;
            border-radius: 8px;
            font-family: 'Orbitron', sans-serif;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .search-input-main:focus {
            outline: none;
            border-color: #10b981;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
        }

        /* Masonry Grid Layout */
        .grid {
            column-count: 3;
            column-gap: 30px;
        }

        @media (max-width: 1000px) { .grid { column-count: 2; } }
        @media (max-width: 600px) { .grid { column-count: 1; } }

        /* Game Tile */
        .tile {
            background: var(--bg-panel);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            break-inside: avoid;
            margin-bottom: 30px;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .tile:hover {
            border-color: var(--accent-gold);
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1), 0 0 20px var(--accent-gold-glow);
            background: #ffffff;
        }

        .tile-icon {
            font-size: 70px;
            margin-bottom: 10px;
            transition: all 0.4s ease;
            filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
        }

        .tile:hover .tile-icon {
            transform: scale(1.1) translateY(-10px);
            opacity: 0; 
        }

        .tile-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .tile:hover .tile-title {
            transform: translateY(-10px);
            opacity: 0; 
        }

        /* Hover Overlay Details */
        .tile-details {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 30px 25px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
        }

        .tile:hover .tile-details {
            opacity: 1;
        }

        .tile-hover-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-align: center;
            margin-bottom: 10px;
        }

        .tile-meta-container {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            flex: 1;
        }

        .tile-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #000000;
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding-bottom: 10px;
        }

        .tile-desc {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.5;
            margin-bottom: 20px;
            text-align: center;
        }

        .play-btn {
            background: transparent;
            color: #000000;
            border: 1px solid #000000;
            padding: 12px;
            text-align: center;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            background: #000000;
            color: #ffffff;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
        }

        .no-results {
            column-span: all;
            text-align: center;
            padding: 60px;
            font-size: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            color: #a3a3a3;
            display: none;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: #a3a3a3;
        }

        .slogan {
            color: #10b981;
            font-weight: bold;
        }
            /* Mobile Responsiveness */
        @media (max-width: 768px) {
            html, body {
                max-width: 100vw;
                overflow-x: hidden;
            }
            nav {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }
            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h1 {
                font-size: 1.2rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }
            .hero {
                padding: 40px 10px;
                margin-bottom: 30px;
            }
            .container {
                padding: 20px 15px;
            }
            .splash-graphic {
                width: 100%;
                max-width: 100%;
            }
            .hero-desc {
                font-size: 1rem;
                padding: 20px 25px;
            }
            .search-input-main {
                padding: 12px 15px;
                font-size: 1rem;
            }
            .vision {
                padding: 30px 20px;
            }
            .promise-grid {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .grid {
                column-count: 1;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .grid {
                column-count: 2;
            }
        }
