:root{
  --bg:#0b0c10;
  --card:#12141b;
  --text:#e9edf1;
  --muted:#aab4be;
  --line:rgba(255,255,255,.12);
  --accent:#8fd3ff;
  --danger:#ff6b6b;
  --ok:#59e3a6;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius:16px;
  --max: 980px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1000px 600px at 20% -10%, rgba(143,211,255,.18), transparent 60%),
              radial-gradient(900px 600px at 110% 10%, rgba(89,227,166,.12), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 18px 46px;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: rgba(18,20,27,.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{
  width:44px; height:44px; object-fit:contain;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  padding:6px;
  border:1px solid var(--line);
}
.brand .title{
  display:flex; flex-direction:column; line-height:1.15;
}
.brand .title strong{font-size:15px; letter-spacing:.2px}
.brand .title span{font-size:12px; color:var(--muted)}

.nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.nav a{
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  font-size:13px;
}
.nav a:hover{border-color: rgba(143,211,255,.45)}

.card{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: rgba(18,20,27,.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card .inner{padding:18px}

.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
}
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
}

.poster{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.poster img{width:100%; height:auto; display:block}

.h1{
  font-size:26px;
  margin:0 0 10px;
  letter-spacing:.2px;
}
.p{
  color:var(--muted);
  margin:0 0 14px;
  line-height:1.55;
  font-size:14px;
}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-size:12px;
  color:var(--muted);
}

.btnRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:600;
  font-size:13px;
}
.btn.primary{
  border-color: rgba(143,211,255,.45);
  background: rgba(143,211,255,.14);
}
.btn.primary:hover{background: rgba(143,211,255,.2)}
.btn:hover{border-color: rgba(255,255,255,.22)}

.hr{height:1px; background: var(--line); border:0; margin:16px 0}

.form{
  display:flex; flex-direction:column; gap:10px;
}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.2);
  color:var(--text);
  outline:none;
  font-size:14px;
}
.input:focus{border-color: rgba(143,211,255,.6)}
.help{font-size:12px; color:var(--muted); line-height:1.4}

.alert{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size:13px;
}
.alert.error{border-color: rgba(255,107,107,.35); background: rgba(255,107,107,.12)}
.alert.ok{border-color: rgba(89,227,166,.35); background: rgba(89,227,166,.12)}

.videoWrap{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.22);
  padding:14px;
}
.videoFrame{
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius:14px;
  border:1px solid var(--line);
  overflow:hidden;
  background:#000;
}
video{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:#000;
}

.footer{
  margin-top:18px;
  color:var(--muted);
  font-size:12px;
  text-align:center;
}
.smallCaps{letter-spacing:.25em; text-transform:uppercase; font-size:11px}
.poster a {
  display: inline-block;
}

.poster img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster a:hover img {
  transform: scale(1.01);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

