:root {
  --bg1: #6b3f2a;
  --bg2: #8b5a3c;
  --bg3: #4b2b1e;
  --accent: #ffd24d;
  --neon1: #ff5b00;
  --neon2: #7cffcb;
  --frame: #ffd24d;
  --boar-emoji: "🐗";
  --cursor-size: 36px;
}

/* boar fur pattern */
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
  overflow: hidden;
}
body {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAtklEQVQYV42QMQrCQBBFX5YlJxGxEG+QwguI5BoWITdYDyCi4C0kWIh9Ci8gFhaeZBlWZxUSowj53QyP94dJ6Jnkm1vnuNSkIEIwYLAsKu864E4hsZb6apgOg0KB4hAQaEGrwyo31HfVaLKBUFa6RVycG6PFutkkOqLJcLyAx7+gBlSH09vUprgYsjGUe0FC6IJ6stvklvNNK0exUgtpoU51gnls52FZnCzBv+/6zM97/r21N/gEVsA5C2jAJcwAAAAASUVORK5CYII=")
    repeat, linear-gradient(180deg, var(--bg1), var(--bg2) 40%, var(--bg3) 100%);
  background-size: 20px 20px, auto;
  background-blend-mode: overlay, normal;
  color: #fff;
  display: grid;
  place-items: center;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

/* retro frame */
.shell {
  width: min(95vw, 1100px);
  height: min(88vh, 640px);
  border: 12px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 6px rgba(255, 210, 77, 0.12), 0 16px 40px rgba(0, 0, 0, 0.6);
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  box-sizing: border-box;
  border-radius: 22px;
  overflow: hidden;
}

/* header yikes */
.header {
  position: absolute;
  left: 18px;
  top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo {
  font-size: 20px;
  padding: 6px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--neon1), var(--neon2));
  color: #111;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 59, 138, 0.12);
}

/* center video */
.player-wrap {
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1));
  border-radius: 12px;
  padding: 14px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
  position: relative;
}
video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* marquee + badges */
.bottom {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.marquee {
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(255, 255, 255, 0.02));
  border: 2px solid rgba(255, 255, 255, 0.06);
  animation: glow 2.8s linear infinite;
}
@keyframes glow {
  50% {
    box-shadow: 0 0 18px rgba(124, 255, 203, 0.08);
  }
}

/* boar cursor: hide native and show emoji element */
* {
  cursor: none;
}
#boar-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  font-size: var(--cursor-size);
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-12deg);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.6));
  transition: transform 0.06s linear;
}

/* tiny responsive tweaks */
@media (max-width: 600px) {
  .shell {
    padding: 12px;
    border-radius: 12px;
  }
  #boar-cursor {
    font-size: 28px;
  }
}
