body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 2.5em; font-weight: bold; color: #d23669; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu { display: none; font-size: 1.5em; cursor: pointer; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: 600; }
        h1 { color: #2c3e50; margin-bottom: 20px; }
        h2 { color: #e74c3c; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 40px; }
        h3 { color: #3498db; margin-top: 30px; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 30px; background: #2ecc71; color: white; border-radius: 30px; text-decoration: none; font-weight: bold; margin: 15px 0; }
        .login-btn { background: #3498db; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
        .game-stats { background: #f8f9fa; padding: 20px; border-radius: 8px; margin: 20px 0; }
        footer { margin-top: 50px; padding: 30px; background: #2c3e50; color: white; border-radius: 10px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #34495e; color: white; padding: 5px 10px; border-radius: 20px; margin: 5px; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background: rgba(255,154,158,0.9); padding: 20px; }
            .nav-links.active { display: flex; }
            .mobile-menu { display: block; }
            .logo { font-size: 2em; }
        }
