* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        :root {
            --primary: #1E90FF;
            --secondary: #32CD32;
            --accent: #FF4500;
            --light: #F9F9F9;
            --dark: #2C3E50;
            --glow: rgba(255, 69, 0, 0.1);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 60px;
            background-image: radial-gradient(var(--glow) 1px, transparent 1px);
            background-size: 25px 25px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #0000CD);
            color: white;
            padding: 40px 0;
            box-shadow: 0 8px 25px 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: 3rem;
            font-weight: 800;
            text-align: center;
            letter-spacing: 1.5px;
            text-shadow: 0 0 20px var(--accent);
            position: relative;
            z-index: 1;
        }
        .logo span {
            color: var(--accent);
            text-shadow: 0 0 30px var(--accent);
        }
        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 25px 35px;
            background-color: white;
            border-radius: 20px;
            margin-top: -40px;
            box-shadow: 0 12px 25px rgba(0,0,0,0.25);
            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: 15px 25px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.15rem;
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 5px;
            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: 90%;
        }
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 2.5rem;
            color: var(--primary);
        }
        .container {
            max-width: 1400px;
            margin: 50px auto;
            padding: 0 35px;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 50px;
            margin-top: 40px;
        }
        .content {
            background-color: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            border-top: 8px solid var(--primary);
        }
        .sidebar {
            background-color: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            border-top: 8px solid var(--secondary);
        }
        h1 {
            color: var(--primary);
            font-size: 3rem;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 6px solid var(--accent);
            position: relative;
        }
        h1::after {
            content: '🏁';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 2.5rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2.4rem;
            margin: 50px 0 30px;
            position: relative;
            padding-left: 25px;
        }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 8px;
            height: 90%;
            background-color: var(--secondary);
            transform: translateY(-50%);
        }
        h3 {
            font-size: 2rem;
            margin: 40px 0 25px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::before {
            content: '🏃';
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.2rem;
        }
        .highlight {
            background-color: rgba(30, 144, 255, 0.09);
            padding: 15px 20px;
            border-left: 8px solid var(--primary);
            border-radius: 10px;
            margin: 30px 0;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            padding: 35px;
            background-color: rgba(30, 144, 255, 0.1);
            border-radius: 25px;
        }
        .btn {
            display: inline-block;
            padding: 18px 35px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 15px;
            margin: 20px 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(30, 144, 255, 0.35);
            font-weight: 700;
            position: relative;
            overflow: hidden;
            font-size: 1.2rem;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: all 0.8s ease;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-6px);
            box-shadow: 0 12px 20px rgba(50, 205, 50, 0.4);
        }
        .btn:hover::after {
            left: 100%;
        }
        .btn-login {
            background-color: var(--secondary);
            box-shadow: 0 8px 15px rgba(50, 205, 50, 0.35);
        }
        .btn-login:hover {
            background-color: var(--primary);
            box-shadow: 0 12px 20px rgba(30, 144, 255, 0.4);
        }
        .game-info {
            background-color: rgba(248, 249, 250, 0.98);
            padding: 35px;
            border-radius: 20px;
            margin: 40px 0;
            border: 1px solid rgba(30, 144, 255, 0.25);
        }
        .game-info ul {
            list-style-position: inside;
            padding-left: 30px;
        }
        .game-info li {
            margin: 18px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .game-info li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.6rem;
        }
        .sidebar-section {
            margin-bottom: 50px;
            padding-bottom: 35px;
            border-bottom: 1px solid rgba(0,0,0,0.15);
        }
        .sidebar-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-section h3 {
            border-bottom: 5px solid var(--accent);
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .sidebar-links {
            list-style: none;
            margin-top: 25px;
        }
        .sidebar-links li {
            margin: 18px 0;
        }
        .sidebar-links a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.15rem;
        }
        .sidebar-links a::before {
            content: '→';
            color: var(--secondary);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .sidebar-links a:hover {
            color: var(--secondary);
            padding-left: 18px;
        }
        .sidebar-links a:hover::before {
            opacity: 1;
            padding-right: 10px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        .tag {
            background-color: rgba(30, 144, 255, 0.15);
            padding: 14px 28px;
            border-radius: 40px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: rgba(30, 144, 255, 0.25);
            border-color: var(--primary);
        }
        .tag a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
        }
        footer {
            max-width: 1400px;
            margin: 70px auto 0;
            padding: 40px;
            border-top: 6px solid var(--accent);
            background-color: white;
            border-radius: 25px 25px 0 0;
            box-shadow: 0 -10px 25px rgba(0,0,0,0.12);
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            color: #495057;
            padding-top: 35px;
            border-top: 1px solid rgba(0,0,0,0.15);
            font-size: 1.15rem;
        }
        .game-feature {
            background-color: rgba(255, 69, 0, 0.1);
            border-radius: 20px;
            padding: 35px;
            margin: 35px 0;
            border-left: 8px solid var(--accent);
        }
        .game-feature h4 {
            color: var(--primary);
            margin-bottom: 18px;
            font-size: 1.5rem;
        }
        .ability-card {
            display: flex;
            gap: 30px;
            margin: 30px 0;
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .ability-icon {
            font-size: 2.8rem;
            color: var(--secondary);
        }
        .ability-content h4 {
            margin-bottom: 12px;
            color: var(--primary);
        }
        .quote {
            font-style: italic;
            border-left: 6px solid var(--accent);
            padding-left: 30px;
            margin: 35px 0;
            color: #293241;
        }
        .fact-box {
            background-color: rgba(50, 205, 50, 0.08);
            padding: 30px;
            border-radius: 15px;
            margin: 35px 0;
        }
        .fact-box h4 {
            color: var(--secondary);
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                text-align: center;
                gap: 30px;
                padding: 35px 0;
            }
            .nav-links.show {
                display: flex;
            }
            .menu-toggle {
                display: block;
                text-align: right;
            }
            .nav-links li {
                margin: 0;
            }
            .logo {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .content {
                padding: 40px;
            }
            .sidebar {
                padding: 35px;
            }
        }
