       :root {
            --primary: #9b4dff;
            --secondary: #00d4ff;
            --bg-dark: #0a0a0c;
            --accent: #ff0055;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-dark);
            color: white;
            font-family: 'Noto Sans JP', sans-serif;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.8)),
                url('https://images.alphacoders.com/204/204363.jpg'); /* Imagen de fondo genérica Shaiya */
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* --- Overlay de Escaneo (Efecto Cyber) --- */
        body::before {
            content: " ";
            position: fixed;
            top: 0; left: 0; bottom: 0; right: 0;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
            z-index: 100;
            background-size: 100% 4px, 3px 100%;
            pointer-events: none;
        }

        .navbar {
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.8);
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            margin-left: 25px;
            font-weight: bold;
            transition: 0.3s;
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-item {
            position: relative;
            margin-left: 25px;
        }

        .nav-item > a {
            margin-left: 0;
            display: inline-block;
        }

        .nav-trigger {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .menu-arrow {
            width: 10px;
            height: 10px;
            display: inline-block;
            position: relative;
        }

        .menu-arrow:before {
            content: "";
            position: absolute;
            left: 1px;
            top: 3px;
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid currentColor;
        }

        .lang-icon {
            font-size: 14px;
            line-height: 1;
        }

        .nav-languages .submenu {
            left: auto;
            right: 0;
            min-width: 150px;
        }

        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 180px;
            padding: 10px 0;
            background: rgba(0, 0, 0, 0.95);
            border: 1px solid var(--primary);
            box-shadow: 0 0 12px rgba(155, 77, 255, 0.35);
        }

        .submenu a {
            display: block;
            margin: 0;
            padding: 10px 18px;
            white-space: nowrap;
        }

        .has-submenu:hover .submenu {
            display: block;
        }

        .nav-links a:hover {
            color: var(--secondary);
            text-shadow: 0 0 5px var(--secondary);
        }

        .hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 0;
            background: linear-gradient(to bottom, #fff, var(--primary));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 15px rgba(155, 77, 255, 0.5));
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            color: #ccc;
        }

        .btn-play {
            background: var(--accent);
            color: white;
            padding: 15px 40px;
            font-family: 'Orbitron', sans-serif;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 30px;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            transition: 0.3s;
            display: inline-block;
        }

        .btn-play:hover {
            transform: scale(1.1);
            background: white;
            color: var(--accent);
            box-shadow: 0 0 20px var(--accent);
        }

        .section {
            padding: 80px 10% ;
            background: rgba(10, 10, 12, 0.9);
            margin: 50px 0;
            border-left: 5px solid var(--secondary);
        }

        .factions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faction-card {
            padding: 30px;
            border: 1px solid #333;
            transition: 0.5s;
            position: relative;
            overflow: hidden;
        }

        .light { border-top: 4px solid var(--secondary); }
        .dark { border-top: 4px solid var(--primary); }

        .faction-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-10px);
        }

        .kanji-bg {
            position: absolute;
            right: -10px;
            bottom: -10px;
            font-size: 8rem;
            opacity: 0.05;
            color: white;
        }

        footer {
            text-align: center;
            padding: 40px;
            font-size: 0.8rem;
            color: #555;
            border-top: 1px solid #222;
        }