:root {
  --bg: #0f1315;
  --card: #111315;
  --muted: #9aa5a8;
  --accent: #0e87d4;
  --radius: 10px;
  --maxwidth: 1100px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #08090a 0%, #0f1315 100%);
  color: #e6eef0;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxwidth);
  margin: 40px auto;
  padding: 24px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

h1 {
  margin: 0 0 5px;
  font-size: 1.65rem;
}

.lead {
  color: var(--muted);
  max-width: 72ch;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #12a4ff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.video-wrap {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blurb {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
