/* ════════════════════════════════════
   BASE
════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --c:      #3ecfbf;
  --c2:     #27afa1;
  --cl:     #8de4dc;
  --cp:     #d4f2ef;
  --cg:     #eafaf8;
  --bg:     #f2fefd;
  --txt:    #1b3330;
  --mid:    #3c6e6a;
  --muted:  #689e9a;
  --faint:  #a2c5c2;
  --border: rgba(141,228,220,0.32);
  --glass:  rgba(234,250,248,0.68);
  --glow:   rgba(62,207,191,0.18);
  --ssr:    #d4a843;
  --sr:     #6ab8d8;
  --r:      #8898cc;
}

html, body {
  height: 100%; overflow: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  cursor: none;
}

/* ── grain ── */
.grain {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.025; mix-blend-mode: multiply;
}

/* ════════════════════════════════════
   CURSOR
════════════════════════════════════ */
.cursor {
  width: 6px; height: 6px;
  background: var(--c); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
  transition: opacity .2s;
}
.cursor.hide { opacity: 0; }

.cursor-ring {
  width: 24px; height: 24px;
  border: 1.5px solid var(--cl); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .28s cubic-bezier(.23,1,.32,1),
              height .28s cubic-bezier(.23,1,.32,1),
              border-color .25s;
}
.cursor-ring.big { width: 38px; height: 38px; border-color: var(--c); }

/* ════════════════════════════════════
   BACKGROUND
════════════════════════════════════ */
.bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.2;
}
.bb1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--cl), transparent 68%);
  top: -160px; right: -140px;
  animation: blobDrift 20s ease-in-out infinite;
}
.bb2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--cp), transparent 68%);
  bottom: -100px; left: -110px;
  animation: blobDrift 25s ease-in-out infinite reverse 2s;
}
@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  35%  { transform: translate(-18px,-26px) scale(1.04); }
  70%  { transform: translate(16px,14px) scale(0.97); }
}
#petalCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; opacity: 0.6;
}

/* ════════════════════════════════════
   LAYOUT
════════════════════════════════════ */
.layout {
  position: relative; z-index: 3;
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: min(1080px, 97vw);
  height: min(660px, 94vh);
  padding: 0;
}

/* ════════════════════════════════════
   PROFILE CARD (left column)
════════════════════════════════════ */
.profile-card {
  position: relative;
  flex: 0 0 188px;
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 16px 16px;
  display: flex; flex-direction: column;
  align-items: center; gap: 9px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.55) inset,
    0 8px 50px rgba(62,207,191,0.09);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: transform;
}
.profile-card.visible { opacity: 1; transform: translateX(0); }

/* Holographic sheen */
.holo-sheen {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 5;
  opacity: 0;
  background: conic-gradient(from 0deg at var(--hx,50%) var(--hy,50%),
    rgba(140,232,220,.10), rgba(200,230,255,.14),
    rgba(240,210,255,.10), rgba(255,220,190,.08),
    rgba(140,232,220,.10)
  );
  mix-blend-mode: screen;
  transition: opacity .4s;
}

/* Corner ornaments */
.orn {
  position: absolute; font-size: 8px;
  color: var(--cl); opacity: 0.55; z-index: 6;
}
.orn-tl { top: 12px; left: 14px; }
.orn-br { bottom: 12px; right: 14px; }

/* Avatar */
.av-wrap {
  position: relative; width: 100px; height: 100px; flex-shrink: 0;
}
.av-aura {
  position: absolute; inset: -12px; border-radius: 50%;
  background: radial-gradient(circle, rgba(62,207,191,.22), transparent 65%);
  filter: blur(10px);
  animation: auraPulse 3.8s ease-in-out infinite;
}
@keyframes auraPulse {
  0%,100% { opacity: .4; transform: scale(.92); }
  50%      { opacity: 1;  transform: scale(1.05); }
}
.av-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--cl);
  animation: ringBreathe 5s ease-in-out infinite;
}
.r1 { inset: -8px; }
.r2 { inset: -18px; opacity: .25; animation-delay: 1s; }
@keyframes ringBreathe {
  0%,100% { opacity: .2; transform: scale(1); }
  50%      { opacity: .7; transform: scale(1.02); }
}
.av {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; display: block;
  position: relative; z-index: 1;
  border: 2px solid rgba(255,255,255,.88);
  filter: saturate(.82);
  transition: filter .5s, transform .5s;
  box-shadow: 0 5px 30px var(--glow);
}
.av:hover { filter: saturate(1.1) brightness(1.03); transform: scale(1.04); }
.av-gloss {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(140deg,rgba(255,255,255,.26) 0%,transparent 52%);
  z-index: 2; pointer-events: none;
}

/* Name */
.name-block { text-align: center; }
.name-eye {
  font-size: 8px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 2px;
}
.username {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; line-height: .95;
  color: var(--txt); margin-bottom: 6px;
}
.username em { font-style: italic; color: var(--c); }
.class-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--cg); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px;
  font-size: 8.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mid); font-weight: 400;
}
.cdot { width: 3px; height: 3px; border-radius: 50%; background: var(--c); opacity: .7; }

/* Status */
.status-row {
  display: flex; align-items: center; gap: 7px;
  background: var(--cg); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px; width: 100%;
  justify-content: center;
}
.status-pulse {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c); flex-shrink: 0;
  animation: pulseRing 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(62,207,191,.5);
}
@keyframes pulseRing {
  0%,100% { box-shadow: 0 0 0 0 rgba(62,207,191,.5); }
  60%     { box-shadow: 0 0 0 5px rgba(62,207,191,0); }
}
.status-txt {
  font-size: 9px; letter-spacing: .07em;
  color: var(--mid); font-style: italic;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 120px;
  transition: opacity .4s;
}

/* XP */
.xp-row {
  display: flex; align-items: center; gap: 7px; width: 100%; padding: 0 2px;
}
.xp-label {
  font-size: 7.5px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--faint); flex-shrink: 0;
}
.xp-track {
  flex: 1; height: 2.5px; background: var(--cp);
  border-radius: 10px; position: relative; overflow: hidden;
}
.xp-fill {
  position: absolute; inset: 0; left: 0; width: 78%;
  background: linear-gradient(to right, var(--cl), var(--c)); border-radius: 10px;
}
.xp-glow {
  position: absolute; inset: -1px; left: 0; width: 78%;
  background: var(--c); filter: blur(4px); opacity: .4;
  animation: gGlow 3s ease-in-out infinite;
}
@keyframes gGlow { 0%,100%{opacity:.25}50%{opacity:.6} }
.xp-level {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--c); font-weight: 600; flex-shrink: 0;
}

/* Lore */
.lore {
  font-size: 9.5px; line-height: 1.75; color: var(--muted);
  text-align: center; font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 8px; width: 100%;
}

/* Play button */
.play-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 7px 14px;
  background: var(--cg); border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mid);
  cursor: none; font-weight: 400; overflow: hidden;
  transition: border-color .28s, box-shadow .28s, transform .2s, background .28s;
}
.play-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cp), transparent 60%);
  opacity: 0; transition: opacity .28s;
}
.play-btn:hover {
  border-color: rgba(62,207,191,.55);
  box-shadow: 0 4px 16px var(--glow);
  background: var(--cp);
  transform: translateY(-1px);
}
.play-btn:hover::before { opacity: 1; }
.play-cat { font-size: 13px; position: relative; z-index: 1; }
.play-btn > span:not(.play-cat):not(.play-badge) { position: relative; z-index: 1; }
.play-badge {
  position: absolute; right: 10px; z-index: 1;
  background: var(--c); color: #fff;
  font-size: 7.5px; letter-spacing: .08em;
  padding: 2px 7px; border-radius: 100px; font-weight: 500;
}

/* Socials */
.social-links {
  display: flex; gap: 10px; justify-content: center; margin-top: auto;
}
.social {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--muted);
  text-decoration: none; cursor: none;
  transition: border-color .25s, color .25s, transform .25s, box-shadow .25s;
}
.social svg { width: 13px; height: 13px; }
.social:hover {
  color: var(--c); border-color: var(--c);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--glow);
}

.card-foot {
  font-size: 8.5px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--faint);
}

/* ════════════════════════════════════
   BENTO GRID (right)
════════════════════════════════════ */
.bento {
  flex: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  grid-template-rows: 0.95fr 1.3fr 0.55fr;
  gap: 8px;
  min-width: 0;
}

/* Base tile */
.tile {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px 12px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease,
              border-color .25s, box-shadow .25s;
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset;
}
.tile.visible { opacity: 1; transform: translateY(0); }
.tile:hover {
  border-color: rgba(62,207,191,.42);
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset,
              0 6px 24px rgba(62,207,191,.09);
}

.tile-label {
  display: block;
  font-size: 7.5px; letter-spacing: .35em;
  text-transform: uppercase; color: var(--c);
  margin-bottom: 8px; font-weight: 400;
}

/* ── Grid placement ── */
.tile-bio    { grid-column: 1 / 2; grid-row: 1 / 2; }
.tile-now    { grid-column: 2 / 4; grid-row: 1 / 2; }
.tile-skills { grid-column: 1 / 2; grid-row: 2 / 3; }
.tile-traits { grid-column: 2 / 4; grid-row: 2 / 3; }
.tile-quote  { grid-column: 1 / 3; grid-row: 3 / 4; }
.tile-game   { grid-column: 3 / 4; grid-row: 3 / 4; }

/* ── Bio ── */
.bio-text {
  font-size: 11.5px; line-height: 1.75;
  color: var(--muted); margin-bottom: 9px;
}
.bio-text strong { color: var(--txt); font-weight: 400; }
.bio-text em { color: var(--c2); font-style: italic; }
.bio-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.btag {
  font-size: 8.5px; letter-spacing: .07em;
  padding: 2px 9px; border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--mid); background: var(--cg);
  transition: border-color .25s, color .25s;
}
.btag:hover { border-color: var(--c); color: var(--c2); }

/* ── Now ── */
.tile-now { display: flex; flex-direction: column; justify-content: space-between; }
.now-content {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-height: 0;
}
.now-pulse-wrap {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cp); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: nowPulse 2.5s ease-in-out infinite;
}
@keyframes nowPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(62,207,191,.35); }
  50%     { box-shadow: 0 0 0 5px rgba(62,207,191,0); }
}
.now-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; color: var(--txt);
  font-style: italic;
  transition: opacity .4s;
}
.now-mood {
  display: flex; align-items: center; gap: 8px;
  padding-top: 8px; border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mood-label {
  font-size: 7.5px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--faint); flex-shrink: 0;
}
.mood-bar-wrap {
  flex: 1; height: 2.5px;
  background: var(--cp); border-radius: 10px; overflow: hidden;
}
.mood-bar {
  height: 100%; border-radius: 10px;
  background: linear-gradient(to right, var(--cl), var(--c));
  width: 0%; transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.mood-emoji { font-size: 13px; flex-shrink: 0; }

/* ── Skills (vertical bars) ── */
.tile-skills {
  display: flex; flex-direction: column;
}
.vbar-group {
  flex: 1;
  display: flex;
  align-items: flex-end; gap: 6px;
  min-height: 0;
}
.vbar-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 3px; min-height: 0;
  height: 100%;
}
.vbar-track {
  width: 100%; flex: 1;
  background: var(--cp); border-radius: 5px 5px 3px 3px;
  display: flex; align-items: flex-end; overflow: hidden;
  min-height: 0;
}
.vbar-fill {
  width: 100%; height: 0%;
  background: linear-gradient(to top, var(--c2), var(--cl));
  border-radius: 5px 5px 3px 3px;
  transition: height 1.6s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.vbar-fill::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: rgba(255,255,255,.22); border-radius: 5px 5px 0 0;
}
.vbar-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; color: var(--c2); font-weight: 600; line-height: 1;
}
.vbar-name {
  font-size: 6.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--faint); line-height: 1;
}

/* ── Traits ── */
.trait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.trait-chip {
  background: var(--cg); border: 1px solid var(--border);
  border-radius: 9px; padding: 7px 7px 6px;
  display: flex; flex-direction: column; gap: 2px;
  position: relative; overflow: hidden; cursor: none;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.trait-chip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--cp), transparent 65%);
  opacity: 0; transition: opacity .25s;
}
.trait-chip:hover {
  border-color: rgba(62,207,191,.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--glow);
}
.trait-chip:hover::before { opacity: 1; }
.trait-chip[data-r="ssr"] { border-top: 1.5px solid rgba(212,168,67,.4); }
.trait-chip[data-r="sr"]  { border-top: 1.5px solid rgba(106,184,216,.4); }
.trait-chip > span:first-child { font-size: 13px; line-height: 1; position: relative; z-index:1; }
.trait-chip > span:nth-child(2) {
  font-size: 8px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--mid);
  font-weight: 400; position: relative; z-index:1;
}
.rarity {
  font-size: 7px; font-weight: 500;
  letter-spacing: .08em; position: relative; z-index:1;
}
.trait-chip[data-r="ssr"] .rarity { color: var(--ssr); }
.trait-chip[data-r="sr"]  .rarity { color: var(--sr); }
.trait-chip[data-r="r"]   .rarity { color: var(--r); }

/* ── Quote ── */
.tile-quote {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 300; color: var(--txt);
  line-height: 1.5; font-style: normal;
  border-left: 2px solid var(--cl); padding-left: 10px;
}
.quote-text em { color: var(--c); }
.quote-deco { font-size: 8px; color: var(--faint); letter-spacing: 5px; }

/* ── Game entry tile ── */
.tile-game {
  cursor: none;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.tile-game:hover {
  border-color: rgba(62,207,191,.55);
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset, 0 6px 22px var(--glow);
  transform: translateY(-2px);
}
.game-entry-inner {
  height: 100%; display: flex; align-items: center; gap: 10px;
}
.game-entry-cat {
  font-size: 20px; flex-shrink: 0;
  display: inline-block;
  animation: catBounce 1.8s ease-in-out infinite;
}
@keyframes catBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}
.game-entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; color: var(--txt); font-style: italic;
}
.game-entry-sub {
  font-size: 8px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted);
}
.game-entry-score-wrap { margin-left: auto; text-align: right; }
.game-entry-score-label {
  display: block; font-size: 7.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--faint);
}
.game-entry-score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--c);
}
.game-entry-arrow {
  font-size: 12px; color: var(--cl); flex-shrink: 0;
  transition: transform .25s;
}
.tile-game:hover .game-entry-arrow { transform: translateX(3px); }

/* ════════════════════════════════════
   GAME MODAL
════════════════════════════════════ */
.game-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,48,45,.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.game-modal.open { opacity: 1; pointer-events: all; }

.game-panel {
  background: rgba(234,250,248,.9);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 22px 16px;
  width: min(580px, 95vw);
  box-shadow: 0 0 0 1px rgba(255,255,255,.6) inset, 0 20px 70px rgba(62,207,191,.18);
  transform: scale(.92) translateY(18px);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.game-modal.open .game-panel { transform: scale(1) translateY(0); }

.game-panel-header {
  display: flex; align-items: flex-end; gap: 16px; margin-bottom: 14px;
}
.game-eyebrow {
  display: block; font-size: 8px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--c);
}
.game-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; color: var(--txt); line-height: 1;
}
.game-title em { color: var(--c); font-style: italic; }
.score-pair {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
}
.score-item { text-align: center; }
.score-lbl {
  display: block; font-size: 7.5px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--muted);
}
.score-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; color: var(--c2); line-height: 1.1;
}
.score-num.accent { color: var(--c); }
.score-sep { width: 1px; height: 32px; background: var(--border); }
.modal-close {
  background: transparent; border: 1px solid var(--border);
  border-radius: 50%; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--muted); cursor: none;
  transition: border-color .2s, color .2s, transform .2s; flex-shrink: 0;
  margin-bottom: 2px;
}
.modal-close:hover { border-color: var(--c); color: var(--c); transform: rotate(90deg); }

.game-wrap { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
#gameCanvas { display: block; width: 100%; height: auto; }
.game-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; background: rgba(234,250,248,.85);
  transition: opacity .3s; pointer-events: none;
}
.game-overlay.gone { opacity: 0; }
.overlay-cat { font-size: 34px; animation: catHover 1.2s ease-in-out infinite alternate; }
@keyframes catHover { from { transform: translateY(0); } to { transform: translateY(-7px); } }
.game-overlay p {
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--mid);
}
kbd {
  display: inline-block; padding: 1px 6px;
  background: var(--cp); border: 1px solid var(--border);
  border-radius: 4px; font-size: 10px; color: var(--mid);
  font-family: inherit;
}
.game-note {
  margin-top: 10px; text-align: center;
  font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint);
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 760px) {
  html, body { overflow: auto; }
  body { align-items: flex-start; padding: 16px 0 40px; cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .layout { flex-direction: column; height: auto; width: 95vw; }
  .profile-card { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tile-bio, .tile-now, .tile-skills, .tile-traits, .tile-quote, .tile-game {
    grid-column: auto; grid-row: auto;
  }
  .traits-grid { grid-template-columns: repeat(2, 1fr); }
}