:root{
  --bg:#050611;
  --ink:#eef3ff;
  --muted: rgba(238,243,255,.66);
  --line: rgba(255,255,255,.11);
  --a:#00e5ff;
  --b:#ff2bd6;
  --c:#ffe500;
  --card: rgba(16,18,40,.60);
  --shadow: 0 30px 110px rgba(0,0,0,.55);
}
*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 800px at 18% 10%, rgba(255,43,214,.13), transparent 60%),
    radial-gradient(1100px 850px at 82% 15%, rgba(0,229,255,.12), transparent 60%),
    radial-gradient(1200px 900px at 55% 95%, rgba(255,229,0,.10), transparent 60%),
    var(--bg);
  color:var(--ink);
  overflow-x:hidden;
}

#bg{ position:fixed; inset:0; width:100%; height:100%; z-index:0 }

.top{
  position:sticky; top:0; z-index:30;
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 18px;
  backdrop-filter: blur(10px);
  background: rgba(5,6,17,.55);
  border-bottom:1px solid var(--line);
}
.brand{ display:flex; gap:12px; align-items:center }
.logo{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:16px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(0,229,255,.22), rgba(255,43,214,.22));
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.title{ font-weight:990; letter-spacing:.14em; text-transform:uppercase }
.subtitle{ font-size:11px; color:var(--muted); letter-spacing:.18em; text-transform:uppercase }

.controls{ display:flex; gap:8px }
.btn{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--ink);
  font-weight:950;
  cursor:pointer;
}
.btn.ghost{ background:transparent }
.btn:hover{ transform: translateY(-1px) }

.wrap{ position:relative; z-index:10; max-width:1140px; margin:0 auto; padding:26px 18px 44px }

.hero{
  display:grid; grid-template-columns:1fr; gap:18px;
  align-items:center;
}
@media(min-width: 980px){ .hero{ grid-template-columns:1fr 1.2fr } }

.kicker{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,229,0,.35);
  background: rgba(255,229,0,.08);
  color: var(--c);
  font-size:11px;
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
}

h1{ margin:14px 0 10px; font-size:44px; line-height:1.05; letter-spacing:-.03em }
@media(min-width: 980px){ h1{ font-size:54px } }
.accent{ color: var(--a); text-shadow: 0 0 18px rgba(0,229,255,.35) }
.muted{ color: var(--muted); line-height:1.6 }

.pills{ display:flex; gap:8px; flex-wrap:wrap; margin-top:14px }
.pill{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size:12px;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.pill.ghost{ background:transparent }

.stage{
  position:relative;
  height:420px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow:hidden;
  perspective: 1200px;
}

.ring{
  position:absolute;
  inset:0;
  transform-style: preserve-3d;
  display:grid;
  place-items:center;
  cursor: grab;
}
.ring:active{ cursor:grabbing }

.tile{
  position:absolute;
  width:min(280px, 72vw);
  height:180px;
  border-radius:18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  transform-style: preserve-3d;
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}

.tile::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.55));
  pointer-events:none;
}

.tile img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter: saturate(1.1) contrast(1.05);
}

.tile .label{
  position:absolute;
  left:14px; right:14px; bottom:12px;
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:10px;
}

.tile .label .name{
  font-weight:990;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:14px;
}

.tile .label .tag{
  font-size:11px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: rgba(238,243,255,.78);
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
}

.floor{
  position:absolute;
  left:50%; bottom:-160px;
  width:1100px; height:520px;
  transform: translateX(-50%) rotateX(70deg);
  transform-origin: 50% 0;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(0,229,255,.15), transparent 70%),
    radial-gradient(closest-side at 48% 58%, rgba(255,43,214,.12), transparent 70%),
    repeating-linear-gradient(to right, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 2px, transparent 22px);
  opacity:.55;
  filter: blur(.2px);
}

.panel{
  margin-top:18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background: rgba(16,18,40,.52);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panelTop{
  display:flex; justify-content:space-between; align-items:baseline;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.panelTitle{ font-weight:990; letter-spacing:.14em; text-transform:uppercase; font-size:12px; color: rgba(238,243,255,.8) }
.panelMeta{ color: var(--muted); font-size:12px }
.panelBody{ display:grid; grid-template-columns:1fr; gap:14px; padding:16px }
@media(min-width: 980px){ .panelBody{ grid-template-columns: 1.1fr .9fr } }

.big{
  height:280px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  background: rgba(255,255,255,.05);
}
.big img{ width:100%; height:100%; object-fit:cover; display:block }

.desc h2{ margin:0 0 8px; font-size:26px; letter-spacing:-.02em }
.desc p{ margin:0 0 14px; color: rgba(238,243,255,.74); line-height:1.6 }
.links{ display:flex; gap:10px; flex-wrap:wrap }
.link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--ink);
  text-decoration:none;
  font-weight:950;
}
.link:hover{ transform: translateY(-1px) }

.foot{
  margin-top:20px;
  padding:12px 2px;
  display:flex; justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.10);
}

@media (prefers-reduced-motion: reduce){
  .btn:hover, .link:hover { transform:none !important; }
}
