:root{
  --bg: url('./assets/Marquee.png');
  --ink-dark: #0a0a0a;
  --ink-light: #f3f3f3;
}

/* Reset */
*{ box-sizing:border-box; }
html, body { height: 100%; }
body{
  margin:0;
  color:#111;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background:#000;
  overflow:hidden; /* keep the page fixed; internal panel scrolls */
}

/* Background marquee image */
.bg{
  position:fixed;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index:-2;
}

.veil{
  position:fixed; inset:0;
  background: radial-gradient(ellipse at 50% 8%, rgba(0,0,0,.04) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.55) 100%);
  z-index:-1;
}

/* Stage to help center on ultra-wide monitors (does not affect background) */
.stage{
  position:relative;
  min-height:100dvh;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== SCROLLABLE MARQUEE PANEL =====
   The following percentage offsets align to the slatted area of Marquee.png.
   If you replace the image, tweak these values.
*/
#marquee{
  position:absolute;

  /* Tuned to the uploaded Marquee.png */
  top: 43.5%;
  left: 5%;
  right: 5%;
  bottom: 10.5%;

  overflow: auto;
  scrollbar-width: thin;
  display: grid;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(245,245,245,0.02);
  /* Light inner shadow to sit "into" the sign */
  box-shadow: inset 0 0 24px rgba(0,0,0,.18);
}

/* WebKit scrollbars */
#marquee::-webkit-scrollbar{ width:10px; height:10px; }
#marquee::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.45);
  border-radius: 6px;
}

/* Listing row */
.listing{
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 14px;
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
}

.title{
  font-weight:800;
  letter-spacing:.065em;
  text-transform:uppercase;
  color:#121212;
  mix-blend-mode: multiply;
  -webkit-text-stroke: .35px rgba(0,0,0,.25);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
}

.meta{
  font-weight:700;
  letter-spacing:.08em;
  font-size: clamp(.8rem, 1.2vw, .95rem);
  background:#111;
  color: var(--ink-light);
  padding: 6px 10px;
  border-radius: 4px;
}

/* Small helper badge (toggle via .badge {display:block}) */
.badge{
  position:absolute;
  top: 32%;
  right: 5%;
  font-size:.75rem;
  letter-spacing:.18em;
  padding:6px 9px;
  color:#fff;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  text-transform:uppercase;
  display:none;
}

/* Mobile nudge for very tall phones */
@media (max-width:480px){
  #marquee{ bottom: 12.5%; }
}