<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Шаурма меню</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: #1a0e0b; min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; } .menu-card { max-width: 500px; width: 100%; background: linear-gradient(145deg, #2d1a14, #1f0f0b); border-radius: 48px; padding: 32px 24px 40px; box-shadow: 0 25px 50px -8px rgba(0,0,0,0.8), inset 0 1px 2px rgba(255,215,150,0.1); border: 1px solid #4a2a20; } .header { text-align: center; margin-bottom: 28px; } .header .emoji-big { font-size: 56px; display: block; margin-bottom: 4px; filter: drop-shadow(0 4px 8px rgba(255, 100, 0, 0.3)); } .header h1 { color: #f5d6b3; font-size: 32px; font-weight: 800; letter-spacing: 2px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); } .header p { color: #b8866b; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; opacity: 0.8; } .divider { height: 2px; background: linear-gradient(90deg, transparent, #c47a4a, #f5a623, #c47a4a, transparent); margin: 16px 0 22px; border-radius: 4px; } .item { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; margin-bottom: 8px; background: rgba(255, 215, 180, 0.04); border-radius: 20px; border-left: 3px solid transparent; transition: all 0.2s Ver mais