:root{
  --blue:#2a6df5;
  --pink:#ff4fd8;
  --bg:#0b1020;
  --card:#111a33;
  --muted:#9fb0ff;
  --text:#eaf0ff;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 45px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "PingFang SC", "Microsoft YaHei", Arial;
  background: radial-gradient(900px 550px at 15% 10%, rgba(42,109,245,.28), transparent 60%),
              radial-gradient(900px 550px at 80% 30%, rgba(255,79,216,.22), transparent 60%),
              linear-gradient(180deg, #070b17, #0b1020);
  color:var(--text);
}
a{color:inherit}
.container{max-width:1150px;margin:0 auto;padding:24px}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 18px;border:1px solid var(--border);
  border-radius:16px;background:rgba(17,26,51,.55);backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.3px}
.brand .dot{width:14px;height:14px;border-radius:7px;background:linear-gradient(135deg,var(--blue),var(--pink))}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  font-size:13px;color:var(--muted)
}
.grid{display:grid;grid-template-columns: 2fr 1fr; gap:18px; margin-top:18px}
.card{
  border:1px solid var(--border); border-radius:18px; background:rgba(17,26,51,.55);
  box-shadow: var(--shadow); overflow:hidden;
}
.card .hd{padding:14px 16px;border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between}
.card .bd{padding:14px 16px}
.btn{
  border:0; cursor:pointer; font-weight:700;
  padding:10px 14px; border-radius:14px;
  color:#061026; background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 10px 25px rgba(42,109,245,.25);
}
.btn:disabled{opacity:.45;cursor:not-allowed}
.btn2{
  border:1px solid var(--border); cursor:pointer; font-weight:700;
  padding:10px 14px; border-radius:14px;
  color:var(--text); background: rgba(255,255,255,.04);
}
.input, textarea{
  width:100%; padding:11px 12px; border-radius:14px;
  border:1px solid var(--border); background: rgba(0,0,0,.25);
  color:var(--text); outline:none;
}
textarea{resize:vertical}
.muted{color:var(--muted);font-size:13px}
.videoWrap{position:relative; width:100%; aspect-ratio: 16/9; background:#000; border-radius:16px; overflow:hidden}
video{width:100%; height:100%; object-fit:contain; background:#000}
.badgeLive{
  position:absolute; left:14px; top:14px;
  display:flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  background:rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.18);
  font-weight:800; font-size:13px;
}
.badgeLive .r{width:10px;height:10px;border-radius:5px;background:#ff365e; box-shadow:0 0 0 6px rgba(255,54,94,.15)}
.comments{height:420px; display:flex; flex-direction:column}
.commentList{flex:1; overflow:auto; padding-right:6px}
.commentItem{padding:10px 10px; border-bottom:1px solid rgba(255,255,255,.06)}
.commentItem .name{font-weight:800; color:#ffffff}
.commentItem .ts{font-size:12px; color:rgba(255,255,255,.55); margin-left:8px}
.commentItem .msg{margin-top:6px; color:rgba(234,240,255,.92); line-height:1.35}
.row{display:flex; gap:10px}
.row > *{flex:1}
.footer{margin-top:18px; text-align:center; color:rgba(255,255,255,.55); font-size:12px}
.ad{
  border:1px dashed rgba(255,255,255,.25);
  border-radius:14px; padding:12px; background:rgba(0,0,0,.18);
  min-height:70px;
}
.table{width:100%; border-collapse:collapse; overflow:hidden; border-radius:14px}
.table th,.table td{padding:12px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left;font-size:14px}
.table th{color:rgba(255,255,255,.75); font-size:13px}
.hr{height:1px;background:rgba(255,255,255,.1); margin:16px 0}
.small{font-size:12px;color:rgba(255,255,255,.6)}
