* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        :root {
            --primary: #5B21B6;
            --secondary: #DC2626;
            --accent: #FBBF24;
            --light: #F9FAFB;
            --dark: #111827;
            --glow: rgba(251, 191, 36, 0.25);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 50px;
            background-image: radial-gradient(var(--glow) 1px, transparent 1px);
            background-size: 25px 25px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 30px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.35);
            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.5" fill="white" opacity="0.12"/>');
            background-size: 25px 25px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            letter-spacing: 1.5px;
            text-shadow: 0 0 12px var(--accent);
            position: relative;
            z-index: 1;
        }
        .logo span {
            color: var(--accent);
            text-shadow: 0 0 20px var(--accent);
        }
        nav {
            max-width: 1250px;
            margin: 0 auto;
            padding: 18px 25px;
            background-color: white;
            border-radius: 12px;
            margin-top: -30px;
            box-shadow: 0 8px 15px rgba(0,0,0,0.18);
            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: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.05rem;
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            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: 85%;
        }
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 2rem;
            color: var(--primary);
        }
        .container {
            max-width: 1250px;
            margin: 30px auto;
            padding: 0 25px;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            margin-top: 30px;
        }
        .content {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
            border-top: 5px solid var(--primary);
        }
        .sidebar {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
            border-top: 5px solid var(--secondary);
        }
        h1 {
            color: var(--primary);
            font-size: 2.6rem;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 4px solid var(--accent);
            position: relative;
        }
        h1::after {
            content: '🔮';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 2rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 40px 0 20px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 5px;
            height: 85%;
            background-color: var(--secondary);
            transform: translateY(-50%);
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: '✨';
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(91, 33, 182, 0.06);
            padding: 8px 12px;
            border-left: 5px solid var(--primary);
            border-radius: 6px;
            margin: 20px 0;
        }
        .btn-container {
            text-align: center;
            margin: 30px 0;
            padding: 25px;
            background-color: rgba(91, 33, 182, 0.07);
            border-radius: 15px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            margin: 15px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 10px rgba(91, 33, 182, 0.25);
            font-weight: 600;
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: all 0.7s ease;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(220, 38, 38, 0.35);
        }
        .btn:hover::after {
            left: 100%;
        }
        .btn-login {
            background-color: var(--secondary);
            box-shadow: 0 5px 10px rgba(220, 38, 38, 0.25);
        }
        .btn-login:hover {
            background-color: var(--primary);
            box-shadow: 0 8px 15px rgba(91, 33, 182, 0.35);
        }
        .game-info {
            background-color: rgba(249, 250, 251, 0.9);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid rgba(91, 33, 182, 0.15);
        }
        .game-info ul {
            list-style-position: inside;
            padding-left: 20px;
        }
        .game-info li {
            margin: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .game-info li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        .sidebar-section {
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        .sidebar-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-section h3 {
            border-bottom: 3px solid var(--accent);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .sidebar-links {
            list-style: none;
            margin-top: 15px;
        }
        .sidebar-links li {
            margin: 12px 0;
        }
        .sidebar-links a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.05rem;
        }
        .sidebar-links a::before {
            content: '→';
            color: var(--secondary);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .sidebar-links a:hover {
            color: var(--secondary);
            padding-left: 12px;
        }
        .sidebar-links a:hover::before {
            opacity: 1;
            padding-right: 6px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .tag {
            background-color: rgba(91, 33, 182, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: rgba(91, 33, 182, 0.18);
            border-color: var(--primary);
        }
        .tag a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
        }
        footer {
            max-width: 1250px;
            margin: 50px auto 0;
            padding: 30px;
            border-top: 4px solid var(--accent);
            background-color: white;
            border-radius: 15px 15px 0 0;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.08);
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            color: #4B5563;
            padding-top: 25px;
            border-top: 1px solid rgba(0,0,0,0.1);
            font-size: 1.05rem;
        }
        .game-feature {
            background-color: rgba(251, 191, 36, 0.07);
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            border-left: 5px solid var(--accent);
        }
        .game-feature h4 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        .ability-card {
            display: flex;
            gap: 20px;
            margin: 20px 0;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .ability-icon {
            font-size: 2.2rem;
            color: var(--secondary);
        }
        .ability-content h4 {
            margin-bottom: 8px;
            color: var(--primary);
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 25px 0;
            color: #374151;
        }
        .fact-box {
            background-color: rgba(220, 38, 38, 0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .fact-box h4 {
            color: var(--secondary);
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                text-align: center;
                gap: 20px;
                padding: 25px 0;
            }
            .nav-links.show {
                display: flex;
            }
            .menu-toggle {
                display: block;
                text-align: right;
            }
            .nav-links li {
                margin: 0;
            }
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .content {
                padding: 30px;
            }
            .sidebar {
                padding: 25px;
            }
        }
