* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #6A0DAD;
            --secondary: #FF4500;
            --accent: #FFD700;
            --light: #F8F8FF;
            --dark: #121212;
            --glow: rgba(255, 215, 0, 0.3);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 40px;
            background-image: radial-gradient(var(--glow) 1px, transparent 1px);
            background-size: 20px 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }
        header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/>');
            background-size: 20px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--accent);
            position: relative;
            z-index: 1;
        }
        .logo span {
            color: var(--accent);
            text-shadow: 0 0 15px var(--accent);
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            background-color: white;
            border-radius: 10px;
            margin-top: -25px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            position: relative;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: space-around;
            list-style: none;
        }
        .nav-links li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 10px 18px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-links li a:hover {
            color: var(--primary);
        }
        .nav-links li a:hover::after {
            width: 80%;
        }
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--primary);
        }
        .container {
            max-width: 1200px;
            margin: 25px auto;
            padding: 0 20px;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 35px;
            margin-top: 25px;
        }
        .content {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-top: 4px solid var(--primary);
        }
        .sidebar {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-top: 4px solid var(--secondary);
        }
        h1 {
            color: var(--primary);
            font-size: 2.4rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--accent);
            position: relative;
        }
        h1::after {
            content: '✨';
            position: absolute;
            right: 0;
            top: 0;
        }
        h2 {
            color: var(--secondary);
            font-size: 1.9rem;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 4px;
            height: 80%;
            background-color: var(--secondary);
            transform: translateY(-50%);
        }
        h3 {
            font-size: 1.5rem;
            margin: 25px 0 12px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h3::before {
            content: '🔮';
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: rgba(106, 13, 173, 0.05);
            padding: 4px 8px;
            border-left: 4px solid var(--primary);
            border-radius: 4px;
            margin: 15px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            margin: 12px 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(106, 13, 173, 0.2);
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 69, 0, 0.3);
        }
        .btn:hover::after {
            left: 100%;
        }
        .btn-login {
            background-color: var(--secondary);
            box-shadow: 0 4px 8px rgba(255, 69, 0, 0.2);
        }
        .btn-login:hover {
            background-color: var(--primary);
            box-shadow: 0 6px 12px rgba(106, 13, 173, 0.3);
        }
        .game-info {
            background-color: rgba(248, 248, 255, 0.8);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border: 1px solid rgba(106, 13, 173, 0.1);
        }
        .game-info ul {
            list-style-position: inside;
            padding-left: 15px;
        }
        .game-info li {
            margin: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .game-info li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
        }
        .sidebar-section {
            margin-bottom: 35px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .sidebar-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-section h3 {
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        .sidebar-links {
            list-style: none;
            margin-top: 12px;
        }
        .sidebar-links li {
            margin: 10px 0;
        }
        .sidebar-links a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .sidebar-links a::before {
            content: '→';
            color: var(--secondary);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .sidebar-links a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        .sidebar-links a:hover::before {
            opacity: 1;
            padding-right: 5px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background-color: rgba(106, 13, 173, 0.08);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: rgba(106, 13, 173, 0.15);
            border-color: var(--primary);
        }
        .tag a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
        }
        footer {
            max-width: 1200px;
            margin: 45px auto 0;
            padding: 25px;
            border-top: 3px solid var(--accent);
            background-color: white;
            border-radius: 12px 12px 0 0;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
        }
        .copyright {
            text-align: center;
            margin-top: 25px;
            color: #555;
            padding-top: 20px;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        .game-feature {
            background-color: rgba(255, 215, 0, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid var(--accent);
        }
        .game-feature h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .ability-card {
            display: flex;
            gap: 15px;
            margin: 15px 0;
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .ability-icon {
            font-size: 2rem;
            color: var(--secondary);
        }
        .ability-content h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px 0;
            }
            .nav-links.show {
                display: flex;
            }
            .menu-toggle {
                display: block;
                text-align: right;
            }
            .nav-links li {
                margin: 0;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content {
                padding: 25px;
            }
        }
