body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: linear-gradient(135deg, #FF9A00, #FF5500); color: white; padding: 20px 0; text-align: center; position: relative; }
        .logo { font-size: 2.5rem; font-weight: 900; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 25px; margin-top: 15px; }
        nav a { color: white; text-decoration: none; font-weight: 600; }
        .mobile-menu-btn { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; }
        h1 { font-size: 2.2rem; margin: 30px 0 20px; color: #FF5500; }
        h2 { font-size: 1.8rem; margin: 25px 0 15px; color: #FF7700; }
        h3 { font-size: 1.5rem; margin: 20px 0 10px; color: #FF9A00; }
        .download-btn, .login-btn { display: inline-block; background: #FF5500; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background: #FF7700; }
        .stats-box { background: #f8f8f8; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .player-quote { font-style: italic; border-left: 4px solid #FF5500; padding-left: 15px; margin: 15px 0; }
        .tag-cloud { margin: 30px 0; }
        .tag { display: inline-block; background: #e0e0e0; padding: 5px 10px; margin: 5px; border-radius: 20px; }
        footer { background: #333; color: white; padding: 30px 0; text-align: center; margin-top: 40px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .logo { font-size: 2rem; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
        }
