* { box-sizing: border-box; } body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: #0b0f14; color: #e8eef6; } .wrap { max-width: 1000px; margin: 0 auto; padding: 20px; } h1 { margin: 0 0 8px; } .muted { color: #9fb0c3; } input { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid #253241; background: #0f1620; color: #e8eef6; outline: none; } .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 18px; } .card { display: block; padding: 16px; border-radius: 16px; border: 1px solid #253241; background: #0f1620; text-decoration: none; color: inherit; transition: transform 0.1s ease; } .card:hover { transform: translateY(-2px); } .name { font-weight: 700; margin-bottom: 8px; } .tag { font-size: 12px; color: #9fb0c3; } footer { padding-bottom: 40px; }