@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Ribeye+Marrow&display=swap');

:root {
  --green: #82ca58;
  --green-dark: #438f35;
  --pink: #ec4b98;
  --pink-dark: #c92f78;
  --blue: #59a7d9;
  --yellow: #ffd51d;
  --orange: #ffb74d;
  --ink: #202020;
  --muted: #4b5c58;
  --paper: #fffdf7;
  --white: #ffffff;
  --line: 3px solid var(--ink);
  --shadow: 10px 10px 0 rgba(32, 32, 32, .1);
}

* { box-sizing: border-box; }

html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: 'Fredoka', 'Arial Rounded MT Bold', 'Trebuchet MS', sans-serif;
  background:
    radial-gradient(circle at 9% 14%, rgba(236, 75, 152, .18), transparent 17%),
    radial-gradient(circle at 91% 11%, rgba(89, 167, 217, .19), transparent 18%),
    radial-gradient(circle at 84% 80%, rgba(255, 213, 29, .22), transparent 19%),
    radial-gradient(circle at 16% 71%, rgba(130, 202, 88, .18), transparent 18%),
    linear-gradient(135deg, #fff8fd, #effaff 46%, #fffbe5);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .54;
  background-image:
    radial-gradient(circle, rgba(236, 75, 152, .18) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(89, 167, 217, .16) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(130, 202, 88, .16) 0 2px, transparent 3px);
  background-size: 92px 92px, 118px 118px, 72px 72px;
  background-position: 10px 20px, 50px 70px, 80px 20px;
}

body.intro-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .98), rgba(241, 251, 251, .96) 47%, rgba(255, 246, 220, .98));
  transition: opacity .65s ease, visibility .65s ease;
}

.intro-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-logo { position: relative; display: grid; justify-items: center; z-index: 2; animation: introPop .9s cubic-bezier(.17, .89, .32, 1.24) both; }
.intro-slogan { margin-bottom: -7px; color: var(--pink); font-family: 'Ribeye Marrow', Georgia, serif; font-size: clamp(20px, 3vw, 34px); transform: rotate(-7deg); text-shadow: 1px 1px 0 var(--ink); }
.intro-k { color: var(--green); font-size: clamp(145px, 23vw, 260px); font-weight: 700; line-height: .75; text-shadow: 4px 4px 0 var(--ink), -4px 4px 0 var(--ink), 4px -4px 0 var(--ink), -4px -4px 0 var(--ink), 17px 3px 0 var(--pink), 31px 3px 0 var(--blue), 45px 3px 0 var(--yellow); }
.intro-name { margin-top: 28px; color: var(--green); font-size: clamp(48px, 8vw, 92px); font-weight: 700; letter-spacing: -4px; line-height: .8; text-shadow: 2px 2px 0 var(--ink), -2px 2px 0 var(--ink), 2px -2px 0 var(--ink), -2px -2px 0 var(--ink); }
.intro-dots { position: absolute; bottom: 11%; display: flex; gap: 10px; }
.intro-dots i { width: 11px; height: 11px; border: 2px solid var(--ink); border-radius: 50%; animation: dotBounce .8s infinite alternate; }
.intro-dots i:nth-child(1) { background: var(--green); }
.intro-dots i:nth-child(2) { background: var(--pink); animation-delay: .12s; }
.intro-dots i:nth-child(3) { background: var(--blue); animation-delay: .24s; }
.intro-dots i:nth-child(4) { background: var(--yellow); animation-delay: .36s; }
.intro-skip { position: absolute; right: 25px; bottom: 24px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-weight: 700; }
.intro-target { position: absolute; width: min(36vw, 430px); aspect-ratio: 1; border: var(--line); border-radius: 50%; background: radial-gradient(circle, var(--yellow) 0 24%, var(--pink) 25% 43%, var(--blue) 44% 62%, var(--green) 63% 100%); animation: targetDrift 9s ease-in-out infinite; }
.intro-target-one { left: -12vw; top: -16vw; }
.intro-target-two { right: -15vw; bottom: -18vw; animation-delay: -4s; }

.scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 200; width: 0; height: 4px; background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue)); }
.bubble { position: fixed; z-index: -2; border-radius: 50%; pointer-events: none; opacity: .25; filter: blur(3px); transition: transform .1s linear; }
.b1 { width: 230px; height: 230px; left: -90px; top: 180px; background: var(--pink); }
.b2 { width: 200px; height: 200px; right: -70px; top: 110px; background: var(--yellow); }
.b3 { width: 190px; height: 190px; left: 18%; bottom: -90px; background: var(--blue); }
.b4 { width: 170px; height: 170px; right: 14%; bottom: 60px; background: var(--green); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; background: rgba(255, 255, 255, .76); border-bottom: 1px solid rgba(32, 32, 32, .12); backdrop-filter: blur(16px); transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { background: rgba(255, 255, 255, .91); box-shadow: 0 10px 35px rgba(52, 78, 84, .1); }
.nav { width: min(1160px, calc(100% - 36px)); min-height: 78px; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.brand-k { display: grid; place-items: center; width: 48px; height: 48px; color: var(--green); font-size: 38px; line-height: 1; text-shadow: 2px 2px 0 var(--ink), -2px 2px 0 var(--ink), 2px -2px 0 var(--ink), -2px -2px 0 var(--ink), 6px 0 0 var(--pink), 10px 0 0 var(--blue), 14px 0 0 var(--yellow); }
.brand-name { color: var(--green); font-size: 26px; letter-spacing: -1.4px; text-shadow: 1.4px 1.4px 0 var(--ink), -1.4px 1.4px 0 var(--ink), 1.4px -1.4px 0 var(--ink), -1.4px -1.4px 0 var(--ink); }
.nav-links { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.nav-links a { padding: 10px 14px; border-radius: 999px; transition: transform .2s ease, background .2s ease; }
.nav-links a:not(.nav-btn):hover { background: rgba(255, 213, 29, .4); transform: translateY(-2px); }
.nav-links .nav-btn { margin-left: 8px; padding-inline: 20px; color: white; background: var(--pink); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--yellow); }
.nav-links .nav-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--yellow); }
.nav-toggle { display: none; width: 46px; height: 42px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 3px; margin: 5px 0; border-radius: 4px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { position: relative; width: min(1160px, calc(100% - 36px)); min-height: 94vh; margin: auto; padding: 118px 0 58px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 34px; }
.hero-content, .hero-visual { position: relative; z-index: 2; }
.eyebrow { width: fit-content; margin: 0 0 20px; padding: 9px 14px; border: 2px solid var(--ink); border-radius: 999px; background: rgba(255, 255, 255, .78); font-size: 14px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; box-shadow: 4px 4px 0 rgba(89, 167, 217, .25); }
.eyebrow span { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--green); animation: livePulse 1.4s ease-in-out infinite; }
.slogan { width: fit-content; margin: 0 0 -6px 14px; color: var(--pink); font-family: 'Ribeye Marrow', Georgia, serif; font-size: clamp(23px, 3.1vw, 40px); transform: rotate(-6deg); text-shadow: 1.2px 1.2px 0 var(--ink); }
h1 { margin: 0; display: flex; align-items: flex-end; line-height: .78; }
.big-k { display: inline-block; color: var(--green); font-size: clamp(145px, 17vw, 225px); font-weight: 700; letter-spacing: -15px; text-shadow: 4px 4px 0 var(--ink), -4px 4px 0 var(--ink), 4px -4px 0 var(--ink), -4px -4px 0 var(--ink), 16px 3px 0 var(--pink), 29px 3px 0 var(--blue), 42px 3px 0 var(--yellow); }
.word-logo { display: inline-block; margin: 0 0 16px 9px; color: var(--green); font-size: clamp(51px, 7.3vw, 92px); font-weight: 700; letter-spacing: -5px; text-shadow: 2.2px 2.2px 0 var(--ink), -2.2px 2.2px 0 var(--ink), 2.2px -2.2px 0 var(--ink), -2.2px -2.2px 0 var(--ink); }
.hero-text { max-width: 610px; margin: 26px 0 0; color: #3f5552; font-size: clamp(18px, 2vw, 23px); font-weight: 600; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 12px 23px; border: var(--line); border-radius: 999px; color: var(--ink); font-weight: 700; cursor: pointer; box-shadow: 6px 6px 0 rgba(32, 32, 32, .14); transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; }
.btn:hover { transform: translate(-2px, -3px); box-shadow: 8px 9px 0 rgba(32, 32, 32, .12); filter: saturate(1.08); }
.btn span { transition: transform .18s ease; }
.btn:hover span { transform: translate(2px, -2px); }
.btn.primary { background: var(--yellow); }
.btn.secondary { background: var(--blue); color: white; }

.target { position: absolute; z-index: 0; border: 2px solid var(--ink); border-radius: 50%; background: radial-gradient(circle, var(--yellow) 0 24%, var(--pink) 25% 43%, var(--blue) 44% 62%, var(--green) 63% 100%); box-shadow: inset 0 0 20px rgba(0, 0, 0, .12); animation: targetFloat 8s ease-in-out infinite; transition: transform .12s linear; }
.t-top-left { width: 145px; height: 145px; left: -30px; top: 87px; }
.t-top-right { width: 265px; height: 265px; right: -160px; top: 78px; animation-delay: -3s; }
.t-bottom-left { width: 280px; height: 280px; left: -210px; bottom: 15px; animation-delay: -5s; }

.hero-visual { min-height: 540px; display: grid; place-items: center; isolation: isolate; }
.vibe-disc { position: relative; width: min(410px, 82vw); aspect-ratio: 1; display: grid; place-items: center; padding: 0; border: var(--line); border-radius: 50%; color: var(--ink); background: conic-gradient(from 42deg, var(--green) 0 25%, var(--blue) 25% 50%, var(--pink) 50% 75%, var(--yellow) 75%); box-shadow: 18px 20px 0 rgba(32, 32, 32, .1); animation: discBreathe 5.5s ease-in-out infinite; cursor: pointer; transition: background .55s ease, filter .25s ease; }
.vibe-disc:hover { filter: saturate(1.12) brightness(1.02); }
.vibe-disc:focus-visible { outline: 5px solid white; outline-offset: 5px; }
.vibe-disc.is-switching { animation: vibeSwitch .48s cubic-bezier(.2, .85, .3, 1); }
.vibe-disc[data-vibe="birthday"] { background: conic-gradient(from 20deg, #ffd51d, #ec4b98, #ffb74d, #82ca58, #ffd51d); }
.vibe-disc[data-vibe="dance"] { background: conic-gradient(from 20deg, #9b5de5, #ec4b98, #59a7d9, #9b5de5); }
.vibe-disc[data-vibe="kids"] { background: conic-gradient(from 20deg, #59a7d9, #ffd51d, #82ca58, #ec4b98, #59a7d9); }
.vibe-disc[data-vibe="family"] { background: conic-gradient(from 20deg, #82ca58, #59a7d9, #fff1a8, #82ca58); }
.vibe-disc::before { content: ""; position: absolute; inset: 38px; border: var(--line); border-radius: 50%; background: rgba(255, 255, 255, .83); backdrop-filter: blur(7px); }
.disc-center { position: relative; z-index: 1; text-align: center; }
.disc-label { display: inline-block; margin-bottom: 12px; padding: 6px 10px; border: 2px solid var(--ink); border-radius: 999px; color: white; background: var(--pink); font-size: 12px; font-weight: 700; letter-spacing: 1.2px; }
.disc-center strong { display: block; font-size: clamp(31px, 4vw, 48px); line-height: .95; letter-spacing: -2px; }
.disc-center small { display: block; margin-top: 15px; color: var(--muted); font-size: 14px; font-weight: 700; }
.vibe-hint { position: absolute; z-index: 5; left: 50%; bottom: 2%; translate: -50% 0; width: max-content; padding: 7px 12px; border: 2px solid var(--ink); border-radius: 999px; background: white; font-size: 12px; font-weight: 700; box-shadow: 4px 4px 0 rgba(255, 213, 29, .5); animation: hintBounce 2.2s ease-in-out infinite; pointer-events: none; }
.game-launch { position: absolute; z-index: 6; right: -8px; bottom: 12%; padding: 11px 15px; border: 2px solid var(--ink); border-radius: 999px; background: var(--yellow); color: var(--ink); font: inherit; font-size: 13px; font-weight: 900; box-shadow: 5px 5px 0 var(--ink); cursor: pointer; transform: rotate(-3deg); transition: transform .2s ease, box-shadow .2s ease; }
.game-launch:hover { transform: rotate(2deg) translateY(-3px); box-shadow: 7px 8px 0 var(--ink); }
.game-launch:focus-visible { outline: 4px solid white; outline-offset: 3px; }
.vibe-pop { position: absolute; z-index: 8; left: 50%; top: 50%; font-size: 25px; pointer-events: none; animation: vibePop .75s ease-out forwards; }

body.game-open { overflow: hidden; }
.game-modal[hidden] { display: none; }
.game-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(20, 25, 24, .72); backdrop-filter: blur(10px); animation: gameFade .2s ease-out; }
.game-card { position: relative; width: min(760px, 100%); max-height: 94vh; overflow-y: auto; padding: 24px; border: 3px solid var(--ink); border-radius: 28px; background: #fffdf5; box-shadow: 14px 16px 0 rgba(236, 75, 152, .75); }
.game-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 38px; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; background: white; color: var(--ink); font-size: 27px; line-height: 1; cursor: pointer; }
.game-heading { display: flex; justify-content: space-between; gap: 18px; align-items: end; padding-right: 42px; }
.game-heading h2 { margin: 3px 0 0; font-size: clamp(30px, 5vw, 48px); line-height: .95; }
.game-stats { display: flex; gap: 8px; }
.game-stats span { min-width: 76px; padding: 8px 10px; border: 2px solid var(--ink); border-radius: 14px; background: var(--yellow); text-align: center; font-size: 12px; font-weight: 800; }
.game-stats strong { display: block; font-size: 23px; }
.game-instruction { margin: 13px 0; color: var(--muted); font-weight: 650; }
.game-tabs { display: flex; gap: 8px; margin-top: 14px; }
.game-tab { flex: 1; min-height: 40px; padding: 7px 10px; border: 2px solid var(--ink); border-radius: 999px; background: white; color: var(--ink); font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; }
.game-tab.active { background: var(--green); box-shadow: 3px 3px 0 var(--ink); transform: translate(-2px,-2px); }
.player-row { display: flex; align-items: center; gap: 8px; margin-top: 13px; }
.player-row label { font-size: 12px; font-weight: 800; white-space: nowrap; }
.player-row input { min-width: 0; flex: 1; height: 39px; padding: 7px 12px; border: 2px solid var(--ink); border-radius: 12px; font: inherit; }
.player-row button, .leaderboard-title button { min-height: 39px; padding: 7px 12px; border: 2px solid var(--ink); border-radius: 12px; background: var(--yellow); color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; }
.game-arena { position: relative; height: min(330px, 43vh); overflow: hidden; border: 3px solid var(--ink); border-radius: 21px; background: radial-gradient(circle at 15% 20%, rgba(255,213,29,.5), transparent 24%), radial-gradient(circle at 85% 75%, rgba(89,167,217,.4), transparent 25%), #f7fff2; }
.game-start { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.game-start[hidden] { display: none; }
.game-start > span { font-size: 52px; animation: hintBounce 1.8s ease-in-out infinite; }
.game-start > strong { font-size: 22px; }
.game-target { position: absolute; width: 68px; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; background: white; box-shadow: 5px 5px 0 var(--pink); font-size: 35px; cursor: pointer; transition: left .1s ease, top .1s ease, transform .1s ease; touch-action: manipulation; }
.game-target[hidden] { display: none; }
.game-target:hover { transform: scale(1.08); }
.game-target.is-caught { animation: gameCatch .18s ease-out; }
.game-result { min-height: 24px; margin: 12px 0 0; text-align: center; font-weight: 900; color: #b31d68; }
.memory-board { height: 100%; padding: 13px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.memory-board[hidden], .beat-board[hidden], .leaderboard-panel[hidden] { display: none; }
.memory-card { display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 14px; background: var(--blue); color: transparent; font-size: 29px; cursor: pointer; box-shadow: 3px 3px 0 rgba(32,32,32,.18); transition: transform .16s, background .16s; }
.memory-card.revealed, .memory-card.matched { color: var(--ink); background: white; transform: rotateY(180deg); }
.memory-card.matched { background: var(--green); }
.beat-board { width: min(300px, 82%); height: min(280px, 84%); margin: auto; padding-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.beat-pad { border: 3px solid var(--ink); border-radius: 26px; cursor: pointer; opacity: .68; transition: transform .12s, opacity .12s, filter .12s; }
.beat-pad.lit { opacity: 1; transform: scale(.94); filter: brightness(1.2); box-shadow: 0 0 25px currentColor; }
.pad-pink { background: var(--pink); }.pad-blue { background: var(--blue); }.pad-yellow { background: var(--yellow); }.pad-green { background: var(--green); }
.leaderboard-panel { position: absolute; inset: 0; z-index: 8; padding: 18px; overflow-y: auto; background: #fffdf5; }
.leaderboard-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; font-size: 21px; }
#leaderboardList { margin: 0; padding: 0; list-style: none; counter-reset: rank; }
#leaderboardList li { counter-increment: rank; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; padding: 9px 11px; border-bottom: 1px dashed rgba(32,32,32,.25); font-weight: 750; }
#leaderboardList li::before { content: counter(rank); width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-size: 12px; }
#leaderboardList li:nth-child(1)::before { background: #f7c948; } #leaderboardList li:nth-child(2)::before { background: #d9e1e8; } #leaderboardList li:nth-child(3)::before { background: #d89b68; }
.leader-game { color: var(--muted); font-size: 11px; display: block; }.leader-score { color: #b31d68; font-size: 18px; }
.orbit { position: absolute; inset: 50%; z-index: 3; width: 62px; height: 62px; margin: -31px; border: 2px solid var(--ink); border-radius: 21px; background: white; box-shadow: 6px 6px 0 rgba(32, 32, 32, .12); }
.orbit span { display: grid; width: 100%; height: 100%; place-items: center; font-size: 30px; }
.orbit-one { animation: orbitOne 11s linear infinite; }
.orbit-one span { animation: counterOrbit 11s linear infinite; }
.orbit-two { animation: orbitTwo 13s linear infinite; }
.orbit-two span { animation: counterOrbit 13s linear infinite reverse; }
.orbit-three { animation: orbitThree 15s linear infinite; }
.orbit-three span { animation: counterOrbit 15s linear infinite; }
.mini-note { position: absolute; z-index: 4; padding: 9px 13px; border: 2px solid var(--ink); border-radius: 999px; background: white; font-size: 13px; font-weight: 700; box-shadow: 4px 4px 0 rgba(236, 75, 152, .2); animation: noteFloat 3.2s ease-in-out infinite; }
.note-one { top: 13%; left: 3%; transform: rotate(-7deg); }
.note-two { right: -1%; bottom: 15%; transform: rotate(5deg); animation-delay: -1.5s; }

.ticker { width: 100%; overflow: hidden; border-block: var(--line); background: var(--yellow); transform: rotate(-1deg); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 13px 0; font-size: 16px; font-weight: 700; letter-spacing: 1.6px; animation: tickerMove 22s linear infinite; }
.ticker-track i { color: var(--pink); font-style: normal; }

.section { position: relative; width: min(1160px, calc(100% - 36px)); margin: auto; padding: 78px 0; }
.section-tag { margin: 0; color: var(--pink); font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
h2 { margin: 9px 0 20px; color: var(--green); font-size: clamp(40px, 5.3vw, 67px); line-height: .95; letter-spacing: -3px; text-shadow: 2px 2px 0 var(--ink), -2px 2px 0 var(--ink), 2px -2px 0 var(--ink), -2px -2px 0 var(--ink), 5px 5px 0 rgba(255, 213, 29, .5); }
h2 em { color: var(--pink); font-style: normal; }

.experience { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: center; }
.experience-copy > p:not(.section-tag) { max-width: 500px; color: var(--muted); font-size: 18px; font-weight: 600; line-height: 1.65; }
.included-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }
.included-list span { padding: 9px 12px; border: 2px solid var(--ink); border-radius: 999px; background: rgba(255, 255, 255, .85); font-size: 13px; font-weight: 700; box-shadow: 3px 3px 0 rgba(130, 202, 88, .23); transition: transform .18s ease, background .18s ease; }
.included-list span:hover { transform: translateY(-3px) rotate(-2deg); background: white; }
.moment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; perspective: 900px; }
.moment-card { min-height: 218px; padding: 21px; display: flex; flex-direction: column; justify-content: space-between; border: var(--line); border-radius: 30px; box-shadow: var(--shadow); transform-style: preserve-3d; transition: transform .18s ease, box-shadow .18s ease; }
.moment-card:hover { box-shadow: 14px 16px 0 rgba(32, 32, 32, .1); }
.moment-card > span { align-self: flex-end; font-size: 44px; transform: translateZ(24px); }
.moment-card small { font-size: 12px; font-weight: 700; opacity: .7; }
.moment-card h3 { margin: 4px 0 5px; font-size: 25px; line-height: 1; }
.moment-card p { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.45; }
.moment-card.green { background: rgba(130, 202, 88, .83); }
.moment-card.pink { background: rgba(236, 75, 152, .82); color: white; }
.moment-card.yellow { background: rgba(255, 213, 29, .8); }
.moment-card.blue { background: rgba(89, 167, 217, .82); color: white; }

.raffle { width: min(1160px, calc(100% - 36px)); min-height: 510px; padding: 48px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; overflow: hidden; border: var(--line); border-radius: 42px; background: rgba(255, 255, 255, .81); box-shadow: 13px 14px 0 rgba(255, 213, 29, .28); }
.raffle-copy { position: relative; z-index: 3; }
.raffle-copy > p:not(.section-tag) { max-width: 540px; color: var(--muted); font-size: 18px; font-weight: 600; line-height: 1.6; }
.raffle-copy .btn { margin-top: 10px; }
.raffle-art { position: relative; min-height: 380px; isolation: isolate; }
.target.big { left: 50%; top: 50%; width: 315px; height: 315px; transform: translate(-50%, -50%); animation: rafflePulse 4s ease-in-out infinite; }
.gift { position: absolute; left: 50%; top: 50%; z-index: 4; width: 68px; height: 68px; margin: -34px; display: grid; place-items: center; border: var(--line); border-radius: 22px; background: white; font-size: 33px; box-shadow: 7px 7px 0 rgba(236, 75, 152, .2); transform-origin: center; }
.gift span { display: grid; width: 100%; height: 100%; place-items: center; }
.g1 { animation: raffleOrbitOne 12s linear infinite; }
.g2 { animation: raffleOrbitTwo 12s linear infinite; }
.g3 { animation: raffleOrbitThree 12s linear infinite; }
.winner-badge { position: absolute; left: 50%; top: 50%; z-index: 5; width: 126px; height: 126px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: var(--line); border-radius: 50%; color: white; background: var(--pink); text-align: center; transform: translate(-50%, -50%); box-shadow: 7px 7px 0 rgba(32, 32, 32, .15); }
.winner-badge strong { display: block; font-size: 49px; line-height: .72; letter-spacing: -3px; }
.winner-badge small { display: block; font-size: 12px; line-height: 1; letter-spacing: 1px; }

.booking { display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; align-items: start; }
.booking-heading { position: sticky; top: 120px; }
.booking-heading > p:not(.section-tag) { color: var(--muted); font-size: 17px; font-weight: 600; line-height: 1.6; }
.direct-wa { display: inline-block; margin-top: 10px; color: var(--pink-dark); border-bottom: 2px solid currentColor; font-weight: 700; }
.booking-form { padding: 27px; border: var(--line); border-radius: 34px; background: rgba(255, 255, 255, .8); box-shadow: 12px 12px 0 rgba(89, 167, 217, .2); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
label { display: block; }
label > span { display: block; margin: 0 0 6px 5px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
input, textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--ink); border-radius: 18px; outline: 0; color: var(--ink); background: white; font-weight: 600; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
input:focus, textarea:focus { border-color: var(--pink); box-shadow: 4px 4px 0 rgba(236, 75, 152, .18); transform: translateY(-1px); }
textarea { min-height: 100px; margin: 0 0 13px; resize: vertical; }
.booking-form > label { margin-top: 13px; }
.btn.full { width: 100%; }
.note { margin: 12px 5px 0; color: var(--muted); font-size: 12px; font-weight: 600; text-align: center; }

.footer { width: min(1160px, calc(100% - 36px)); margin: auto; padding: 36px 0 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 2px solid rgba(32, 32, 32, .15); }
.footer p { color: var(--muted); font-size: 14px; font-weight: 600; text-align: center; }
.footer-links { display: flex; gap: 14px; font-weight: 700; }
.footer-links a:hover { color: var(--pink); }
.float-wa { position: fixed; right: 18px; bottom: 18px; z-index: 99; padding: 11px 16px; border: 2px solid var(--ink); border-radius: 999px; color: #074e25; background: #55db85; font-size: 14px; font-weight: 700; box-shadow: 6px 6px 0 rgba(32, 32, 32, .16); transition: transform .2s ease; }
.float-wa:hover { transform: translateY(-3px); }
.float-wa span { color: white; animation: livePulse 1.3s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .72, .2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.moment-card.reveal:nth-child(2) { transition-delay: .08s; }
.moment-card.reveal:nth-child(3) { transition-delay: .16s; }
.moment-card.reveal:nth-child(4) { transition-delay: .24s; }

@keyframes introPop { from { opacity: 0; transform: scale(.7) rotate(-5deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes dotBounce { to { transform: translateY(-10px); } }
@keyframes targetDrift { 50% { transform: translate(15px, -18px) rotate(12deg); } }
@keyframes targetFloat { 50% { translate: 0 -12px; rotate: 5deg; } }
@keyframes livePulse { 50% { transform: scale(.7); opacity: .55; } }
@keyframes discBreathe { 50% { transform: translateY(-8px) rotate(2deg); box-shadow: 22px 27px 0 rgba(32, 32, 32, .08); } }
@keyframes vibeSwitch { 45% { transform: scale(.92) rotate(-3deg); } 75% { transform: scale(1.035) rotate(2deg); } }
@keyframes hintBounce { 50% { translate: -50% -5px; } }
@keyframes vibePop { from { opacity: 1; transform: translate(-50%, -50%) rotate(var(--r)) translateY(0) scale(.7); } to { opacity: 0; transform: translate(-50%, -50%) rotate(var(--r)) translateY(-155px) scale(1.35); } }
@keyframes gameFade { from { opacity: 0; } }
@keyframes gameCatch { 50% { transform: scale(.72) rotate(10deg); } }
@keyframes orbitOne { from { transform: rotate(0) translateX(226px) rotate(0); } to { transform: rotate(360deg) translateX(226px) rotate(-360deg); } }
@keyframes orbitTwo { from { transform: rotate(120deg) translateX(204px) rotate(-120deg); } to { transform: rotate(-240deg) translateX(204px) rotate(240deg); } }
@keyframes orbitThree { from { transform: rotate(240deg) translateX(184px) rotate(-240deg); } to { transform: rotate(600deg) translateX(184px) rotate(-600deg); } }
@keyframes counterOrbit { to { rotate: -360deg; } }
@keyframes noteFloat { 50% { translate: 0 -8px; } }
@keyframes tickerMove { to { transform: translateX(-50%); } }
@keyframes rafflePulse { 50% { scale: 1.018; filter: saturate(1.08); } }
@keyframes raffleOrbitOne { from { transform: rotate(-90deg) translateX(190px) rotate(90deg); } to { transform: rotate(270deg) translateX(190px) rotate(-270deg); } }
@keyframes raffleOrbitTwo { from { transform: rotate(30deg) translateX(190px) rotate(-30deg); } to { transform: rotate(390deg) translateX(190px) rotate(-390deg); } }
@keyframes raffleOrbitThree { from { transform: rotate(150deg) translateX(190px) rotate(-150deg); } to { transform: rotate(510deg) translateX(190px) rotate(-510deg); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-content { max-width: 720px; }
  .hero-visual { min-height: 520px; }
  .experience, .booking { grid-template-columns: 1fr; }
  .experience { gap: 30px; }
  .experience-copy { max-width: 760px; }
  .booking-heading { position: static; max-width: 760px; }
  .raffle { grid-template-columns: 1fr .8fr; }
  .word-logo { font-size: clamp(58px, 11vw, 100px); }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 69px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 14px; border: var(--line); border-radius: 22px; background: rgba(255, 255, 255, .97); box-shadow: 8px 8px 0 rgba(32, 32, 32, .1); }
  .nav-links.open { display: flex; animation: menuOpen .25s ease both; }
  .nav-links a { text-align: center; }
  .nav-links .nav-btn { margin-left: 0; }
  .nav { min-height: 70px; }
  .brand-k { width: 43px; height: 43px; font-size: 34px; }
  .brand-name { font-size: 23px; }
  .hero { min-height: auto; padding-top: 108px; }
  .hero-visual { min-height: 470px; }
  .moment-grid { grid-template-columns: 1fr 1fr; }
  .raffle { min-height: 0; padding: 34px 24px; grid-template-columns: 1fr; }
  .raffle-art { min-height: 340px; }
  .footer { flex-direction: column; padding-bottom: 100px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  .intro-target { width: 58vw; }
  .intro-target-one { left: -23vw; top: -18vw; }
  .intro-target-two { right: -25vw; bottom: -20vw; }
  .intro-name { letter-spacing: -3px; }
  .section { padding: 60px 0; }
  .hero { gap: 10px; padding-bottom: 35px; }
  h1 { display: block; }
  .big-k { font-size: clamp(135px, 47vw, 205px); }
  .word-logo { display: block; margin: 18px 0 0 0; font-size: clamp(55px, 20vw, 84px); }
  .hero-text { margin-top: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .vibe-disc { width: 290px; }
  .vibe-disc::before { inset: 30px; }
  .game-launch { right: 0; bottom: 5%; }
  .game-card { padding: 20px 15px 15px; border-radius: 22px; }
  .game-heading { display: block; padding-right: 35px; }
  .game-stats { margin-top: 13px; }
  .game-arena { height: 300px; }
  .game-tabs { flex-wrap: wrap; }.game-tab { flex-basis: 30%; font-size: 11px; padding-inline: 5px; }
  .player-row { flex-wrap: wrap; }.player-row label { width: 100%; }.player-row button { font-size: 12px; }
  .memory-board { gap: 6px; padding: 8px; }.memory-card { font-size: 24px; }
  .orbit { width: 54px; height: 54px; margin: -27px; }
  .orbit-one { animation-name: orbitOneMobile; }
  .orbit-two { animation-name: orbitTwoMobile; }
  .orbit-three { animation-name: orbitThreeMobile; }
  .note-one { top: 8%; left: 0; }
  .note-two { right: 0; bottom: 9%; }
  .moment-grid, .form-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: 185px; }
  .raffle-art { min-height: 330px; transform: scale(.9); transform-origin: center; margin: -15px 0 -20px; }
  .target.big { width: 245px; height: 245px; }
  .gift { width: 58px; height: 58px; margin: -29px; border-radius: 19px; font-size: 28px; }
  .winner-badge { width: 104px; height: 104px; }
  .winner-badge strong { font-size: 41px; }
  .winner-badge small { font-size: 10px; }
  .g1 { animation-name: raffleOrbitOneMobile; }
  .g2 { animation-name: raffleOrbitTwoMobile; }
  .g3 { animation-name: raffleOrbitThreeMobile; }
  .booking-form { padding: 20px 16px; }
  .float-wa { right: 12px; bottom: 12px; }
}

@keyframes menuOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbitOneMobile { from { transform: rotate(0) translateX(166px) rotate(0); } to { transform: rotate(360deg) translateX(166px) rotate(-360deg); } }
@keyframes orbitTwoMobile { from { transform: rotate(120deg) translateX(150px) rotate(-120deg); } to { transform: rotate(-240deg) translateX(150px) rotate(240deg); } }
@keyframes orbitThreeMobile { from { transform: rotate(240deg) translateX(137px) rotate(-240deg); } to { transform: rotate(600deg) translateX(137px) rotate(-600deg); } }
@keyframes raffleOrbitOneMobile { from { transform: rotate(-90deg) translateX(138px) rotate(90deg); } to { transform: rotate(270deg) translateX(138px) rotate(-270deg); } }
@keyframes raffleOrbitTwoMobile { from { transform: rotate(30deg) translateX(138px) rotate(-30deg); } to { transform: rotate(390deg) translateX(138px) rotate(-390deg); } }
@keyframes raffleOrbitThreeMobile { from { transform: rotate(150deg) translateX(138px) rotate(-150deg); } to { transform: rotate(510deg) translateX(138px) rotate(-510deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .intro-screen { display: none; }
  body.intro-active { overflow: auto; }
  .reveal { opacity: 1; transform: none; }
}
