:root {
  --bg: #0f172a;
  --card: #111c2e;
  --primary: #68ace8;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.7);
  --radius: 14px;
}
body {
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration:none;
}

.container {
  padding:12px;
}

/* HEADER */
.header {
  position:sticky;
  top:0;
  background: rgba(17,28,46,0.95);
  backdrop-filter: blur(10px);
  padding:12px;
  z-index:100;
}

.logo {
  font-weight:600;
  color: var(--primary);
  font-size:18px;
}

/* SEARCH */
.search-box input {
  width:100%;
  padding:10px;
  border-radius:12px;
  border:none;
  outline:none;
  background:#0b1220;
  color:#fff;
  margin-top:10px;
}

/* GRID */
.grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:12px;
}

/* CARD MATERIAL STYLE */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding:12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition:0.2s;
}

.card:active {
  transform: scale(0.98);
}

/* BUTTON */
.btn {
  display:inline-block;
  margin-top:10px;
  padding:8px 12px;
  border-radius:999px;
  background: var(--primary);
  color:#0b1220;
  font-weight:600;
  font-size:12px;
}
.suggest-box {
  position: absolute;
  width: calc(100% - 24px);
  background: #111c2e;
  border-radius: 12px;
  margin-top: 5px;
  overflow: hidden;
  display: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 999;
}

.suggest-item {
  padding: 10px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.suggest-item:hover {
  background: rgba(104,172,232,0.15);
}
/* FOOTER */
.footer {
  text-align:center;
  padding:20px;
  font-size:12px;
  opacity:0.7;
}