body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #0066cc, #004d99); color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-nav-toggle { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
        h1, h2, h3 { color: #004d99; }
        h1 { font-size: 2.2rem; margin-bottom: 20px; }
        h2 { font-size: 1.8rem; margin: 30px 0 15px; }
        h3 { font-size: 1.4rem; margin: 25px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background: #00cc66; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 30px; text-decoration: none; font-weight: bold; }
        .login-btn { background: #ff6600; }
        .stats-box { background: #f0f8ff; padding: 15px; border-radius: 10px; margin: 15px 0; }
        .player-quote { font-style: italic; border-left: 4px solid #0066cc; padding-left: 15px; margin: 15px 0; }
        img { max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; }
        .tag-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 20px 0; }
        .tag { background: #555; color: white; padding: 5px 10px; border-radius: 20px; text-decoration: none; }
        @media (max-width: 768px) {
            .mobile-nav-toggle { display: block; }
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
        }
