:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #00b0ff;
            --dark-space: #0a0a2a;
            --star-glow: #e0f7fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-space) 0%, #1a237e 100%);
            color: #e0e0e0;
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
        }
        .hero-section {
            background: radial-gradient(circle at center, #1e3a8a 0%, var(--dark-space) 70%);
            padding: 4rem 0;
            border-bottom: 3px solid var(--secondary-color);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 4px),
                radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 3px);
            background-size: 550px 550px, 350px 350px;
            background-position: 0 0, 40px 60px;
            opacity: 0.3;
        }
        h1, h2, h3 {
            color: var(--star-glow);
            font-weight: 700;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 15px rgba(224, 247, 250, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin: 3rem 0 1.5rem 0;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent-color);
            margin: 2rem 0 1rem 0;
        }
        .content-section {
            background: rgba(26, 35, 126, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.1), transparent);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--secondary-color);
        }
        .game-feature {
            background: rgba(74, 20, 140, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 111, 0, 0.2);
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 111, 0, 0.2);
            border-color: var(--secondary-color);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            width: 100%;
            height: auto;
        }
        img:hover {
            transform: scale(1.02);
        }
        .nav-link {
            color: #e0e0e0;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link:focus {
            color: var(--secondary-color);
            background: rgba(255, 111, 0, 0.1);
        }
        footer {
            background: rgba(10, 10, 42, 0.9);
            padding: 2rem 0;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 111, 0, 0.3);
        }
        .keyword {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .faction-card {
            background: rgba(30, 58, 138, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border: 1px solid rgba(0, 176, 255, 0.3);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
        .glow-text {
            text-shadow: 0 0 10px currentColor;
        }
