        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            background: #0a0a0f;
            font-family: 'Orbitron', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        /* ===== ANIMATED CYBER BACKGROUND ===== */
        .cyber-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        /* Matrix rain effect */
        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.07;
        }

        .matrix-column {
            position: absolute;
            top: -100%;
            font-family: 'Share Tech Mono', monospace;
            font-size: 14px;
            color: #00ff41;
            writing-mode: vertical-rl;
            animation: matrixFall linear infinite;
            text-shadow: 0 0 8px #00ff41;
        }

        @keyframes matrixFall {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(200vh); }
        }

        /* Grid lines */
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(0deg); }
            100% { transform: perspective(500px) rotateX(360deg); }
        }

        /* Floating particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00ff41;
            border-radius: 50%;
            animation: floatParticle linear infinite;
            box-shadow: 0 0 6px #00ff41, 0 0 12px #00ff41;
        }

        @keyframes floatParticle {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }

        /* Scan line */
        .scanline {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.15), transparent);
            animation: scanDown 4s linear infinite;
            z-index: 1;
        }

        @keyframes scanDown {
            0% { top: -5%; }
            100% { top: 105%; }
        }

        /* Glowing orbs */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: orbPulse 6s ease-in-out infinite alternate;
        }

        .glow-orb:nth-child(1) {
            width: 300px;
            height: 300px;
            background: rgba(0, 255, 65, 0.08);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .glow-orb:nth-child(2) {
            width: 250px;
            height: 250px;
            background: rgba(0, 200, 255, 0.06);
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .glow-orb:nth-child(3) {
            width: 200px;
            height: 200px;
            background: rgba(157, 0, 255, 0.05);
            bottom: 10%;
            left: 40%;
            animation-delay: 4s;
        }

        @keyframes orbPulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.3); opacity: 1; }
        }

        /* ===== MAIN CONTENT ===== */
        .content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
        }

        /* ===== STICKY HEADER ===== */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            background: rgba(10, 10, 15, 0.92);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 255, 65, 0.1);
            padding: 14px 20px 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* ===== HEADER ===== */
        .header {
            text-align: center;
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #00ff41, #00c8ff);
            border-radius: 2px;
            box-shadow: 0 0 15px #00ff41;
        }

        .header h1 {
            font-size: clamp(0.75rem, 2.5vw, 1.2rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #00ff41 0%, #00c8ff 50%, #9d00ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            position: relative;
            animation: glitchText 5s infinite;
            padding: 10px 0;
        }

        .header h1::after {
            content: 'Click on the site where you play the game';
            position: absolute;
            top: 10px;
            left: 2px;
            background: linear-gradient(135deg, #ff0040 0%, #00ff41 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            animation: glitchClone 5s infinite;
        }

        @keyframes glitchText {
            0%, 92%, 100% { transform: translate(0); }
            93% { transform: translate(-2px, 1px); }
            94% { transform: translate(2px, -1px); }
            95% { transform: translate(-1px, 2px); }
        }

        @keyframes glitchClone {
            0%, 92%, 100% { opacity: 0; }
            93% { opacity: 0.8; transform: translate(3px, -2px); }
            94% { opacity: 0.4; transform: translate(-3px, 2px); }
            95% { opacity: 0; }
        }

        .header .subtitle {
            font-family: 'Share Tech Mono', monospace;
            color: rgba(0, 255, 65, 0.5);
            font-size: 0.6rem;
            letter-spacing: 4px;
            margin-top: 6px;
            animation: blink 2s step-end infinite;
        }

        /* ===== SEARCH BOX ===== */
        .search-wrapper {
            width: 100%;
            max-width: 400px;
            margin-top: 12px;
            position: relative;
        }

        .search-wrapper input {
            width: 100%;
            padding: 10px 16px 10px 38px;
            background: rgba(0, 255, 65, 0.04);
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 8px;
            color: #00ff41;
            font-family: 'Share Tech Mono', monospace;
            font-size: 0.8rem;
            letter-spacing: 1px;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-wrapper input::placeholder {
            color: rgba(0, 255, 65, 0.3);
        }

        .search-wrapper input:focus {
            border-color: rgba(0, 255, 65, 0.5);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.08);
            background: rgba(0, 255, 65, 0.06);
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            pointer-events: none;
        }

        .search-icon svg {
            width: 16px;
            height: 16px;
            stroke: rgba(0, 255, 65, 0.4);
            fill: none;
            stroke-width: 2;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* ===== SCROLLABLE CARDS AREA ===== */
        .cards-scroll {
            flex: 1;
            width: 100%;
            overflow-y: auto;
            display: flex;
            justify-content: center;
            padding: 20px 0;
        }

        /* ===== CARDS GRID ===== */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(2, 180px);
            gap: 20px;
            justify-content: center;
            padding: 0 20px;
            align-content: start;
        }

        /* ===== CARD ===== */
        .card {
            position: relative;
            background: rgba(10, 10, 20, 0.85);
            border: 1px solid rgba(0, 255, 65, 0.15);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.05), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .card:hover::before {
            left: 100%;
        }

        .card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(0, 255, 65, 0.3), transparent, rgba(0, 200, 255, 0.3));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .card:hover::after {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(0, 255, 65, 0.4);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 255, 65, 0.1),
                inset 0 1px 0 rgba(0, 255, 65, 0.1);
        }

        .card-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
            filter: brightness(0.9) saturate(1.1);
        }

        .card:hover .card-image-wrapper img {
            transform: scale(1.08);
            filter: brightness(1) saturate(1.3);
        }

        .card-image-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(10, 10, 20, 1), transparent);
            pointer-events: none;
        }

        .card-info {
            padding: 10px 12px 14px;
            text-align: center;
            position: relative;
        }

        .card-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(135deg, #00ff41, #00c8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card-badge {
            display: inline-block;
            margin-top: 6px;
            padding: 3px 10px;
            font-family: 'Share Tech Mono', monospace;
            font-size: 0.55rem;
            letter-spacing: 3px;
            color: rgba(0, 255, 65, 0.6);
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 20px;
            text-transform: uppercase;
        }

        .card:hover .card-badge {
            border-color: rgba(0, 255, 65, 0.5);
            color: rgba(0, 255, 65, 0.9);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
        }

        /* ===== CORNER DECORATIONS ===== */
        .corner-decor {
            position: fixed;
            width: 80px;
            height: 80px;
            z-index: 5;
            opacity: 0.3;
        }

        .corner-decor.top-left {
            top: 15px;
            left: 15px;
            border-top: 2px solid #00ff41;
            border-left: 2px solid #00ff41;
        }

        .corner-decor.top-right {
            top: 15px;
            right: 15px;
            border-top: 2px solid #00ff41;
            border-right: 2px solid #00ff41;
        }

        .corner-decor.bottom-left {
            bottom: 15px;
            left: 15px;
            border-bottom: 2px solid #00ff41;
            border-left: 2px solid #00ff41;
        }

        .corner-decor.bottom-right {
            bottom: 15px;
            right: 15px;
            border-bottom: 2px solid #00ff41;
            border-right: 2px solid #00ff41;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 640px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 0 10px;
            }

            .header h1 {
                letter-spacing: 1px;
            }

            .search-wrapper {
                max-width: 280px;
            }

            .search-wrapper input {
                font-size: 0.7rem;
                padding: 8px 14px 8px 34px;
            }

            .card-name {
                font-size: 0.7rem;
                letter-spacing: 1px;
            }

            .card-badge {
                font-size: 0.5rem;
                padding: 2px 8px;
            }
        }