:root {
            --primary-purple: #8B5CF6;
            --magic-blue: #06B6D4;
            --sparkle-yellow: #F59E0B;
            --dark-magic: #4C1D95;
            --light-magic: #C4B5FD;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
            color: #E2E8F0;
            line-height: 1.7;
        }
        .magic-navbar {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-purple);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-purple), var(--magic-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
        }
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 27, 75, 0.9)), url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #F59E0B, #8B5CF6, #06B6D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
        }
        .content-section {
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            margin: 2rem 0;
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .btn-magic {
            background: linear-gradient(45deg, var(--primary-purple), var(--magic-blue));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }
        .btn-magic:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
            color: white;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--sparkle-yellow);
            margin-bottom: 1rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid var(--primary-purple);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-purple);
            transform: scale(1.05);
        }
        .stats-box {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(6, 182, 212, 0.3);
            transition: transform 0.3s ease;
        }
        .stats-box:hover {
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--sparkle-yellow);
            margin-bottom: 0.5rem;
        }
        h1, h2, h3 {
            color: #F1F5F9;
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-purple);
            padding-bottom: 0.5rem;
        }
        h2 {
            border-left: 5px solid var(--magic-blue);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--light-magic);
            margin-top: 2rem;
        }
        .highlight-text {
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid var(--sparkle-yellow);
            margin: 1.5rem 0;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--primary-purple), var(--magic-blue));
            border-radius: 10px;
        }
        .footer {
            background: rgba(15, 23, 42, 0.95);
            border-top: 2px solid var(--primary-purple);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
