body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 28px; font-weight: bold; color: #ff6b35; text-shadow: 1px 1px 2px rgba(0,0,0,0.2); }
        nav { background: #1a3e72; padding: 15px; margin-bottom: 25px; }
        nav ul { list-style: none; display: flex; justify-content: space-around; }
        nav a { color: white; text-decoration: none; }
        .mobile-menu { display: none; }
        h1 { color: #1a3e72; border-bottom: 3px solid #ff6b35; padding-bottom: 10px; }
        h2 { color: #ff6b35; margin-top: 30px; }
        h3 { color: #1a3e72; }
        .game-stats { background: #f8f8f8; padding: 15px; border-radius: 8px; margin: 20px 0; }
        .btn { display: inline-block; background: #ff6b35; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; }
        .btn:hover { background: #e05a24; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        footer { margin-top: 50px; padding: 20px; background: #1a3e72; color: white; }
        @media (max-width: 768px) {
            nav ul { flex-direction: column; align-items: center; }
            .mobile-menu { display: block; background: #ff6b35; color: white; padding: 10px; text-align: center; cursor: pointer; }
            .desktop-menu { display: none; }
        }
