/* ===== Board Background Image ===== */
body {
  position: relative;
  background: #070707; /* fallback */
}

/* Fullscreen background image */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("./bg.jpg") center center / cover no-repeat;
  opacity: 0.55;              /* adjust 0.35–0.70 */
  filter: blur(0px);          /* optional */
  z-index: -2;
}

/* Dark vignette overlay so text stays readable */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.75) 70%,
    rgba(0,0,0,0.92) 100%
  );
  z-index: -1;
}


:root{
  --bg:#070707;
  --card:#111;
  --card2:#0f0f0f;
  --gold:#d7b46a;
  --gold2:#b99348;
  --text:#f2f2f2;
  --muted:#b7b7b7;
  --line:rgba(215,180,106,.25);
  --shadow: 0 25px 70px rgba(0,0,0,.55);
  --radius: 28px;
  --radius2: 18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 800px at 30% 20%, rgba(215,180,106,.14), transparent 60%),
    radial-gradient(900px 700px at 80% 35%, rgba(215,180,106,.10), transparent 60%),
    radial-gradient(800px 600px at 60% 85%, rgba(215,180,106,.08), transparent 60%),
    linear-gradient(180deg, #070707, #0b0b0b 50%, #070707);
  color:var(--text);
}
a{color:var(--gold); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1400px; margin:0 auto; padding:36px 28px 60px}
.topBrand{
  text-align:center;
  margin-bottom:18px;
  letter-spacing:.22em;
  color:rgba(215,180,106,.9);
  font-size:13px;
}
.heroTitle{
  text-align:center;
  font-weight:900;
  font-size: clamp(42px, 5vw, 82px);
  margin:0 0 24px 0;
}
.heroTitle .gold{color:var(--gold)}
.boardGrid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:26px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(215,180,106,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cardPad{padding:24px}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(215,180,106,.22);
  color:rgba(242,242,242,.9);
  font-size:13px;
  background: rgba(0,0,0,.25);
}
.pillDot{
  width:10px; height:10px; border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(215,180,106,.55);
}
.sectionTitle{
  font-weight:900;
  letter-spacing:.22em;
  color:rgba(215,180,106,.95);
  font-size:14px;
  margin:0 0 14px;
}
.smallNote{
  color:rgba(242,242,242,.65);
  font-size:12px;
  margin-top:16px;
  text-align:center;
}
.hr{
  height:1px;
  background: rgba(215,180,106,.18);
  margin:16px 0;
}

.qrWrap{display:flex; flex-direction:column; gap:12px}
.qrBox{
  width: 300px;
  max-width:100%;
  aspect-ratio:1/1;
  border-radius: 22px;
  background: #fff;
  padding:14px;
  border: 1px solid rgba(0,0,0,.06);
}
.qrBox img{width:100%; height:100%; object-fit:contain; display:block}
.qrLabel{
  color:rgba(242,242,242,.85);
  font-size:14px;
  font-weight:700;
}
.qrUrl{
  font-size:12px;
  color:rgba(242,242,242,.75);
  word-break:break-all;
}

.rightCol{
  display:grid;
  grid-template-rows: 1fr 1.1fr;
  gap:26px;
}
.nowCard{
  position:relative;
  min-height: 190px;
}
.clock{
  position:absolute;
  top:18px; right:22px;
  color:rgba(242,242,242,.75);
  font-weight:600;
  letter-spacing:.08em;
}
.nowSong{
  font-size: clamp(30px, 2.4vw, 52px);
  font-weight:900;
  margin:8px 0 0;
  text-align:center;
}
.nowArtist{
  font-size: clamp(16px, 1.2vw, 22px);
  color:rgba(242,242,242,.82);
  margin:6px 0 0;
  text-align:center;
}
.queueList{display:flex; flex-direction:column; gap:12px; margin-top:10px}
.qItem{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius: 18px;
  border:1px solid rgba(215,180,106,.16);
  background: rgba(0,0,0,.22);
}
.qLeft{min-width:0}
.qTitle{font-weight:900; font-size:20px; margin:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.qMeta{color:rgba(242,242,242,.72); font-size:13px; margin-top:4px}
.qEta{color:rgba(215,180,106,.95); font-weight:900; font-size:18px; white-space:nowrap}
.qEta small{display:block; font-weight:600; color:rgba(242,242,242,.65); font-size:12px; margin-top:2px; text-align:right}
@media (max-width: 980px){
  .boardGrid{grid-template-columns: 1fr}
  .rightCol{grid-template-rows:auto}
  .qrBox{width:100%}
}

/* Request page */
.formWrap{max-width:900px; margin:0 auto}
.formCard{padding:28px}
.lead{color:rgba(242,242,242,.75); margin-top:6px}
.field{margin:16px 0}
label{display:block; font-weight:800; margin:0 0 8px}
input{
  width:100%;
  padding:16px 16px;
  border-radius:16px;
  border:1px solid rgba(215,180,106,.18);
  background: rgba(0,0,0,.35);
  color:var(--text);
  font-size:16px;
  outline:none;
}
input:focus{border-color: rgba(215,180,106,.45); box-shadow: 0 0 0 4px rgba(215,180,106,.10)}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
@media (max-width: 720px){.row{grid-template-columns: 1fr}}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius: 16px;
  border:1px solid rgba(215,180,106,.25);
  background: rgba(215,180,106,.16);
  color: #fff;
  font-weight:900;
  cursor:pointer;
}
.btn:hover{background: rgba(215,180,106,.22)}
.msg{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(215,180,106,.18);
  background: rgba(0,0,0,.28);
  color:rgba(242,242,242,.9);
}
.msg.ok{border-color: rgba(80,200,120,.28)}
.msg.err{border-color: rgba(255,90,90,.28)}
