* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        :root {
            --primary: #1E88E5;
            --secondary: #2E7D32;
            --accent: #FFC107;
            --light: #F5F5F5;
            --dark: #1A237E;
            --glow: rgba(255, 193, 7, 0.2);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 60px;
            background-image: radial-gradient(var(--glow) 1px, transparent 1px);
            background-size: 20px 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #0D47A1);
            color: white;
            padding: 35px 0;
            box-shadow: 0 6px 20px 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.8rem;
            font-weight: 800;
            text-align: center;
            letter-spacing: 2px;
            text-shadow: 0 0 15px var(--accent);
            position: relative;
            z-index: 1;
        }
        .logo span {
            color: var(--accent);
            text-shadow: 0 0 25px var(--accent);
        }
        nav {
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px 30px;
            background-color: white;
            border-radius: 15px;
            margin-top: -35px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            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: 14px 22px;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.1rem;
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 4px;
            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.2rem;
            color: var(--primary);
        }
        .container {
            max-width: 1300px;
            margin: 40px auto;
            padding: 0 30px;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 45px;
            margin-top: 35px;
        }
        .content {
            background-color: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-top: 6px solid var(--primary);
        }
        .sidebar {
            background-color: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-top: 6px solid var(--secondary);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 5px solid var(--accent);
            position: relative;
        }
        h1::after {
            content: '🦚';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 2.2rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin: 45px 0 25px;
            position: relative;
            padding-left: 20px;
        }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 6px;
            height: 90%;
            background-color: var(--secondary);
            transform: translateY(-50%);
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: '🌿';
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.15rem;
        }
        .highlight {
            background-color: rgba(30, 136, 229, 0.08);
            padding: 12px 15px;
            border-left: 6px solid var(--primary);
            border-radius: 8px;
            margin: 25px 0;
        }
        .btn-container {
            text-align: center;
            margin: 35px 0;
            padding: 30px;
            background-color: rgba(30, 136, 229, 0.09);
            border-radius: 20px;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            margin: 18px 12px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 12px rgba(30, 136, 229, 0.3);
            font-weight: 700;
            position: relative;
            overflow: hidden;
            font-size: 1.15rem;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.8s ease;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 10px 18px rgba(46, 125, 50, 0.4);
        }
        .btn:hover::after {
            left: 100%;
        }
        .btn-login {
            background-color: var(--secondary);
            box-shadow: 0 6px 12px rgba(46, 125, 50, 0.3);
        }
        .btn-login:hover {
            background-color: var(--primary);
            box-shadow: 0 10px 18px rgba(30, 136, 229, 0.4);
        }
        .game-info {
            background-color: rgba(245, 245, 245, 0.95);
            padding: 30px;
            border-radius: 15px;
            margin: 35px 0;
            border: 1px solid rgba(30, 136, 229, 0.2);
        }
        .game-info ul {
            list-style-position: inside;
            padding-left: 25px;
        }
        .game-info li {
            margin: 15px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .game-info li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.4rem;
        }
        .sidebar-section {
            margin-bottom: 45px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(0,0,0,0.12);
        }
        .sidebar-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-section h3 {
            border-bottom: 4px solid var(--accent);
            padding-bottom: 12px;
            margin-bottom: 25px;
        }
        .sidebar-links {
            list-style: none;
            margin-top: 20px;
        }
        .sidebar-links li {
            margin: 15px 0;
        }
        .sidebar-links a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }
        .sidebar-links a::before {
            content: '→';
            color: var(--secondary);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .sidebar-links a:hover {
            color: var(--secondary);
            padding-left: 15px;
        }
        .sidebar-links a:hover::before {
            opacity: 1;
            padding-right: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 35px 0;
        }
        .tag {
            background-color: rgba(30, 136, 229, 0.12);
            padding: 12px 24px;
            border-radius: 35px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: rgba(30, 136, 229, 0.2);
            border-color: var(--primary);
        }
        .tag a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
        }
        footer {
            max-width: 1300px;
            margin: 60px auto 0;
            padding: 35px;
            border-top: 5px solid var(--accent);
            background-color: white;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -8px 20px rgba(0,0,0,0.1);
        }
        .copyright {
            text-align: center;
            margin-top: 35px;
            color: #475569;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.12);
            font-size: 1.1rem;
        }
        .game-feature {
            background-color: rgba(255, 193, 7, 0.09);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            border-left: 6px solid var(--accent);
        }
        .game-feature h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .ability-card {
            display: flex;
            gap: 25px;
            margin: 25px 0;
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .ability-icon {
            font-size: 2.5rem;
            color: var(--secondary);
        }
        .ability-content h4 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        .quote {
            font-style: italic;
            border-left: 5px solid var(--accent);
            padding-left: 25px;
            margin: 30px 0;
            color: #334155;
        }
        .fact-box {
            background-color: rgba(46, 125, 50, 0.07);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .fact-box h4 {
            color: var(--secondary);
            margin-bottom: 12px;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                text-align: center;
                gap: 25px;
                padding: 30px 0;
            }
            .nav-links.show {
                display: flex;
            }
            .menu-toggle {
                display: block;
                text-align: right;
            }
            .nav-links li {
                margin: 0;
            }
            .logo {
                font-size: 2.3rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .content {
                padding: 35px;
            }
            .sidebar {
                padding: 30px;
            }
        }
