:root{
  --bg: #0b0b0f;
  --card: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.12);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.4;
}

.wrap{
  max-width:720px;
  margin:0 auto;
  padding:20px 16px 28px;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 0 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  font-size:14px;
}

.brand img{ height:22px; width:auto; }

.tag{
  font-size:12px;
  color: var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
}

.hero{
  background: var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}

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

.sub{ margin:0 0 14px; color:var(--muted); font-size:14px; }

.video{
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#000;
}

video{ width:100%; height:auto; display:block; }

.message{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.msg-label{
  font-size:12px;
  color:var(--muted);
  margin:0 0 6px;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.msg-box{
  background: rgba(0,0,0,0.25);
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px;
  font-size:15px;
}

.actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  color:var(--text);
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.06);
  font-weight:600;
}

.btn:hover{ filter: brightness(1.08); }

.meta{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}

.meta a{ color:var(--text); }

footer{
  margin-top:18px;
  padding-top:12px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}