:root {
  --bg: #0b1020;
  --card: #151b2e;
  --text: #e9ecf8;
  --muted: #aab3cf;
  --accent: #7be7c4;
  --border: #273150;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.topbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #10162a;
  border-bottom: 1px solid var(--border);
}
.brand { font-size: 1.35rem; font-weight: 800; }
.brand span { color: var(--accent); }
.container { max-width: 900px; margin: 0 auto; padding: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}
.grid input, .grid textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0f1526;
  color: var(--text);
}
.grid textarea { min-height: 90px; resize: vertical; }
button {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 650;
  background: var(--accent);
  color: #0c1b1a;
  cursor: pointer;
}
button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.muted { color: var(--muted); font-size: .92rem; }
.section-head { display: flex; justify-content: space-between; align-items: center; }
.deal-list { display: grid; gap: 10px; }
.deal {
  border: 1px solid var(--border);
  background: #0f1526;
  border-radius: 12px;
  padding: 12px;
}
.deal h3 { margin: 0 0 6px; }
.meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.actions { margin-top: 8px; display: flex; gap: 8px; align-items: center; }
.like {
  background: #203053;
  color: #dce8ff;
}
@media (max-width: 600px) {
  .container { padding: 12px; }
}