:root {
  --bg: #0a0b0e;
  --card: #14161c;
  --line: rgba(255, 255, 255, 0.08);
  --txt: #e7e9ee;
  --dim: #8b909c;
  --accent: #5eead4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(94, 234, 212, 0.08), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(120, 119, 255, 0.07), transparent 60%),
    var(--bg);
  color: var(--txt);
  font-family: ui-sans-serif, -apple-system, "SF Pro Text", "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main { max-width: 1080px; margin: 0 auto; padding: 72px 24px 48px; }

.hero { margin-bottom: 44px; }
.hero h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline { margin: 12px 0 6px; font-size: 18px; color: var(--txt); }
.sub { margin: 0; font-size: 14px; color: var(--dim); max-width: 60ch; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
a.card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 234, 212, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.thumb {
  aspect-ratio: 16 / 10;
  background: #0d0f13;
  overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 6px;
}

.meta { padding: 16px 18px 18px; }
.meta h2 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}
.meta p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--dim); }

.badge {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 6px;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.badge.live {
  color: #0a0b0e;
  background: var(--accent);
  border-color: transparent;
}

.card.soon { opacity: 0.62; cursor: default; }
.card.soon:hover { transform: none; }

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--dim);
}
.foot a { color: var(--accent); text-decoration: none; }
.foot a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  main { padding: 48px 16px 32px; }
  .hero h1 { font-size: 34px; }
}
