:root {
  --cream: #faf3e0;
  --cream-dark: #f4e8d0;
  --cream-darker: #f3ddb0;
  --cream-light: #fdfbf7;
  --ink: #3e2723;
  --ink-light: #5d4037;
  --pink: #ff6b9d;
  --pink-light: #ffb8d8;
  --pink-dark: #e893a8;
  --blue: #73c7e3;
  --blue-light: #a8d8e8;
  --blue-dark: #4ecdc4;
  --gold: #e8c478;
  --gold-light: #f5e6c8;
  --stripe-a: #3a2c24;
  --stripe-b: #32251e;
  --ticket-bg: #f2eee6;
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --panel-w: 452.5px;
  --panel-h: 585px;
  --fold-speed: 1.1s;
  --fold-ease: cubic-bezier(0.45, 0, 0.2, 1);
  --folder-color: #f5e6c8;
  --display-font: "Fraunces", serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
body {
  background: repeating-linear-gradient(
    90deg,
    var(--stripe-a) 0 26px,
    var(--stripe-b) 26px 52px
  );
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  min-height: 100vh;
  overflow: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}
body.is-scrolling .star-rain i,
body.is-scrolling .shoot-star,
body.is-scrolling .halftone,
body.is-scrolling .action-lines,
body.is-scrolling .hero-moon .ring-dash {
  animation-play-state: paused !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-footer {
  padding: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-light);
}
.site-footer a {
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: none;
}
@font-face {
  font-family: "Konga Shadow";
  src: url("font/Konga-Next-Shadow.ttf") format("truetype"),
    url("font/Konga-Next-Shadow.otf") format("opentype"),
    url("font/Konga-Next-Shadow.woff2") format("woff2"),
    url("font/Konga-Next-Shadow.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Symphonie Calligraphy";
  src: url("font/SymphonieCalligraphyDEMO-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.halftone,
.action-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.halftone {
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.03;
}
.action-lines {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 50px,
    rgba(62, 39, 35, 0.015) 50px,
    rgba(62, 39, 35, 0.015) 52px
  );
}
.rotating-circle-container {
  position: fixed;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.rotating-circle,
.rotating-circle * {
  -webkit-user-select: none;
  user-select: none;
}
.rotating-circle img {
  -webkit-user-drag: none;
}
.rotating-circle {
  width: 176px;
  height: 176px;
  background: var(--cream-dark);
  border: 5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateCircle 25s linear infinite;
  box-shadow: 0 8px 0 var(--ink-light);
  transform: translateY(-30%);
  position: relative;
}
.rotating-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}
@keyframes rotateCircle {
  0% {
    transform: translateY(-30%) rotate(0);
  }
  100% {
    transform: translateY(-30%) rotate(360deg);
  }
}
.logo-inner {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: counterRotate 25s linear infinite;
  pointer-events: none;
  position: relative;
  z-index: 2;
}
@keyframes counterRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.logo-placeholder {
  width: 122px;
  height: 122px;
  background: var(--pink-light);
  border-radius: 50%;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.logo-png {
  width: 200%;
  height: 200%;
  object-fit: contain;
  transform: none;
  pointer-events: none;
  position: relative;
  z-index: 2;
  top: 40px;
}
.logo-png-fallback {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--ink);
  text-align: center;
  padding: 10px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  display: none;
}
.logo-png[src=""]:not([src]) + .logo-png-fallback,
.logo-png:not([src]) + .logo-png-fallback {
  display: block;
}
.main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.screen {
  position: fixed;
  inset: 18px;
  z-index: 1;
  background: var(--cream);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) var(--cream);
}
.screen::-webkit-scrollbar {
  width: 12px;
}
.screen::-webkit-scrollbar-track {
  background: var(--cream);
}
.screen::-webkit-scrollbar-thumb {
  background: var(--pink);
  border: 3px solid var(--cream);
  border-radius: 8px;
}
.site-frame {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}
.site-frame > .sf-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--cream-dark);
  border-bottom: 4px solid var(--ink);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.top-bar-btn {
  border-radius: 20px;
  position: relative;
  padding: 8px 24px;
  background: var(--cream);
  border: 3px solid var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.2s var(--spring);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--pink-light);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-section {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 560px;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 8px solid var(--ink);
  box-shadow: 0 8px 0 var(--cream-dark), 0 12px 0 var(--ink);
  margin-bottom: -20px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 30px),
    98% calc(100% - 22px),
    96% calc(100% - 28px),
    94% calc(100% - 18px),
    91% calc(100% - 26px),
    88% calc(100% - 20px),
    85% calc(100% - 30px),
    82% calc(100% - 18px),
    79% calc(100% - 28px),
    76% calc(100% - 22px),
    73% calc(100% - 32px),
    70% calc(100% - 20px),
    67% calc(100% - 28px),
    64% calc(100% - 18px),
    61% calc(100% - 30px),
    58% calc(100% - 22px),
    55% calc(100% - 28px),
    52% calc(100% - 18px),
    49% calc(100% - 32px),
    46% calc(100% - 20px),
    43% calc(100% - 28px),
    40% calc(100% - 22px),
    37% calc(100% - 30px),
    34% calc(100% - 18px),
    31% calc(100% - 28px),
    28% calc(100% - 22px),
    25% calc(100% - 30px),
    22% calc(100% - 18px),
    19% calc(100% - 28px),
    16% calc(100% - 22px),
    13% calc(100% - 32px),
    10% calc(100% - 20px),
    7% calc(100% - 28px),
    4% calc(100% - 22px),
    2% calc(100% - 28px),
    0 calc(100% - 20px)
  );
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(62, 39, 35, 0.08));
  pointer-events: none;
  z-index: 10;
}
.hero-wrap {
  position: absolute;
  inset: 0;
}
.hero-halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1px);
  background-size: 11px 11px;
  opacity: 0.04;
  animation: htDrift 80s linear infinite;
}
@keyframes htDrift {
  to {
    background-position: 80px 40px;
  }
}
.hero-moon {
  position: absolute;
  top: 1%;
  left: 46%;
  transform: translateX(-50%);
  height: 65%;
  max-width: 88vw;
  aspect-ratio: 1;
  z-index: 2;
  animation: moonPop 1.1s 0.15s cubic-bezier(0.22, 1.1, 0.32, 1) backwards,
    heroMoonBob 12s 2s ease-in-out infinite;
}
@keyframes moonPop {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0) rotate(-120deg);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08) rotate(7deg);
  }
  75% {
    transform: translateX(-50%) scale(0.96) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(0);
  }
}
@keyframes heroMoonBob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateX(-50%) translateY(-1.6vh) rotate(1.2deg);
  }
}
.hero-moon .ring-outline {
  position: absolute;
  inset: 0;
  border: 3px solid var(--pink);
  border-radius: 50%;
  animation: ringPulse 5.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.015);
  }
}
.hero-moon .ring-dash {
  position: absolute;
  inset: -4%;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.7;
  animation: heroSpin 90s linear infinite;
}
.hero-moon .ring-dash2 {
  position: absolute;
  inset: -8%;
  border: 1.5px dashed var(--pink-light);
  border-radius: 50%;
  opacity: 0.3;
  animation: heroSpinRev 140s linear infinite;
}
@keyframes heroSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes heroSpinRev {
  to {
    transform: rotate(-360deg);
  }
}
.hero-moon .ring-crescent {
  position: absolute;
  inset: 3.5%;
}
.hero-moon .crop-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero-moon .crop-body {
  transform-box: fill-box;
  transform-origin: center;
  animation: heroCropBreathe 9s ease-in-out infinite;
}
@keyframes heroCropBreathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.02) rotate(0.8deg);
  }
}
.hero-moon #moonFig {
  opacity: 0.5;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.4) brightness(0.8);
}
.hero-moon .tw {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 3.4s ease-in-out infinite;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.95;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.68);
  }
}
.shoot-star {
  position: absolute;
  top: 22%;
  left: 0;
  width: 16%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #fdfbf7 60%, #fff);
  opacity: 0;
  transform: translateX(-160%);
  animation: shoot 10s cubic-bezier(0.25, 0.1, 0.75, 0.9) 3s infinite;
  z-index: 1;
}
.shoot-star::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(253, 251, 247, 0.7);
}
@keyframes shoot {
  0%,
  72% {
    opacity: 0;
    transform: translateX(-160%);
  }
  76% {
    opacity: 0.95;
  }
  86%,
  100% {
    opacity: 0;
    transform: translateX(620%);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.95;
  }
  50% {
    opacity: 0.2;
  }
}
.giant {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: "Lilita One", "Archivo Black", sans-serif;
  line-height: 0.95;
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: 0.015em;
  white-space: nowrap;
  pointer-events: none;
  color: var(--blue-dark);
  margin: 0;
  -webkit-text-stroke: 0;
  animation: wordPop 0.9s 0.7s cubic-bezier(0.22, 1.1, 0.32, 1) backwards;
}
.giant-hollow {
  z-index: 7;
  visibility: hidden;
  color: transparent;
  -webkit-text-stroke: 3px rgba(78, 205, 196, 0.95);
  text-shadow: none;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: wordPop 0.9s 0.7s cubic-bezier(0.22, 1.1, 0.32, 1) backwards;
}
.giant-hollow.on {
  visibility: visible;
}
@keyframes wordPop {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0) rotate(-10deg);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1) rotate(2.5deg);
  }
  80% {
    transform: translateX(-50%) scale(0.97) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(0);
  }
}
.hero-piper {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 98%;
  z-index: 6;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hero-piper img {
  height: 100%;
  width: auto;
  max-width: none;
  filter: drop-shadow(6px 10px 0 rgba(62, 39, 35, 0.14));
  animation: piperPop 1s 0.5s cubic-bezier(0.22, 1.1, 0.32, 1) backwards,
    heroFigBob 6s 2.2s ease-in-out infinite;
}
@keyframes piperPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(16deg) translateY(60px);
  }
  55% {
    opacity: 1;
    transform: scale(1.07) rotate(-5deg) translateY(-8px);
  }
  75% {
    transform: scale(0.97) rotate(2deg) translateY(3px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0) translateY(0);
  }
}
@keyframes heroFigBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.star-rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.star-rain i {
  position: absolute;
  top: -5%;
  width: var(--fs, 12px);
  height: var(--fs, 12px);
  background: currentColor;
  clip-path: polygon(
    50% 0,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0 50%,
    38% 38%
  );
  opacity: 0;
  animation: starDrop var(--fd, 7s) var(--fdel, 0s) linear infinite;
}
@keyframes starDrop {
  0% {
    transform: translateY(0) rotate(0) scale(1);
    opacity: 0;
  }
  6% {
    opacity: 0.95;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) rotate(340deg) scale(0.85);
    opacity: 0;
  }
}
.hangers {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hanger {
  position: absolute;
  top: 0;
  left: var(--x);
  transform-origin: top center;
  animation: sway var(--sw, 6s) ease-in-out calc(var(--del) + 1.3s) infinite;
}
@keyframes sway {
  0%,
  100% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(2.2deg);
  }
  70% {
    transform: rotate(-2.2deg);
  }
}
.drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(calc(-100% - 40px));
  animation: hangDrop 1.2s var(--del) cubic-bezier(0.3, 1.35, 0.45, 1) forwards;
}
@keyframes hangDrop {
  to {
    transform: translateY(0);
  }
}
.string {
  width: 2px;
  height: var(--len);
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(93, 64, 55, 0.75) 0 3px,
    transparent 3px 8px
  );
}
.bead {
  width: 7px;
  height: 7px;
  border: 2px solid rgba(93, 64, 55, 0.8);
  border-radius: 50%;
  margin: -2px 0 -2px;
  background: var(--cream);
}
.hstar {
  width: var(--size);
  height: var(--size);
  display: block;
  filter: drop-shadow(2px 3px 0 rgba(62, 39, 35, 0.18));
}
.orbit-ticket {
  position: absolute;
  width: clamp(180px, 18vw, 240px);
  aspect-ratio: 2/1;
  cursor: pointer;
  z-index: 5;
  will-change: transform, left, top, z-index;
  transition: filter 0.25s;
  top: 0;
  left: 0;
}
.orbit-ticket .mini {
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(5px 6px 0 var(--ink));
  transition: transform 0.25s var(--spring);
  animation: miniPop 0.6s var(--spring) backwards;
}
.orbit-ticket:hover .mini {
  transform: translateY(-8px) rotate(-1deg) scale(1.05);
}
.orbit-ticket[data-ticket="about"] .mini {
  animation-delay: 0.9s;
}
.orbit-ticket[data-ticket="socials"] .mini {
  animation-delay: 1.05s;
}
.orbit-ticket[data-ticket="credits"] .mini {
  animation-delay: 1.2s;
}
@keyframes miniPop {
  from {
    opacity: 0;
    transform: translateY(-70px) scale(0.7) rotate(8deg);
  }
}
.orbit-ticket .mini svg.shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.orbit-ticket .mini-path {
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: round;
}
.orbit-ticket .mini-inner {
  display: none;
}
.orbit-ticket[data-ticket="about"] .mini-path {
  fill: var(--pink-light);
}
.orbit-ticket[data-ticket="socials"] .mini-path {
  fill: var(--blue-light);
}
.orbit-ticket[data-ticket="credits"] .mini-path {
  fill: var(--gold);
}
.orbit-ticket .mini-title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Symphonie Calligraphy", "Caveat", cursive;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  pointer-events: none;
}
.mini-stub {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 62%;
  border-left: 2.5px dashed var(--ink);
  opacity: 0.45;
  pointer-events: none;
}
.mini-code {
  position: absolute;
  right: 7%;
  top: 32%;
  width: 13%;
  height: 36%;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 5px
  );
  opacity: 0.65;
  pointer-events: none;
}
.mini-sub {
  position: absolute;
  left: 0;
  right: 38%;
  bottom: 10%;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.55rem, 0.9vw, 0.75rem);
  letter-spacing: 0.3em;
  color: var(--ink-light);
  pointer-events: none;
}
.ticket-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62, 39, 35, 0.88);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ticket-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.ticket-stage {
  width: min(1150px, 94vw);
  aspect-ratio: 2/1;
  position: relative;
}
.ticket-stage .ticket {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}
.ticket-stage .ticket svg.shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.ticket-stage .ticket-main,
.ticket-stage .ticket-stub {
  position: absolute;
  top: 0;
  bottom: 0;
}
.ticket-stage .ticket-main {
  left: 0;
  width: 62%;
  padding: 6.5% 6% 6.5% 6.5%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.ticket-stage .ticket-stub {
  left: 62%;
  right: 0;
  padding: 4.5% 4% 4.5% 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.ticket-stage .ticket-slot {
  color: var(--ink);
  width: 100%;
  height: 100%;
  font-family: "Space Grotesk", sans-serif;
}
.ticket-stage .ticket-title {
  font-family: "Symphonie Calligraphy", "Caveat", cursive;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1;
  color: var(--ink);
  margin: 0;
}
.ticket-stage .ticket-role {
  font-family: "Special Elite", cursive;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  margin-top: 12px;
  border-bottom: 3px dashed var(--pink);
  display: inline-block;
  padding-bottom: 4px;
  color: var(--pink);
}
.ticket-stage .ticket-desc {
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  line-height: 1.55;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}
.ticket-stage .socials-title {
  font-family: "Symphonie Calligraphy", "Caveat", cursive;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.ticket-stage .socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 12px;
  justify-items: center;
}
.ticket-stage .social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.ticket-stage .social-circle {
  width: clamp(48px, 5.5vw, 70px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--cream-dark);
  box-shadow: 4px 4px 0 var(--ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--spring);
}
.ticket-stage .social-link:hover .social-circle {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--pink);
  background: var(--pink-light);
}
.ticket-stage .social-circle svg {
  width: 52%;
  height: 52%;
  fill: var(--ink);
  display: block;
}
.ticket-stage .social-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  color: var(--ink);
}
.ticket-stage .credits-title {
  font-family: "Symphonie Calligraphy", "Caveat", cursive;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 6px 0;
}
.ticket-stage .credits-cols {
  columns: 3;
  column-gap: 8px;
}
.ticket-stage .credit-group {
  break-inside: avoid;
  border: 2.5px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.25);
}
.ticket-stage .cg-head {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.12em;
  padding: 3px 8px 2px;
  border-bottom: 2.5px solid var(--ink);
  background: var(--pink-light);
  color: var(--ink);
}
.ticket-stage .cg-head.blue {
  background: var(--blue-light);
}
.ticket-stage .cg-head.gold {
  background: var(--gold);
}
.ticket-stage .cg-head.cream {
  background: var(--cream-dark);
}
.ticket-stage .cg-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  padding: 2px 8px;
  border-bottom: 1.5px dashed rgba(93, 64, 55, 0.4);
}
.ticket-stage .cg-row:last-child {
  border-bottom: 0;
}
.ticket-stage .cg-lab {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  text-transform: uppercase;
  flex: 1;
}
.ticket-stage .cg-right {
  text-align: right;
}
.ticket-stage .cg-right a {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.8rem, 1.05vw, 1rem);
  letter-spacing: 0.05em;
  color: var(--pink-dark);
  text-decoration: none;
}
.ticket-stage .cg-right a:hover {
  color: var(--pink);
}
.ticket-stage .cg-right i {
  display: block;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.52rem;
  color: var(--ink-light);
  opacity: 0.85;
  margin-top: 2px;
}
.ticket-stage .cg-right .cg-plain {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.8rem, 1.05vw, 1rem);
  letter-spacing: 0.05em;
  color: var(--ink);
  white-space: nowrap;
}
.ticket-stage .stub-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  text-align: center;
  transform: translateY(-15%);
}
.ticket-stage .stub-logo {
  width: clamp(240px, 36vw, 440px);
  max-width: none;
  aspect-ratio: 1;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket-stage .stub-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(4px 5px 0 rgba(62, 39, 35, 0.2));
}
.ticket-stage .stub-logo.no-img img {
  display: none;
}
.ticket-stage .stub-logo.no-img .stub-logo-fallback {
  display: block;
}
.ticket-stage .stub-logo-fallback {
  display: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.5;
}
.ticket-stage .stub-note {
  max-width: 200px;
}
.ticket-stage .hand {
  font-family: "Symphonie Calligraphy", "Caveat", cursive;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.35;
  color: var(--ink-light);
  transform: rotate(-2deg);
}
.ticket-stage .hand-sign {
  font-family: "Symphonie Calligraphy", "Caveat", cursive;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--pink);
  transform: rotate(-2deg);
  margin-top: 4px;
}
.ticket-stage .ticket.enter {
  animation: ticketIn 1.05s cubic-bezier(0.22, 0.9, 0.3, 1) both;
}
.ticket-stage .ticket.exit {
  animation: ticketOut 0.7s cubic-bezier(0.7, 0, 0.8, 0.2) both;
}
@keyframes ticketIn {
  0% {
    opacity: 0;
    transform: translateX(115%) rotate(6deg) skewX(-10deg);
    filter: drop-shadow(-18px 30px 40px rgba(0, 0, 0, 0.5));
    animation-timing-function: cubic-bezier(0.16, 0.84, 0.28, 1);
  }
  10% {
    opacity: 1;
  }
  55% {
    transform: translateX(-2.2%) rotate(-1.6deg) skewX(1.5deg);
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.42));
    animation-timing-function: var(--spring);
  }
  72% {
    transform: translateX(1%) rotate(0.8deg) skewX(0deg);
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.38));
    animation-timing-function: ease-in-out;
  }
  86% {
    transform: translateX(-0.4%) rotate(-0.3deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0) skewX(0);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
  }
}
@keyframes ticketOut {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0) skewX(0);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
  }
  100% {
    opacity: 0;
    transform: translateX(-115%) rotate(-8deg) skewX(10deg);
    filter: drop-shadow(18px 30px 40px rgba(0, 0, 0, 0.5));
  }
}
.divider-line {
  transform-box: fill-box;
  transform-origin: 50% 0;
}
.ticket-stage .ticket.enter .divider-line {
  animation: dividerIn 0.6s cubic-bezier(0.22, 1.2, 0.32, 1) 0.62s both;
}
@keyframes dividerIn {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.stream-section {
  position: relative;
  z-index: 1;
  padding: 40px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.stream-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.stream-column {
  border: 6px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 12px 12px 0 rgba(255, 107, 157, 0);
  background: transparent;
  position: relative;
  perspective: 1500px;
  transition: border-color 0.6s var(--smooth) 0.1s,
    box-shadow 0.6s var(--smooth) 0.1s;
}
.stream-column.framed,
.stream-column:has(.countdown-section.in-view) {
  border-color: var(--ink);
  box-shadow: 12px 12px 0 var(--pink);
}
.stream-column.idle {
  animation: idleBreath 5s ease-in-out infinite;
}
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--ink);
  border-bottom: 5px solid var(--pink);
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.status-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  background: var(--pink);
  border: 3px solid var(--cream);
  border-radius: 30px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  animation: gentlePulse 3s ease-in-out infinite;
}
.stream-meta {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.status-actions {
  display: flex;
  gap: 12px;
}
.action-btn {
  padding: 10px 24px;
  border: 3px solid var(--cream);
  border-radius: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s var(--spring);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  transform-origin: center;
  position: relative;
}
.btn-primary {
  background: var(--pink);
  color: var(--cream);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
}
.action-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
  background: var(--pink-dark);
}
.btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
}
.action-btn:active {
  transform: scale(0.97) translateY(0);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
  transition-duration: 0.08s;
}
.action-btn svg {
  transition: transform 0.3s var(--spring);
}
.action-btn:hover svg {
  transform: scale(1.05);
}
.stream-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  overflow: hidden;
}
.stream-viewport iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.inner-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  gap: 12px;
  background: transparent;
  position: relative;
  height: 0;
  z-index: 3;
}
.sep-line-wrap {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 5px,
    transparent 5px 11px
  );
}
.sep-ornament {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.sep-ornament svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
}
.sep-ornament.idle svg {
  animation: ornamentSpin 12s linear infinite;
}
.countdown-section {
  padding: 38px 32px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--cream-dark) 0%,
    var(--gold-light) 100%
  );
  transform-style: preserve-3d;
}
.countdown-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(62, 39, 35, 0.08) 1px,
    transparent 1.2px
  );
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
  animation: htDrift 40s linear infinite;
  z-index: 0;
}
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.sparkle svg {
  width: 100%;
  height: 100%;
  display: block;
}
.countdown-section.in-view .sparkle {
  animation: sparkleFloat 5s ease-in-out infinite;
}
.upcoming-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.upcoming-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.upcoming-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.2;
}
.upcoming-title span {
  color: var(--pink);
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.time-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--ink);
  line-height: 1;
  background: var(--cream-light);
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 68px;
  box-shadow: 4px 4px 0 var(--gold);
  transition: all 0.3s var(--spring);
  position: relative;
}
.time-value:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 6px 8px 0 var(--gold);
  background: var(--pink-light);
}
.time-value.ticking {
  animation: digitTick 0.4s var(--spring);
}
.time-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.time-sep {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--pink);
  align-self: center;
  padding-bottom: 22px;
}
.time-sep.idle {
  animation: blink 1.2s ease-in-out infinite;
}
.next-up-card {
  background: var(--cream-light);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 4px 4px 0 var(--ink-light);
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--spring);
}
.next-up-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink-light);
}
.next-up-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--pink);
  border-radius: 14px 0 0 14px;
}
.next-up-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-light);
  border: 3px solid var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.3s var(--spring);
}
.next-up-card:hover .next-up-icon {
  transform: scale(1.05);
  background: var(--gold-light);
}
.next-up-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.next-up-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.next-up-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.next-up-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.2;
}
.next-up-type {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 2px;
}
.reminder-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s var(--spring);
  box-shadow: 5px 5px 0 var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.reminder-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 7px 8px 0 var(--gold);
  background: var(--blue-dark);
}
.reminder-btn:active {
  transform: scale(0.97);
  box-shadow: 2px 2px 0 var(--gold);
  transition-duration: 0.08s;
}
.reminder-btn.active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.bell-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.bell-icon.ringing {
  animation: bellRing 0.8s var(--spring);
  stroke: var(--cream);
}
.reminder-btn.active .bell-icon {
  stroke: var(--cream);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-check {
  display: none;
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reminder-btn.active .btn-check {
  display: inline-block;
}
.lib-tip {
  background: var(--cream-light);
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.lib-tip-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  margin-top: 2px;
  box-shadow: 2px 2px 0 var(--ink);
}
.lib-tip-text {
  font-family: "Special Elite", cursive;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink);
}
.lib-tip-text strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--pink);
  font-weight: 700;
}
.schedule-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.schedule-note {
  font-size: 0.85rem;
  color: var(--ink);
  padding: 10px 20px;
  background: var(--cream-light);
  border: 2px solid var(--ink);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.3s var(--spring);
}
.schedule-note:hover {
  transform: scale(1.05);
  box-shadow: 5px 6px 0 var(--ink);
  background: var(--pink-light);
}
.schedule-note strong {
  color: var(--pink);
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.05em;
}
.schedule-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-card {
  background: var(--cream-light);
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 8px 8px 0 var(--gold);
  transition: all 0.3s var(--spring);
  position: relative;
}
.info-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 13px 13px 0 var(--gold);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px dashed var(--ink-light);
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border: 3px solid var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
  transition: all 0.3s var(--spring);
}
.info-card:hover .card-icon {
  transform: scale(1.05);
  background: var(--gold-light);
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.librarian-note {
  font-family: "Special Elite", cursive;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  position: relative;
  padding-left: 28px;
}
.librarian-note::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 3.5rem;
  color: var(--pink);
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
}
.note-author {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--ink-light);
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  text-align: right;
}
.note-author::before {
  content: "\2014 ";
  color: var(--pink);
}
.schedule-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--cream-light);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.3s var(--spring);
  cursor: default;
}
.schedule-item:hover {
  background: var(--pink-light);
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--ink);
}
.schedule-day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.schedule-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 700;
  background: var(--cream);
  padding: 6px 14px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  transition: all 0.3s var(--spring);
}
.schedule-item:hover .schedule-time {
  background: var(--pink);
  color: var(--cream);
  transform: scale(1.05);
}
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.toast {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 14px;
  border: 3px solid var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 6px 6px 0 var(--pink);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s var(--elastic);
  white-space: nowrap;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 90vw;
}
.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.toast-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.toast-icon.toast-warn svg {
  stroke: var(--gold);
}
.toast-icon.toast-error svg {
  stroke: var(--pink);
}
.toast-icon.toast-success svg {
  stroke: var(--blue);
}
.toast-icon.toast-bell svg {
  stroke: var(--gold);
}
.confetti-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 9999;
  animation: confettiBurst 0.8s var(--smooth) forwards;
}
.art-board-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.art-board-header {
  text-align: center;
  margin-bottom: 50px;
}
.art-board-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--ink);
  text-shadow: 4px 4px 0 var(--pink-light);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.art-board-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.fb-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px;
  background: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0 6px,
      transparent 6px 12px
    ),
    linear-gradient(135deg, #5d4037 0%, #3e2723 55%, #4a3227 100%);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 12px 12px 0 var(--ink-light),
    inset 0 0 0 2px rgba(232, 196, 120, 0.55), inset 0 0 0 5px var(--ink),
    inset 0 0 24px rgba(0, 0, 0, 0.45);
}
.fb-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 5px solid var(--gold);
  pointer-events: none;
  filter: drop-shadow(1px 2px 0 rgba(0, 0, 0, 0.4));
}
.fb-corner.tl {
  top: 6px;
  left: 6px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 10px 0 4px 0;
}
.fb-corner.tr {
  top: 6px;
  right: 6px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 10px 0 4px;
}
.fb-corner.bl {
  bottom: 6px;
  left: 6px;
  border-right: 0;
  border-top: 0;
  border-radius: 4px 0 0 10px;
}
.fb-corner.br {
  bottom: 6px;
  right: 6px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 4px 10px 0;
}
.fb-viewport {
  position: relative;
  height: 660px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  outline: 2px dashed rgba(62, 39, 35, 0.35);
  outline-offset: -10px;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 10px,
      rgba(62, 39, 35, 0.03) 10px 20px
    ),
    linear-gradient(135deg, #f5e6c8 0%, #e8d5a8 100%);
  box-shadow: inset 0 0 60px rgba(62, 39, 35, 0.18);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) var(--cream-dark);
}
.fb-viewport::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.fb-viewport::-webkit-scrollbar-track {
  background: var(--cream-dark);
  border-radius: 8px;
  border: 2px solid var(--ink);
}
.fb-viewport::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 8px;
  border: 3px solid var(--cream-dark);
}
.fb-canvas {
  position: relative;
  height: 100%;
  min-width: 100%;
}
.polaroid {
  position: absolute;
  background: #fff;
  padding: 12px 12px 40px;
  width: 175px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 4px 4px 0 rgba(62, 39, 35, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.12) !important;
  z-index: 100 !important;
  box-shadow: 8px 8px 0 rgba(62, 39, 35, 0.4), 0 4px 16px rgba(0, 0, 0, 0.25);
}
.pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #ff6b6b, #c0392b);
  border-radius: 50%;
  box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
}
.polaroid-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: 0.1em;
  opacity: 0.4;
}
.polaroid-caption {
  text-align: center;
  padding-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.sticky-note {
  position: absolute;
  background: #fff59d;
  padding: 20px;
  width: 180px;
  min-height: 120px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
  z-index: 11;
  transform-origin: center;
  pointer-events: none;
}
.sticky-note::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: rgba(192, 57, 43, 0.4);
  border-radius: 2px;
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62, 39, 35, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.8);
  transition: transform 0.4s var(--spring);
}
.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border: 5px solid var(--cream);
  border-radius: 4px;
  box-shadow: 12px 12px 0 var(--pink), 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}
.lightbox-caption {
  text-align: center;
  margin-top: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--ink);
}
.p5-global-loader {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 160px;
  height: 160px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  animation: globalLoaderAppear 0.3s ease-out 0.2s forwards,
    globalLoaderFadeOut 0.5s ease-in 3s forwards;
}
@keyframes globalLoaderAppear {
  from {
    opacity: 0;
    transform: scale(0.3) rotate(-90deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes globalLoaderFadeOut {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
  }
}
.p5-global-loader .loader-text-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotateText 4s linear infinite;
}
@keyframes rotateText {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.p5-global-loader .loader-svg {
  width: 100%;
  height: 100%;
}
.p5-global-loader .loader-svg text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  fill: var(--ink);
  text-transform: uppercase;
  font-weight: 900;
}
.p5-global-loader .p5-book {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 78px;
  transform: translate(-50%, -50%);
}
.p5-global-loader .p5-book-inner {
  width: 100%;
  height: 100%;
  position: relative;
  animation: p5BookFlip2D 3s var(--bounce) infinite;
}
@keyframes p5BookFlip2D {
  0% {
    transform: scaleX(1) skewY(0);
  }
  20% {
    transform: scaleX(0.95) skewY(-2deg);
  }
  40% {
    transform: scaleX(0) skewY(0);
  }
  60% {
    transform: scaleX(-0.95) skewY(2deg);
  }
  80% {
    transform: scaleX(-1) skewY(0);
  }
  100% {
    transform: scaleX(1) skewY(0);
  }
}
.p5-global-loader .p5-book-cover {
  width: 100%;
  height: 100%;
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 2px 6px 6px 2px;
  position: relative;
}
.p5-global-loader .p5-book-cover::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 18px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
  z-index: -1;
}
.p5-global-loader .p5-book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--ink);
}
.schedule-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62, 39, 35, 0.96);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.schedule-overlay::-webkit-scrollbar {
  display: none;
}
.schedule-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.schedule-stage {
  position: relative;
  width: 700px;
  height: 472px;
  transform-origin: center center;
  transform: scale(1.5);
}
.notebook {
  position: relative;
  width: 700px;
  height: 472px;
  border-radius: 10px;
  background: var(--pink);
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  animation: nbIn 0.8s var(--spring) both, nbIdle 6s ease-in-out 1s infinite,
    shadowShift 8s ease-in-out infinite;
}
@keyframes nbIn {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-3deg) translateY(60px);
  }
  60% {
    transform: scale(1.03) rotate(0.5deg) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0) translateY(0);
  }
}
@keyframes nbIdle {
  0%,
  100% {
    transform: rotate(0) translateY(0);
  }
  25% {
    transform: rotate(0.15deg) translateY(-1px);
  }
  75% {
    transform: rotate(-0.15deg) translateY(1px);
  }
}
@keyframes shadowShift {
  0%,
  100% {
    box-shadow: 10px 10px 0 var(--ink);
  }
  25% {
    box-shadow: 11px 9px 0 var(--ink);
  }
  50% {
    box-shadow: 10px 11px 0 var(--ink);
  }
  75% {
    box-shadow: 9px 10px 0 var(--ink);
  }
}
.notebook::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(62, 39, 35, 0.1) 1px,
    transparent 1.4px
  );
  background-size: 8px 8px;
  opacity: 0.4;
  animation: speedLines 10s linear infinite;
}
@keyframes speedLines {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}
.notebook .p5-halftone {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  border-radius: 6px;
  background: radial-gradient(circle, #1a1a1a 1px, transparent 1.5px);
  background-size: 6px 6px;
  opacity: 0;
  mix-blend-mode: overlay;
  animation: halftoneFlash 8s ease-in-out infinite;
}
@keyframes halftoneFlash {
  0%,
  85%,
  100% {
    opacity: 0;
  }
  90% {
    opacity: 0.06;
  }
  95% {
    opacity: 0;
  }
}
.notebook .dust {
  position: absolute;
  inset: 0;
  z-index: 21;
  pointer-events: none;
  overflow: hidden;
  border-radius: 6px;
}
.notebook .dust i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: dustFloat 7s linear infinite;
  opacity: 0;
}
.notebook .dust i:nth-child(1) {
  left: 15%;
  animation-duration: 6s;
}
.notebook .dust i:nth-child(2) {
  left: 35%;
  animation-delay: 1.5s;
  animation-duration: 8s;
}
.notebook .dust i:nth-child(3) {
  left: 55%;
  animation-delay: 3s;
  animation-duration: 7s;
}
.notebook .dust i:nth-child(4) {
  left: 75%;
  animation-delay: 2s;
  animation-duration: 9s;
}
.notebook .dust i:nth-child(5) {
  left: 90%;
  animation-delay: 4s;
  animation-duration: 6.5s;
}
@keyframes dustFloat {
  0% {
    transform: translateY(100%) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-480px) scale(1.2);
    opacity: 0;
  }
}
.page {
  position: absolute;
  top: 8px;
  width: 330px;
  height: 450px;
  z-index: 2;
  background: #fff;
  border: 3px solid var(--ink);
}
.page.left {
  left: 9px;
  border-radius: 6px 2px 2px 6px;
  animation: pageBreatheL 5s ease-in-out infinite;
}
.page.right {
  left: 351px;
  border-radius: 2px 6px 6px 2px;
  overflow: hidden;
  animation: pageBreatheR 5s ease-in-out infinite 0.5s;
}
@keyframes pageBreatheL {
  0%,
  100% {
    box-shadow: 2px 2px 4px rgba(62, 39, 35, 0.1);
  }
  50% {
    box-shadow: 3px 3px 8px rgba(62, 39, 35, 0.18);
  }
}
@keyframes pageBreatheR {
  0%,
  100% {
    box-shadow: -2px 2px 4px rgba(62, 39, 35, 0.1);
  }
  50% {
    box-shadow: -3px 3px 8px rgba(62, 39, 35, 0.18);
  }
}
.seam {
  position: absolute;
  left: 344px;
  top: 8px;
  width: 2px;
  height: 450px;
  z-index: 3;
  background: rgba(62, 39, 35, 0.28);
}
.rings {
  position: absolute;
  left: 324px;
  top: 14px;
  width: 42px;
  height: 438px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
}
.ring {
  width: 42px;
  height: 15px;
  border-radius: 8px;
  background: #eae5da;
  border: 2px solid var(--ink);
  position: relative;
  animation: ringShine 3s ease-in-out infinite;
}
.ring:nth-child(2) {
  animation-delay: 0.2s;
}
.ring:nth-child(3) {
  animation-delay: 0.4s;
}
.ring:nth-child(4) {
  animation-delay: 0.6s;
}
.ring:nth-child(5) {
  animation-delay: 0.8s;
}
.ring:nth-child(6) {
  animation-delay: 1s;
}
.ring:nth-child(7) {
  animation-delay: 1.2s;
}
.ring::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: var(--ink);
  opacity: 0.4;
  border-radius: 2px;
}
.ring::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  opacity: 0;
  animation: ringGlint 4s ease-in-out infinite;
}
.ring:nth-child(odd)::before {
  animation-delay: 1s;
}
@keyframes ringShine {
  0%,
  100% {
    box-shadow: 0 1px 2px rgba(62, 39, 35, 0.2);
  }
  50% {
    box-shadow: 0 1px 4px rgba(62, 39, 35, 0.35),
      inset 0 1px 2px rgba(255, 255, 255, 0.5);
  }
}
@keyframes ringGlint {
  0%,
  70%,
  100% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
.tab {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 3;
  background: var(--blue-light);
  border-right: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
  animation: tabPulse 3s ease-in-out infinite;
}
.tab .mo {
  writing-mode: vertical-rl;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--ink-light);
}
@keyframes tabPulse {
  0%,
  100% {
    background: var(--blue-light);
  }
  50% {
    background: var(--blue);
  }
}
.lcontent {
  position: relative;
  z-index: 2;
  padding: 24px 22px 22px 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.log-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.log-scroll::-webkit-scrollbar {
  display: none;
}
.log-marker {
  position: absolute;
  right: 6px;
  top: 54px;
  width: 11px;
  height: 30px;
  z-index: 6;
  pointer-events: none;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 2px;
  transform: skewY(-12deg);
  box-shadow: 2px 2px 0 var(--ink);
  transition: top 0.09s linear;
  display: none;
}
.rhead {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--pink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 26px 9px 16px;
  border-bottom: 3px solid var(--pink-dark);
  animation: headerPulse 4s ease-in-out infinite;
}
.rhead .t {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  color: #fff;
  font-size: 1.15rem;
  transform: skewX(-3deg);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.rhead .t b {
  color: #1a1a1a;
  font-weight: 400;
}
.rhead .yr {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
@keyframes headerPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.05);
  }
}
.rows {
  position: relative;
  z-index: 2;
  padding: 4px 14px 14px 14px;
}
.row {
  display: grid;
  grid-template-columns: 48px 1fr 20px;
  align-items: center;
  gap: 8px;
  padding: 9px 2px;
  position: relative;
  transition: transform 0.1s ease;
}
.row > * {
  position: relative;
  z-index: 1;
}
.row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  bottom: 2px;
  z-index: 0;
  background: var(--pink);
  clip-path: polygon(1% 0%, 99% 0%, 98% 100%, 2% 100%);
  transform: scaleX(0) skewX(-4deg);
  transform-origin: left center;
  transition: transform 0.18s cubic-bezier(0.7, 0, 0.3, 1);
}
.row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 1;
  background: var(--pink-dark);
  transform: scaleY(0) skewY(-8deg);
  transform-origin: top;
  transition: transform 0.15s cubic-bezier(0.7, 0, 0.3, 1) 0.05s;
}
.when {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 2px;
}
.when b {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--pink-dark);
  transition: transform 0.1s ease, color 0.1s ease;
}
.when span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  transition: color 0.1s ease;
}
.nt {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 5px;
  background: var(--pink-light);
  border: 1.5px solid var(--pink);
  transition: transform 0.1s ease, color 0.1s ease, background 0.12s ease,
    border-color 0.12s ease;
}
.nt strong {
  font-weight: 700;
}
.row.game .nt {
  background: var(--blue-light);
  border-color: var(--blue);
}
.row .ic {
  justify-self: end;
  width: 18px;
  height: 18px;
  opacity: 0.9;
  margin-right: 4px;
  transition: transform 0.15s var(--spring), color 0.1s ease;
}
.row .ic svg {
  width: 100%;
  height: 100%;
}
.row.chat .ic {
  color: var(--pink);
}
.row.game .ic {
  color: var(--blue-dark);
}
.row:hover {
  transform: translateX(3px) skewX(-1deg);
}
.row:hover::before {
  transform: scaleX(1) skewX(-4deg);
}
.row:hover::after {
  transform: scaleY(1) skewY(-8deg);
}
.row:hover .when b {
  color: #fff !important;
  transform: scale(1.08);
}
.row:hover .when span {
  color: rgba(255, 255, 255, 0.9) !important;
}
.row:hover .nt {
  color: #fff;
  transform: translateX(2px);
  background: transparent;
  border-color: transparent;
}
.row:hover .ic {
  color: #fff;
  opacity: 1;
  transform: scale(1.15) rotate(-5deg);
}
.row.game::before {
  background: var(--blue);
}
.row.game::after {
  background: var(--blue-dark);
}
.row.game .when b {
  color: var(--blue-dark);
}
.row.game:hover::before {
  background: var(--blue-dark);
}
.row.game:hover::after {
  background: var(--blue);
}
.row.today {
  animation: todayGlow 2.5s ease-in-out infinite;
}
.row.today::before {
  transform: scaleX(1) skewX(-4deg);
  background: var(--pink-dark);
}
.row.today::after {
  transform: scaleY(1) skewY(-8deg);
  background: var(--pink);
}
.row.today .when b {
  color: #fff;
}
.row.today .when span {
  color: rgba(255, 255, 255, 0.7);
}
.row.today .nt {
  color: #fff;
  background: transparent;
  border-color: transparent;
}
.row.today .ic {
  color: var(--pink-light);
  animation: iconBounce 2s ease-in-out infinite;
}
.row.today:hover::before {
  background: #ff1744;
}
.row.game.today::before {
  background: var(--blue-dark);
}
.row.game.today::after {
  background: var(--blue);
}
.row.game.today .when b {
  color: #fff;
}
.row.game.today .when span {
  color: rgba(255, 255, 255, 0.7);
}
.row.game.today .ic {
  color: var(--blue-light);
}
@keyframes todayGlow {
  0%,
  100% {
    box-shadow: none;
  }
  50% {
    box-shadow: inset 0 0 12px rgba(255, 107, 157, 0.15),
      0 0 8px rgba(255, 107, 157, 0.1);
  }
}
@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(-2px) rotate(-3deg);
  }
  75% {
    transform: translateY(1px) rotate(2deg);
  }
}
.empty-state {
  text-align: center;
  padding: 40px 20px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink-light);
  opacity: 0.6;
  font-size: 0.8rem;
  line-height: 1.8;
}
.empty-state i {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  opacity: 0.4;
}
.page.right .corner-fold {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 10;
  border-style: solid;
  border-width: 0 0 22px 22px;
  border-color: transparent transparent #f0ebe3 transparent;
  filter: drop-shadow(-1px -1px 1px rgba(62, 39, 35, 0.15));
  animation: cornerWiggle 5s ease-in-out infinite;
}
@keyframes cornerWiggle {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.schedule-overlay .log-scroll .reveal:not(.seen) {
  opacity: 0;
  transform: translateX(60px) rotate(3deg) skewX(-12deg) scale(0.8);
}
.schedule-overlay .log-scroll .reveal.seen {
  opacity: 1;
  transform: none;
  transition: opacity 0.25s ease,
    transform 0.4s cubic-bezier(0.17, 0.67, 0.29, 1.4);
}
.schedule-overlay .librarian-note {
  background: var(--cream-light);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 12px;
  position: relative;
  box-shadow: 3px 3px 0 rgba(62, 39, 35, 0.15);
}
.schedule-overlay .librarian-note::before {
  content: none;
}
.note-header {
  margin-bottom: 12px;
  border-bottom: 2px dashed var(--ink-light);
  padding-bottom: 8px;
}
.note-stamp {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--pink-dark);
  border: 1.5px solid var(--pink-dark);
  padding: 2px 6px;
  border-radius: 3px;
  transform: rotate(-1deg);
  margin-bottom: 6px;
}
.note-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin: 0;
}
.note-body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 10px;
  font-style: italic;
}
.schedule-card-header {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  background: var(--ink);
  color: var(--cream);
  padding: 5px 10px;
  text-align: center;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  border-bottom: 1px dashed var(--ink-light);
  font-size: 0.7rem;
  font-weight: 700;
}
.schedule-row:last-child {
  border-bottom: none;
}
.schedule-row .day-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--pink-dark);
}
.schedule-row .time-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: var(--ink-light);
}
.note-footer {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6rem;
  line-height: 1.6;
  color: var(--ink-light);
  font-style: italic;
  margin: 0;
}
.note-signature {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--pink-dark);
  font-style: normal;
}
.page-sticker {
  position: absolute;
  width: 55px;
  height: auto;
  bottom: 25px;
  right: 30px;
  z-index: 6;
  transform: rotate(-9deg);
  filter: drop-shadow(2px 3px 2px rgba(62, 39, 35, 0.3));
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.schedule-overlay.open .page-sticker {
  animation: stickerSlap 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.18) both;
}
@keyframes stickerSlap {
  0% {
    opacity: 0;
    transform: rotate(-24deg) scale(1.55) translateY(-16px);
    filter: drop-shadow(6px 10px 6px rgba(62, 39, 35, 0.18));
  }
  60% {
    opacity: 1;
    transform: rotate(-5deg) scale(0.93);
  }
  80% {
    transform: rotate(-12deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: rotate(-9deg) scale(1);
    filter: drop-shadow(2px 3px 2px rgba(62, 39, 35, 0.3));
  }
}
.anim {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}
.anim.in-view {
  opacity: 1;
  visibility: visible;
  animation-fill-mode: both;
}
.anim-card.in-view {
  animation: cardEntrance 0.8s var(--smooth) both;
}
.anim-magnetic.in-view {
  animation: magneticPulse 0.6s var(--spring) both;
}
.anim-scan.in-view {
  animation: digitalScanReveal 0.7s var(--smooth) both;
}
.anim-unfold.in-view {
  animation: bookFlipDown 1s var(--smooth) both;
}
.anim-glitch.in-view {
  animation: glitchReveal 0.5s var(--smooth) both;
}
.anim-quantum.in-view {
  animation: quantumPop 0.6s var(--spring) both;
}
.anim-elastic-colon.in-view {
  animation: elasticColon 0.5s var(--bounce) both;
}
.anim-liquid.in-view {
  animation: liquidRise 0.7s var(--smooth) both;
}
.anim-super-elastic.in-view {
  animation: superElastic 0.6s var(--bounce) both;
}
.anim-momentum.in-view {
  animation: momentumSlide 0.7s var(--smooth) both;
}
.anim-ticket.in-view {
  animation: ticketPrint 0.6s var(--smooth) both;
}
.anim-ornament-drop.in-view {
  animation: ornamentDimensionalDrop 0.6s var(--spring) both;
}
.anim-line-l.in-view {
  animation: lineRevealL 0.7s var(--smooth) both;
}
.anim-line-r.in-view {
  animation: lineRevealR 0.7s var(--smooth) both;
}
.char {
  display: inline-block;
  opacity: 0;
}
.upcoming-header.in-view .char {
  animation: charCascade 0.4s var(--smooth) both;
}
.d-1 {
  animation-delay: 0.05s !important;
}
.d-2 {
  animation-delay: 0.15s !important;
}
.d-3 {
  animation-delay: 0.25s !important;
}
.d-4 {
  animation-delay: 0.35s !important;
}
.d-5 {
  animation-delay: 0.45s !important;
}
.d-6 {
  animation-delay: 0.55s !important;
}
.d-7 {
  animation-delay: 0.65s !important;
}
.d-8 {
  animation-delay: 0.8s !important;
}
.d-9 {
  animation-delay: 1.1s !important;
}
.d-10 {
  animation-delay: 1.4s !important;
}
.d-11 {
  animation-delay: 1.6s !important;
}
.d-12 {
  animation-delay: 1.7s !important;
}
.d-13 {
  animation-delay: 1.8s !important;
}
.d-14 {
  animation-delay: 1.9s !important;
}
.d-15 {
  animation-delay: 2.05s !important;
}
.d-16 {
  animation-delay: 2.2s !important;
}
.d-17 {
  animation-delay: 2.35s !important;
}
.d-18 {
  animation-delay: 2.5s !important;
}
@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes magneticPulse {
  0% {
    opacity: 0;
    transform: translateY(-15px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(3px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes digitalScanReveal {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bookFlipDown {
  0% {
    opacity: 0;
    transform: perspective(1500px) rotateX(-90deg);
    transform-origin: top center;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: perspective(1500px) rotateX(0deg);
    transform-origin: top center;
  }
}
@keyframes glitchReveal {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes quantumPop {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes elasticColon {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes liquidRise {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes superElastic {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes momentumSlide {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes ticketPrint {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes ornamentDimensionalDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: translateY(4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes charCascade {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lineRevealL {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes lineRevealR {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes idleBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 107, 157, 0.2);
  }
}
@keyframes sparkleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0) rotate(0deg);
  }
  20% {
    opacity: 0.8;
    transform: translateY(-12px) scale(1.2) rotate(72deg);
  }
  80% {
    opacity: 0.3;
    transform: translateY(-50px) scale(0.6) rotate(216deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-65px) scale(0) rotate(288deg);
  }
}
@keyframes bellRing {
  0%,
  100% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-12deg);
  }
  30% {
    transform: rotate(9deg);
  }
  40% {
    transform: rotate(-7deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  70% {
    transform: rotate(2deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  90% {
    transform: rotate(0.5deg);
  }
}
@keyframes digitTick {
  0% {
    transform: translateY(40%);
    opacity: 0;
  }
  50% {
    transform: translateY(-8%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes confettiBurst {
  0% {
    transform: translate(0, 0) rotate(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--cx), var(--cy)) rotate(var(--cr)) scale(0);
    opacity: 0;
  }
}
@keyframes ornamentSpin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.board-shift {
  transition: transform var(--fold-speed) var(--fold-ease);
}
.vod-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(62, 39, 35, 0.85);
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vod-overlay .stage {
  touch-action: pan-y;
}
.vod-stack {
  touch-action: pan-y;
}
.arc-wheel,
.mini-folder {
  touch-action: none;
}
.vod-overlay.active {
  display: flex;
  opacity: 1;
}
.vod-overlay .stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board {
  position: relative;
  width: 905px;
  height: var(--panel-h);
  perspective: 1600px;
  pointer-events: none;
  z-index: 3;
}
.board.gone {
  visibility: hidden;
}
.board.settle {
  animation: settle 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.board.bump-open {
  animation: bumpOpen var(--fold-speed) var(--fold-ease);
}
.board.bump-close {
  animation: bumpClose var(--fold-speed) var(--fold-ease);
}
@keyframes settle {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bumpOpen {
  0% {
    transform: scale(0.985);
  }
  60% {
    transform: scale(1.012);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bumpClose {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.012);
  }
  100% {
    transform: scale(1);
  }
}
.panel {
  position: absolute;
  top: 0;
  width: var(--panel-w);
  height: var(--panel-h);
}
.panel-right {
  left: var(--panel-w);
  z-index: 1;
  pointer-events: auto;
}
.panel-left {
  left: 0;
  z-index: 3;
  transform-origin: right center;
  transform-style: preserve-3d;
  transition: transform var(--fold-speed) var(--fold-ease);
  pointer-events: auto;
  will-change: transform;
}
.panel-left.no-trans {
  transition: none !important;
}
.board.is-closed .panel-left {
  transform: rotateY(180deg);
}
.board.is-open .panel-left {
  transform: rotateY(0deg);
}
.face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.face-cover {
  transform: rotateY(180deg);
}
.panel-left.show-cover .face-inner {
  visibility: hidden;
}
.panel-left:not(.show-cover) .face-cover {
  visibility: hidden;
}
.clip {
  position: absolute;
  inset: 0;
}
.face-inner .clip {
  clip-path: path(
    "M45 0 H452.5 V585 H25 Q0 585 0 560 V308 L25 296 V25 Q25 0 45 0 Z"
  );
  background: linear-gradient(90deg, #e8d5a8 0%, var(--folder-color) 100%);
}
.face-cover .clip {
  clip-path: path(
    "M0 0 H402.5 Q427.5 0 427.5 25 V248 L452.5 258 V300 L427.5 310 V322 L452.5 332 V560 Q452.5 585 427.5 585 H0 V0 Z"
  );
  background: var(--folder-color);
}
.panel-right .clip {
  clip-path: path(
    "M0 0 H402.5 Q427.5 0 427.5 25 V248 L452.5 258 V300 L427.5 310 V560 Q427.5 585 402.5 585 H0 V0 Z"
  );
  background: linear-gradient(135deg, var(--gold-light) 0%, #e8d5a8 100%);
}
.panel-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.side-date {
  position: absolute;
  left: 300px;
  top: 436px;
  transform: rotate(90deg);
  transform-origin: center;
  font-family: var(--display-font);
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 2.3rem;
  letter-spacing: 0.18em;
  pointer-events: none;
  filter: drop-shadow(1px 2px 0 rgba(62, 39, 35, 0.2));
  white-space: nowrap;
}
.cover-logo {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 360px;
  transform: translate(-50%, -50%) rotate(-4deg);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(3px 4px 0 rgba(62, 39, 35, 0.22));
}
.vod-stack {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 28px;
  right: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 6px 26px 10px 20px;
  scrollbar-width: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  z-index: 2;
}
.vod-stack::-webkit-scrollbar {
  display: none;
}
.board.is-open .vod-stack {
  opacity: 1;
  pointer-events: auto;
}
.vod-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  height: 82px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.35s ease;
  will-change: transform;
  text-decoration: none;
  color: inherit;
}
.vod-item:hover .vod-title {
  color: var(--pink);
}
.vod-info {
  flex: 1;
  text-align: right;
  line-height: 1.1;
  pointer-events: none;
}
.vod-date {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.vod-date b {
  color: var(--pink-dark);
  font-size: 1.8rem;
  font-weight: 900;
}
.vod-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
  line-height: 1.25;
}
.vod-thumb {
  flex-shrink: 0;
  width: 180px;
  height: 82px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink-light);
  transition: transform 0.3s var(--spring), border-color 0.2s, box-shadow 0.2s,
    opacity 0.2s;
}
.vod-thumb:hover {
  transform: translateX(-6px);
  border-color: var(--pink);
  box-shadow: 4px 4px 0 var(--pink);
}
.vod-item.zoom-src .vod-thumb {
  opacity: 0;
}
.zoom-thumb {
  position: absolute;
  z-index: 400;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--ink);
  border-radius: 5px;
  opacity: 0;
  cursor: pointer;
  box-shadow: 12px 14px 0 var(--ink), 18px 20px 0 var(--pink);
  transition: left 0.55s var(--spring), top 0.55s var(--spring),
    width 0.55s var(--spring), height 0.55s var(--spring), opacity 0.25s ease;
}
.zoom-thumb.on {
  opacity: 1;
  pointer-events: auto;
}
.zoom-thumb.no-trans {
  transition: none !important;
}
.zoom-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  background: rgba(62, 39, 35, 0.3);
}
.zoom-summary {
  position: absolute;
  left: 44px;
  top: 56px;
  width: 330px;
  z-index: 390;
  pointer-events: none;
  background: rgba(250, 243, 224, 0.85);
  border-radius: 10px;
  padding: 18px 20px;
  transform: rotate(-2deg) translateX(26px);
  opacity: 0;
  transition: opacity 0.35s ease 0.12s, transform 0.45s var(--spring) 0.12s,
    left 0.45s var(--spring), top 0.45s var(--spring);
}
.zoom-summary.on {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(-2deg) translateX(0);
}
.zoom-summary .zdate {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  color: var(--pink-dark);
  margin-bottom: 4px;
}
.zoom-summary h4 {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--ink);
  text-shadow: 3px 3px 0 var(--pink-light);
  margin-bottom: 14px;
}
.zoom-summary p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
}
.zoom-summary .meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.deco-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: visible;
  pointer-events: none;
}
.deco-layer .drag {
  pointer-events: auto;
}
.drag {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  will-change: transform, opacity;
}
.drag.dragging {
  cursor: grabbing;
}
img.empty {
  display: none !important;
}
.emo-sticker {
  position: absolute;
  filter: drop-shadow(2px 3px 0 rgba(62, 39, 35, 0.25));
  pointer-events: none;
}
.jit {
  animation: jitter 0.45s steps(2, end) infinite;
}
@keyframes jitter {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0.8px, -0.6px);
  }
  100% {
    transform: translate(-0.5px, 0.4px);
  }
}
.doodle {
  position: absolute;
  filter: drop-shadow(2px 3px 0 rgba(62, 39, 35, 0.2));
  pointer-events: none;
}
.doodle path {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.doodle.star path {
  fill: var(--gold);
  fill-opacity: 0;
  stroke: #8a6a1e;
  stroke-width: 3.5;
  animation: drawLoop 5s ease-in-out infinite 1s;
}
.doodle.star .star-fill {
  stroke: none;
  fill: var(--gold);
  fill-opacity: 0;
  animation: fillIn 5s ease-in-out infinite 1s;
}
@keyframes drawLoop {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  38% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  88% {
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
}
@keyframes fillIn {
  0%,
  38% {
    fill-opacity: 0;
  }
  55% {
    fill-opacity: 0.85;
  }
  88% {
    fill-opacity: 0.85;
  }
  100% {
    fill-opacity: 0;
  }
}
@keyframes angerThrob {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.22) rotate(4deg);
  }
}
@keyframes shockFlicker {
  0%,
  55% {
    opacity: 1;
  }
  58% {
    opacity: 0.35;
  }
  62% {
    opacity: 1;
  }
  66% {
    opacity: 0.45;
  }
  70%,
  100% {
    opacity: 1;
  }
}
.circled {
  position: relative;
  display: inline-block;
  color: var(--pink-dark);
}
.circled > svg {
  position: absolute;
  left: -16%;
  top: -38%;
  width: 132%;
  height: 176%;
  overflow: visible;
  pointer-events: none;
}
.circled path {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: scrib 5s ease-in-out infinite;
}
@keyframes scrib {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  45% {
    stroke-dashoffset: 0;
  }
  78% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  92% {
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
}
.burst {
  position: absolute;
  width: 94px;
  pointer-events: none;
  filter: drop-shadow(3px 4px 0 rgba(62, 39, 35, 0.25));
  animation: burstWobble 3.2s steps(1, end) infinite;
}
@keyframes burstWobble {
  0%,
  100% {
    transform: rotate(10deg) scale(1);
  }
  45% {
    transform: rotate(7deg) scale(1.05);
  }
  50% {
    transform: rotate(13deg) scale(0.97);
  }
  55% {
    transform: rotate(9deg) scale(1.04);
  }
  60% {
    transform: rotate(10deg) scale(1);
  }
}
.deco-layer .polaroid {
  width: 172px;
  background: #fff;
  border: 2.5px solid var(--ink);
  padding: 10px 10px 12px;
  box-shadow: 6px 7px 0 rgba(62, 39, 35, 0.25);
  transform: rotate(var(--r, 0deg));
  transition: box-shadow 0.2s ease;
}
.dragging.polaroid {
  box-shadow: 12px 14px 0 rgba(62, 39, 35, 0.3);
}
.pol-img,
.pol-fallback {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
  border: 2px solid var(--ink);
  background: var(--cream-dark);
}
.pol-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--ink);
}
img.empty + .pol-fallback {
  display: flex;
}
.pol-cap {
  font-family: "Patrick Hand", cursive;
  font-size: 1.15rem;
  color: var(--ink-light);
  text-align: center;
  padding-top: 8px;
}
.mini-pol {
  position: absolute;
  width: 112px;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 6px 6px 8px;
  box-shadow: 4px 5px 0 rgba(62, 39, 35, 0.22);
}
.mini-pol .pol-img,
.mini-pol .pol-fallback {
  height: 88px;
}
.mini-pol .pol-fallback {
  font-size: 1rem;
}
.mini-pol .pol-cap {
  font-size: 0.95rem;
  padding-top: 4px;
}
.clip-img,
.clip-fb {
  position: absolute;
  pointer-events: none;
}
.clip-fb {
  display: none;
}
img.empty + .clip-fb {
  display: block;
}
.paperclip {
  top: -30px;
  left: 22px;
  width: 34px;
  height: 92px;
  transform: rotate(38deg);
}
.tape {
  position: absolute;
  width: 70px;
  height: 20px;
  background: rgba(255, 107, 157, 0.45);
  border: 1.5px solid rgba(62, 39, 35, 0.2);
  pointer-events: none;
}
.tape.gold {
  background: rgba(232, 196, 120, 0.55);
}
.barcode-sticker {
  position: absolute;
  background: var(--cream-light);
  border: 2px solid var(--ink);
  padding: 6px 8px 4px;
  box-shadow: 3px 4px 0 rgba(62, 39, 35, 0.2);
}
.barcode-sticker .bars {
  display: block;
  width: 96px;
  height: 26px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 4px,
    var(--ink) 4px 7px,
    transparent 7px 9px,
    var(--ink) 9px 10px,
    transparent 10px 13px
  );
}
.barcode-sticker .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--ink-light);
  text-align: center;
}
.deco-layer .sticky-note {
  width: 162px;
  background: var(--gold-light);
  border: 2px solid var(--ink);
  padding: 14px 12px 12px;
  transform: rotate(-3deg);
  box-shadow: 4px 5px 0 rgba(62, 39, 35, 0.22);
  font-family: "Patrick Hand", cursive;
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--ink);
}
.deco-layer .sticky-note::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 64px;
  height: 16px;
  background: rgba(255, 107, 157, 0.4);
  border: 1.5px solid rgba(62, 39, 35, 0.25);
}
.deco-layer .sticky-note b {
  color: var(--pink-dark);
}
.torn-page {
  position: absolute;
  padding: 12px 14px;
  width: 160px;
  font-family: "Patrick Hand", cursive;
  color: var(--ink-light);
  font-size: 1.05rem;
  line-height: 23px;
  background: repeating-linear-gradient(
      0deg,
      transparent 0 22px,
      rgba(115, 199, 227, 0.35) 22px 23px
    ),
    var(--cream-light);
  clip-path: polygon(
    2% 0,
    98% 1%,
    100% 6%,
    97% 94%,
    99% 100%,
    3% 99%,
    0 93%,
    1% 8%
  );
  filter: drop-shadow(4px 5px 0 rgba(62, 39, 35, 0.18));
}
.lib-card {
  position: absolute;
  width: 172px;
  background: var(--cream-light);
  border: 2.5px solid var(--ink);
  padding: 10px 12px;
  font-family: "Special Elite", cursive;
  box-shadow: 4px 5px 0 rgba(62, 39, 35, 0.2);
}
.lc-head {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  margin-bottom: 6px;
}
.lc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--ink-light);
  padding: 3px 0;
  border-bottom: 1px dashed rgba(93, 64, 55, 0.4);
}
.lc-row:last-child {
  border-bottom: none;
}
.lc-stamp {
  color: var(--blue-dark);
  transform: rotate(-3deg);
  font-weight: 700;
}
.lc-stamp.late {
  color: var(--pink-dark);
}
.deco-layer .ticket {
  position: absolute;
  width: 118px;
  background: var(--pink-light);
  border: 2.5px solid var(--ink);
  padding: 8px 10px 8px 24px;
  box-shadow: 3px 4px 0 rgba(62, 39, 35, 0.25);
  overflow: hidden;
}
.deco-layer .ticket::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  border-left: 2px dashed var(--ink);
  opacity: 0.6;
}
.tk-main {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.tk-sub {
  font-family: "Patrick Hand", cursive;
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.1;
}
.arc-wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 6;
  pointer-events: none;
  overflow: visible;
  transition: filter 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.arc-wheel.blurred {
  filter: blur(4px) saturate(0.8);
  opacity: 0.5;
  z-index: 1;
}
.mini-folder {
  position: absolute;
  left: 0;
  top: 0;
  width: 144px;
  height: 188px;
  margin: -94px 0 0 -72px;
  pointer-events: auto;
  cursor: pointer;
}
.mini-folder svg {
  overflow: visible;
  display: block;
}
.mini-folder svg path {
  stroke: #3e2723;
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.mf-txt {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  pointer-events: none;
}
.mf-m {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  text-shadow: 2px 2px 0 var(--ink-light);
}
.mf-y {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  margin-top: 4px;
  color: #fff;
  text-shadow: 2px 2px 0 var(--ink-light);
}
.fly {
  position: fixed;
  left: 0;
  top: 0;
  width: 452.5px;
  height: 585px;
  z-index: 10001;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 0.85s cubic-bezier(0.3, 1.18, 0.32, 1),
    opacity 0.85s ease;
}
.fly.fly-exit {
  transition: transform 0.95s cubic-bezier(0.55, 0, 0.85, 0.35),
    opacity 0.95s cubic-bezier(0.4, 0, 0.8, 0.4);
}
.fly-flip {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.5, 0.05, 0.25, 1);
  filter: drop-shadow(5px 7px 0 rgba(62, 39, 35, 0.16));
}
.fly-flip svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.arc-guides {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
}
.arc-guides .guide {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 2 12;
}
.arc-guides .guide-top {
  stroke: var(--ink-light);
  opacity: 0.55;
}
.arc-guides .guide-bot {
  stroke: var(--pink-dark);
  opacity: 0.45;
}
@media (max-width: 1440px) {
  .schedule-stage {
    transform: scale(1.25);
  }
}
@media (max-width: 1200px) {
  .schedule-stage {
    transform: scale(1.05);
  }
  .hero-piper img {
    height: 92%;
  }
}
@media (max-width: 1024px) {
  .stream-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .top-bar {
    padding: 0 22px;
  }
  .top-bar-btn {
    font-size: 1.15rem;
    padding: 5px 20px;
  }
  .hero-section {
    min-height: 520px;
  }
  .schedule-stage {
    transform: scale(1.1);
  }
  .fb-viewport {
    height: 560px;
  }
}
@media (max-width: 900px) {
  .schedule-stage {
    transform: scale(0.95);
  }
  .ticket-stage {
    aspect-ratio: 1.5/1;
  }
  .ticket-stage .credits-cols {
    columns: 2;
  }
}
@media (max-width: 768px) {
  .stream-section {
    padding: 30px 20px 80px;
  }
  .status-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .status-left {
    justify-content: center;
  }
  .status-actions {
    justify-content: center;
  }
  .sidebar {
    grid-template-columns: 1fr;
  }
  .countdown-grid {
    gap: 5px;
  }
  .time-value {
    min-width: 58px;
    padding: 10px 10px;
  }
  .countdown-section {
    padding: 30px 20px 30px;
  }
  .inner-separator {
    padding: 0 20px;
  }
  .sep-ornament {
    width: 32px;
    height: 32px;
  }
  .sep-ornament svg {
    width: 14px;
    height: 14px;
  }
  .next-up-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .next-up-card::before {
    width: 100%;
    height: 5px;
    left: 0;
    top: 0;
    bottom: auto;
    border-radius: 15px 15px 0 0;
  }
  .next-up-info {
    text-align: center;
  }
  .schedule-footer {
    flex-direction: column;
  }
  .top-bar {
    height: 60px;
    padding: 0 16px;
  }
  .top-bar-btn {
    font-size: 1rem;
    padding: 6px 16px;
    gap: 6px;
  }
  .rotating-circle {
    width: 180px;
    height: 180px;
    border-width: 4px;
    box-shadow: 0 6px 0 var(--ink-light);
  }
  .logo-inner {
    width: 160px;
    height: 160px;
  }
  .logo-placeholder {
    width: 130px;
    height: 130px;
  }
  .logo-png {
    top: 40px;
  }
  .hero-section {
    min-height: 480px;
  }
  .giant {
    font-size: clamp(3.6rem, 15vw, 7rem);
  }
  .orbit-ticket {
    width: clamp(140px, 22vw, 200px);
  }
  .ticket-stage {
    aspect-ratio: 1.3/1;
  }
  .ticket-stage .ticket-main,
  .ticket-stage .ticket-stub {
    padding: 5.5% 4.5%;
  }
  .ticket-stage .ticket-desc {
    font-size: 0.85rem;
  }
  .ticket-stage .credits-cols {
    columns: 1;
  }
  .ticket-stage .socials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ticket-stage .stub-logo {
    width: clamp(190px, 40vw, 320px);
  }
  .art-board-section {
    padding: 50px 20px;
  }
  .fb-viewport {
    height: 460px;
  }
}
@media (max-width: 640px) {
  .hero-piper img {
    height: 88%;
  }
  .hero-moon {
    height: 56%;
  }
}
@media (max-width: 480px) {
  .status-actions {
    flex-direction: column;
  }
  .action-btn {
    width: 100%;
    justify-content: center;
  }
  .countdown-grid {
    gap: 4px;
  }
  .time-value {
    font-size: 1.4rem;
    min-width: 50px;
    padding: 8px 8px;
  }
  .time-sep {
    font-size: 1.2rem;
  }
  .schedule-note {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  .upcoming-title {
    font-size: 1.5rem;
  }
  .next-up-name {
    font-size: 1.1rem;
  }
  .reminder-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
  html {
    font-size: 15px;
  }
  .top-bar {
    height: 56px;
    padding: 0 12px;
  }
  .top-bar-btn {
    font-size: 0.9rem;
    padding: 5px 12px;
    gap: 5px;
  }
  .rotating-circle {
    width: 140px;
    height: 140px;
    border-width: 3px;
    box-shadow: 0 5px 0 var(--ink-light);
  }
  .logo-inner {
    width: 120px;
    height: 120px;
  }
  .logo-placeholder {
    width: 90px;
    height: 90px;
  }
  .logo-png {
    top: 35px;
  }
  .hero-section {
    min-height: 420px;
  }
  .giant {
    font-size: clamp(2.6rem, 16vw, 4.6rem);
  }
  .orbit-ticket {
    width: clamp(108px, 32vw, 150px);
  }
  .hero-moon {
    height: 50%;
    top: 0;
  }
  .card-title {
    font-size: 1.3rem;
  }
  .card-icon {
    width: 36px;
    height: 36px;
  }
  .librarian-note {
    font-size: 0.92rem;
  }
  .schedule-stage {
    transform: scale(0.62);
  }
  .ticket-stage {
    width: 96vw;
    aspect-ratio: 0.95/1;
  }
  .ticket-stage .ticket-title {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }
  .ticket-stage .ticket-role {
    font-size: 1rem;
  }
  .ticket-stage .stub-logo {
    width: clamp(150px, 46vw, 240px);
  }
  .ticket-stage .socials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 8px;
  }
  .ticket-stage .social-circle {
    width: clamp(42px, 13vw, 56px);
  }
  .fb-viewport {
    height: 380px;
  }
  .fb-frame {
    padding: 10px;
  }
}
@media (max-width: 380px) {
  html {
    font-size: 14px;
  }
  .top-bar-btn {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .rotating-circle {
    width: 120px;
    height: 120px;
    border-width: 3px;
    box-shadow: 0 4px 0 var(--ink-light);
  }
  .logo-inner {
    width: 100px;
    height: 100px;
  }
  .logo-placeholder {
    width: 75px;
    height: 75px;
  }
  .logo-png {
    top: 30px;
  }
  .hero-section {
    min-height: 380px;
  }
  .giant {
    font-size: clamp(2.1rem, 17vw, 3.6rem);
  }
  .orbit-ticket {
    width: clamp(92px, 36vw, 130px);
  }
  .schedule-stage {
    transform: scale(0.52);
  }
  .ticket-stage {
    aspect-ratio: 0.8/1;
  }
  .ticket-stage .ticket-main,
  .ticket-stage .ticket-stub {
    overflow-y: auto;
  }
  .ticket-stage .socials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fb-viewport {
    height: 320px;
  }
}
@media (max-width: 340px) {
  .schedule-stage {
    transform: scale(0.46);
  }
  .top-bar-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
  }
}
@media (max-height: 640px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    height: 100vh;
  }
  .hero-moon {
    height: 44%;
    top: 0;
  }
  .hero-piper img {
    height: 78%;
  }
  .giant {
    bottom: 4%;
  }
  .rotating-circle {
    width: 90px;
    height: 90px;
  }
  .logo-inner {
    width: 80px;
    height: 80px;
  }
  .logo-placeholder {
    width: 62px;
    height: 62px;
  }
  .logo-png {
    top: 20px;
  }
  .schedule-stage {
    transform: scale(0.4);
  }
}
.vod-overlay .stage {
  transition: transform var(--fold-speed) var(--fold-ease);
}
.arc-wheel.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.action-btn:focus-visible,
.schedule-item:focus-visible,
.reminder-btn:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}
@media (max-width: 1024px) {
  .fb-viewport {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .fb-canvas {
    min-width: 0;
    margin: 0 auto;
  }
  #corkboard > .sticky-note {
    left: 50% !important;
    top: auto !important;
    bottom: 24px !important;
    transform: translateX(-50%) rotate(-4deg) !important;
  }
}
@media (max-width: 1024px) {
  .hero-halftone,
  .halftone,
  .action-lines,
  .countdown-section::before,
  .notebook::before,
  .jit,
  .dust i {
    animation: none !important;
  }
}
@media (max-width: 1024px) {
  .art-board-section {
    padding: 40px 12px 60px;
    overflow: scroll;
  }
  .art-board-title {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }
  .art-board-subtitle {
    font-size: 0.8rem;
    padding: 0 8px;
  }
  .fb-frame {
    padding: 10px;
    max-width: 100%;
  }
  .fb-viewport {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) var(--cream-dark);
  }
  .fb-canvas {
    min-width: 0;
    margin: 0 auto;
  }
  #corkboard > .sticky-note {
    left: 50% !important;
    top: auto !important;
    bottom: 24px !important;
    transform: translateX(-50%) rotate(-4deg) !important;
  }
}
