body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 28px; font-weight: bold; color: #FF4500; text-align: center; margin: 20px 0; }
        nav { background: #333; padding: 10px; display: flex; justify-content: center; flex-wrap: wrap; }
        nav a { color: white; margin: 0 15px; text-decoration: none; }
        .mobile-nav-toggle { display: none; }
        h1 { color: #FF4500; border-bottom: 2px solid #FF4500; padding-bottom: 10px; }
        h2 { color: #008080; margin-top: 30px; }
        h3 { color: #2E8B57; }
        .download-btn, .login-btn { background: #FF4500; color: white; padding: 12px 25px; margin: 15px 0; display: inline-block; border-radius: 5px; text-decoration: none; }
        .img-container { text-align: center; margin: 25px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .player-tip { background: #f0f8ff; padding: 15px; border-left: 4px solid #008080; margin: 20px 0; }
        .stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        .stats-table th, .stats-table td { border: 1px solid #ddd; padding: 8px; text-align: left; }
        .stats-table th { background: #f2f2f2; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; text-align: center; }
        @media (max-width: 768px) {
            nav { flex-direction: column; display: none; }
            .mobile-nav-toggle { display: block; background: #FF4500; color: white; padding: 10px; text-align: center; cursor: pointer; }
            .nav-visible { display: flex; }
        }
