:root {
  --bg: #0b0b0b;
  --card: #151515;
  --text: #eaeaea;
  --muted: #9aa0a6;
  --accent: #7cc7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
}

header {
  padding: 20px 16px;
  border-bottom: 1px solid #222;
  background: #0e0e0e;
  position: sticky;
  top: 0;
  z-index: 10;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand h1 {
  font-size: 22px;
  margin: 0;
}

.badge {
  font-size: 12px;
  color: #111;
  background: linear-gradient(135deg, #7cc7ff, #a589ff);
  padding: 4px 8px;
  border-radius: 999px;
}

main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

@media (max-width: 980px) {
  main {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 14px;
  padding: 12px;
}

.player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 300px;
  border: 0;
}

.section {
  margin-top: 16px;
}

.section h2 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #c7c7c7;
}

.text {
  color: #d7d7d7;
  line-height: 1.5;
  font-size: 14px;
}

.ad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  border: 1px dashed #333;
  color: #777;
  height: 90px;
  border-radius: 10px;
}

.chat {
  height: 520px;
}

.chat iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  opacity: .8;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}