
:root{
  --card-pad: clamp(16px, 3.5vw, 28px);

  --bg-image: url('assets/background.jpg');
  --overlay: rgba(0,0,0,0.45);
  --text: #f6f6f6;
  --muted: #d0d0d0;
  --accent: #ffffff;
  --btn-bg: rgba(0,0,0,0.7);
  --btn-hover: rgba(0,0,0,0.9);
  --border-height: 14px;
  --border-pattern: repeating-linear-gradient(90deg, #000 0 12px, #fff 12px 24px);
}

*{ box-sizing: border-box; }
html, body{ height:100%; margin:0; color:var(--text); background:#000; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; }

.site-wrap{
  min-height:100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  position: relative;
}

.site-wrap::after{
  content:"";
  position:absolute; inset:0;
  background: var(--overlay);
  pointer-events:none;
}


.top-border{
  position: sticky;
  top: 0;
  z-index: 4;
  height: 6px; /* thinner top border */
  background: repeating-linear-gradient(90deg, #000 0 10px, #fff 10px 20px);
  width: 100%;
  pointer-events: none;
}


.header{
  position: relative; z-index: 5;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding: clamp(16px, 4vw, 28px) clamp(16px, 5vw, 48px);
}

.brand{ font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); }

.nav{ display:flex; gap:.65rem; flex-wrap:wrap; }
.btn{
  display:inline-block; padding:.6rem 1rem; border:1px solid #fff; color:#fff; text-decoration:none;
  border-radius:999px; background:var(--btn-bg); transition:transform 120ms ease, background 120ms ease;
}
.btn:hover{ transform: translateY(-2px); background:var(--btn-hover); }

.hero{ position:relative; z-index:5; display:grid; place-items:center; min-height: 72vh; padding: min(6vw, 48px); }

.hero-inner{
  width:min(920px, 94vw);
  background: rgba(255, 128, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(3px);
  padding: var(--card-pad);
  border-radius: 18px;
}

.header-image{
  display:block;
  width: 100%;
  max-height: 182px; /* ~30% thinner than 260px */
  object-fit: contain;
  margin: 0 0 12px 0; /* no bleed; matches inner box width */
  border-radius: 0;
}

.hero-inner h1{ margin:.25rem 0 .5rem 0; font-size: clamp(28px, 5.5vw, 48px); }
.hero-inner p{ margin:0 0 1rem 0; color: var(--muted); }

.footer{
  position:relative; z-index:5; text-align:center;
  padding:20px; color: var(--muted); border-top:1px solid rgba(255,255,255,0.14);
}

/* Top-right badge */
.badge-card{ display:none; /* old fixed badge removed */
  position: fixed;
  top: 18px; right: 18px;
  z-index: 1100;
  width: 164px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 10px;
  backdrop-filter: blur(3px);
  text-align:center;
}
.badge-card img{
  display:block;
  width:100%; height: 120px; object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}
.badge-card .title{
  font-weight: 700; font-size: .95rem; letter-spacing:.04em;
}

/* Player */
.player{
  position: fixed; right: 18px; bottom: 18px; z-index: 1200;
  display:flex; align-items:center; gap:8px;
  background: rgba(0,0,0,0.7);
  border:1px solid rgba(255,255,255,0.2);
  padding:8px 12px; border-radius:999px; backdrop-filter: blur(3px);
}
.player button{
  all:unset; cursor:pointer; border:1px solid #fff; border-radius:999px; padding:6px 12px; color:#fff;
}
.player span{ font-size:.86rem; color:var(--muted); }

.badge-inline{
  display:flex; align-items:center; gap:10px;
}
.badge-inline img{
  display:block; height:64px; width:auto; transform: translateY(-6px); object-fit:cover; border-radius:10px;
}
.badge-inline .title{ font-weight:700; font-size:1rem; letter-spacing:.04em; }

.footer{ display:none !important; }

/* Music image toggle */
.music-toggle{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-block;
  width: 160px;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  user-select: none;
}
.music-toggle.playing{
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse{
  0% { transform: scale(1); }
  50%{ transform: scale(1.04); }
  100%{ transform: scale(1); }
}
