:root{
  --bg:#000;
  --fg:#e9ecff;
  --muted:#98a1c0;
  --neon:#00f0ff;
  --mag:#ff28f2;
  --warn:#ffcc00;
  --danger:#ff4d6d;
}

* {
  box-sizing:border-box
}

html,body {
  margin:0;
  height:100%;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto;color:var(--fg);background:#000
}

a {
  color:inherit;text-decoration:none
}

.container {
  width:min(1080px,92%);
  margin-inline:auto
}

header {
  position:sticky;
  top:0;z-index:20;
  backdrop-filter:blur(8px);
  background:rgba(0,0,0,.65);
  border-bottom:1px solid rgba(255,255,255,.08)
}

.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0
}
.brand {
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.3px
} 

.logo {
  width:50px;
  height:50px;
  border-radius:10px;
  background-color: #141313;
}

.Logo {
  width:50px;
  height:50px;
  border-radius:10px;
}

.hero {
  padding:24px 0
}

.timerWrap {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:6px auto 16px
}

.timerLabel {
  color:var(--muted);
  font-weight:600
}

.timer {
  font-weight:900;
  letter-spacing:1px;
  font-size:clamp(26px,5.6vw,46px);
  padding:10px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  box-shadow:0 0 24px rgba(0,240,255,.25)
}

.expireSoon {
  color:var(--warn)
}

.expired {
  color:var(--danger)
}

.videoWrap {
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#0a0a0a;
  box-shadow:0 22px 60px rgba(0,0,0,.6),0 0 38px rgba(0,240,255,.18)
}

.ratio {
  aspect-ratio:16/9
}

video {
  width:100%;
  height:100%;
  display:block;
  background:#000;
}

.overlayPlay {
  position:absolute;
  inset:0;
  display:none;
  place-items:center;
  background:linear-gradient(0deg,rgba(0,0,0,.45),rgba(0,0,0,.45));
  cursor:pointer
}

.playBtn {
  display:flex;
  align-items:center;
  gap:.8rem;
  background:linear-gradient(90deg,var(--mag),var(--neon));color:#0b0b16;
  font-weight:900;
  padding:14px 22px;
  border-radius:14px;
  box-shadow:0 0 32px rgba(0,240,255,.35)
}

.controls {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  background:rgba(0,0,0,.55);
  position:absolute;
  left:0;
  right:0;
  bottom:0
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  cursor:pointer
}

.btn:active {
  transform:scale(.98)
}

.progress {
  flex:1;
  height:8px;
  background:rgba(255,255,255,.18);
  border-radius:999px;
  position:relative;
  pointer-events:none
}

.bar {
  position:absolute;
  inset:0 100% 0 0;
  background:linear-gradient(90deg,var(--neon),var(--mag));
  border-radius:999px
}

.ctaBox {
  margin:22px auto 6px;
  display:flex;
  justify-content:center;
}

.cta {
  display:inline-flex;
  gap:.6rem;
  align-items:center;
  padding:16px 26px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.3px;
  background-color: #141313;
  color:#ffffff;
  border:none;
  cursor:pointer
}

.cta [disabled] {
  opacity:.45;
  cursor:not-allowed;
  filter:grayscale(.4)
}

.hint {
  color:var(--muted);
  text-align:center;
  font-size:.95rem
}

.feedback {
  padding:24px 0 36px
}

.feedGrid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px
}

.feed {
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)
}

.stars {
  color:#ffd54a;
  margin-bottom:6px
}

.who {
  opacity:.85;
  font-weight:600
}

@media (max-width:900px) {
  .feedGrid{grid-template-columns:1fr}
}

footer {
  padding:26px 0;
  color:var(--muted);
  text-align:center;
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:6px
}