/* goblins.ink — twin centerpieces. one viewport. v4 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Special+Elite&family=Caveat:wght@600;700&display=swap');

:root {
  --bg-deep: #08050e;
  --bg-mid: #14091e;
  --bg-up: #261238;
  --gold: #d4a83e;
  --gold-bright: #f5c95f;
  --gold-pale: #f7e0a0;
  --rust: #c0381f;
  --paper: #f4ecd7;
  --crystal: #e8e0ff;
  --stone: #4a423c;
  --stone-dark: #2a2624;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--paper);
  background: var(--bg-deep);
  position: relative;
  background-image:
    radial-gradient(ellipse at 50% 35%, var(--bg-up) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 95%, rgba(192,56,31,.22) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(212,168,62,.14) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(2px 2px at 13% 22%, rgba(255,255,255,.7), transparent),
    radial-gradient(2px 2px at 47% 8%, rgba(255,255,255,.5), transparent),
    radial-gradient(2px 2px at 81% 28%, rgba(255,255,255,.6), transparent),
    radial-gradient(2px 2px at 28% 71%, rgba(255,255,255,.4), transparent),
    radial-gradient(2px 2px at 64% 88%, rgba(255,255,255,.5), transparent),
    radial-gradient(2px 2px at 92% 60%, rgba(255,255,255,.6), transparent),
    radial-gradient(3px 3px at 7% 50%, rgba(255,255,255,.3), transparent),
    radial-gradient(2px 2px at 38% 38%, rgba(212,168,62,.5), transparent),
    radial-gradient(2px 2px at 70% 14%, rgba(255,255,255,.4), transparent);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 60vh;
  background-image: url('/images/labyrinth/escher.jpg');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.08;
  filter: hue-rotate(-30deg) saturate(0.5);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

/* ── header ─────────────────────────────── */
.topnote {
  position: relative; z-index: 5;
  text-align: center;
  padding: 18px 24px 4px;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.topnote .brand {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: .14em;
  margin-bottom: 6px;
  color: var(--paper);
  text-shadow: 0 0 28px rgba(212,168,62,.55);
  line-height: 1;
}
.topnote .brand .ink { color: var(--rust); font-style: italic; }

/* ── main ───────────────────────────────── */
main {
  position: relative;
  z-index: 3;
  height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.headline {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 44px;
  text-align: center;
  margin: 0 0 6px;
  color: var(--paper);
  letter-spacing: -.005em;
  line-height: 1.05;
  text-shadow: 0 0 26px rgba(185,163,255,.55), 0 4px 18px rgba(0,0,0,.6);
}
.headline .babe {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-bright);
  font-style: italic;
  margin-left: 10px;
  text-shadow: 0 0 16px rgba(212,168,62,.5);
}

/* the instruction block — replaces voice UI */
.howto {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 8px 0 20px;
  line-height: 1.5;
  text-shadow: 0 0 12px rgba(212,168,62,.4);
}
.howto b { color: var(--gold-bright); font-family: 'Cinzel', serif; font-size: 16px; letter-spacing: .12em; }
.howto .step { margin: 0 6px; }
.howto .arrow { color: var(--rust); margin: 0 10px; font-size: 16px; }

/* ── TWINS row ───────────────────────────── */
.twins {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;
  flex: 0 0 auto;
}
.twin {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
}

/* per-game title */
.game-title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -.005em;
  color: var(--paper);
  margin: 0;
  text-align: center;
  text-shadow: 0 0 22px rgba(247,224,160,.6), 0 4px 14px rgba(0,0,0,.5);
  line-height: 1.05;
}
.twin:nth-child(1) .game-title { color: var(--paper); }
.twin:last-child .game-title { color: var(--gold-bright); }

.game-howto {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 4px;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(212,168,62,.4);
  max-width: 380px;
}
.game-howto b { color: var(--gold-bright); font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: .08em; text-transform: none; }

/* ── PILLAR separator ───────────────────── */
.pillar {
  width: 100px;
  height: 540px;
  flex: 0 0 auto;
  position: relative;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.7));
}
.pillar svg { width: 100%; height: 100%; display: block; }
.pillar .flame { transform-origin: 50px 50px; transform-box: view-box; animation: flicker 1.2s ease-in-out infinite; }
@keyframes flicker {
  0%, 100% { transform: scale(1) rotate(-1deg); opacity: .95; }
  20% { transform: scale(1.06, 1.1) rotate(2deg); opacity: 1; }
  40% { transform: scale(.95, 1.05) rotate(-2deg); opacity: .85; }
  60% { transform: scale(1.04, .98) rotate(1deg); opacity: .98; }
  80% { transform: scale(.98, 1.02) rotate(-1deg); opacity: .9; }
}
/* torch glow halo */
.pillar::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,201,95,.45) 0%, rgba(192,56,31,.18) 35%, transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  animation: halo 3s ease-in-out infinite;
}
.twin .label {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(212,168,62,.5);
}
.twin .sublabel {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--gold-bright);
  text-align: center;
  text-shadow: 0 0 14px rgba(212,168,62,.5);
}

/* ── CRYSTAL BALL — left, bright ─────────── */
.ball-wrap {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
/* ball halo glow — much bigger, much brighter */
.ball-wrap::before {
  content: '';
  position: absolute;
  width: 580px; height: 580px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245,201,95,.35) 0%, rgba(212,168,62,.18) 25%, transparent 60%),
    radial-gradient(circle, rgba(185,163,255,.2) 0%, transparent 50%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
  animation: halo 4s ease-in-out infinite;
}
@keyframes halo { 0%,100% { opacity: .85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* Bowie reveal: contained behind ball only */
.ball-wrap .bowie {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background-image: url('/images/labyrinth/bowie.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  filter: hue-rotate(-15deg) saturate(1.1) contrast(1.05);
  -webkit-mask-image: radial-gradient(circle, black 35%, transparent 75%);
  mask-image: radial-gradient(circle, black 35%, transparent 75%);
  transition: opacity .9s ease-in-out;
}
.ball-wrap .bowie.show { opacity: 0.62; }

.ball {
  position: relative;
  width: 360px; height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.95) 0%, rgba(247,224,160,.7) 6%, rgba(232,224,255,.35) 14%, transparent 24%),
    radial-gradient(circle at 70% 75%, rgba(245,201,95,.25), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(220,200,255,.55) 0%, rgba(120,90,180,.65) 35%, rgba(50,30,90,.85) 70%, rgba(15,8,30,.95) 100%);
  box-shadow:
    inset 0 0 70px rgba(120,90,180,.5),
    inset -25px -25px 70px rgba(0,0,0,.45),
    inset 30px 30px 50px rgba(255,236,170,.18),
    0 0 100px rgba(245,201,95,.55),
    0 0 200px rgba(185,163,255,.35),
    0 25px 60px rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: box-shadow .3s, transform .15s;
  z-index: 2;
  overflow: hidden;
}
.ball:hover {
  box-shadow:
    inset 0 0 70px rgba(120,90,180,.5),
    inset -25px -25px 70px rgba(0,0,0,.45),
    inset 30px 30px 50px rgba(255,236,170,.25),
    0 0 140px rgba(245,201,95,.85),
    0 0 280px rgba(185,163,255,.5),
    0 25px 60px rgba(0,0,0,.7);
  transform: translateY(-2px);
}
.ball.glow { animation: ballglow 1.6s ease-in-out; }
@keyframes ballglow {
  0% { transform: scale(1); }
  40% {
    box-shadow:
      inset 0 0 100px rgba(255,236,170,.7),
      0 0 320px rgba(245,201,95,.95),
      0 0 480px rgba(255,255,255,.45);
    transform: scale(1.06);
  }
  100% { transform: scale(1); }
}
.ball-content { position: relative; z-index: 2; width: 84%; height: 84%; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 28px; text-align: center; }
.ball-idle { width: 78%; height: 78%; opacity: .85; }
.ball-idle img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(1.25) drop-shadow(0 0 20px rgba(255,236,170,.7));
}
.ball-answer {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.32;
  color: var(--paper);
  text-shadow: 0 0 22px rgba(247,224,160,.85), 0 0 4px rgba(0,0,0,.9);
  opacity: 0;
  transition: opacity .5s ease;
  display: none;
}
.ball-answer.show { opacity: 1; display: block; animation: bloom .8s ease-out; }
@keyframes bloom { 0% { transform: scale(.7); filter: blur(8px); opacity: 0; } 60% { transform: scale(1.05); filter: blur(0); opacity: 1; } 100% { transform: scale(1); filter: blur(0); opacity: 1; } }
.ball.thinking::after {
  content: ''; position: absolute; inset: 14%; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(245,201,95,.7), rgba(192,56,31,.5), transparent, rgba(185,163,255,.6), rgba(245,201,95,.5), transparent);
  animation: spin 1.4s linear infinite;
  filter: blur(7px); z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── WISHING WELL — right, large ─────────── */
.well-wrap {
  position: relative;
  width: 460px; height: 460px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.well-wrap::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,62,.18) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.well {
  width: 440px; height: 440px;
  display: block;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.8));
  transition: transform .25s, filter .3s;
  position: relative;
  z-index: 1;
}
.well-wrap:hover .well {
  transform: translateY(-8px);
  filter: drop-shadow(0 30px 44px rgba(0,0,0,.9)) drop-shadow(0 0 40px rgba(245,201,95,.55));
}
.well .coin-glow { animation: coinpulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes coinpulse { 0%,100% { opacity: .6; } 50% { opacity: 1; } }
.well .rope { animation: ropesway 5s ease-in-out infinite; transform-origin: 220px 90px; transform-box: view-box; }
@keyframes ropesway { 0%,100% { transform: rotate(-1deg); } 50% { transform: rotate(1deg); } }

/* ── PORTHOLE FLOATERS ─────────────────── */
/* every floater is a stone-bordered circular frame, dim/duotone treated */
.floater {
  position: fixed;
  z-index: 4;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .35s ease, filter .3s ease;
  border-radius: 50%;
  border: 5px solid var(--gold);
  background: var(--bg-deep);
  box-shadow:
    inset 0 0 18px rgba(0,0,0,.85),
    0 0 0 2px var(--bg-deep),
    0 0 0 4px rgba(212,168,62,.4),
    0 8px 20px rgba(0,0,0,.7);
  overflow: hidden;
}
.floater::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 50%, rgba(8,5,14,.5) 75%, rgba(8,5,14,.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.floater::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,168,62,.18), rgba(76,52,124,.22));
  mix-blend-mode: overlay;
  z-index: 3;
  pointer-events: none;
}
.floater img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(0.92) saturate(0.55) brightness(0.85) sepia(0.18);
  transition: filter .3s ease;
  border-radius: 50%;
  z-index: 1;
}
.floater:hover { transform: scale(1.12); filter: drop-shadow(0 0 24px var(--gold-bright)); }
.floater:hover img { filter: contrast(1.05) saturate(1.0) brightness(1.05) sepia(0); }
.floater .speech {
  position: absolute;
  background: var(--paper); color: var(--bg-deep);
  font-family: 'Caveat', cursive;
  font-size: 20px;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
  z-index: 5;
}
.floater:hover .speech, .floater.speaking .speech { opacity: 1; transform: scale(1); }
.floater .nameplate {
  position: absolute;
  bottom: -22px;
  left: 50%; transform: translateX(-50%);
  font-family: 'Special Elite', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.85;
  text-shadow: 0 0 6px var(--bg-deep), 0 0 6px var(--bg-deep);
  z-index: 6;
}

.f-worm   { top: 90px;   left: 22px;  width: 200px; height: 200px; }
.f-worm .speech { top: 30px; left: calc(100% + 14px); }
.f-hoggle { bottom: 70px; left: 22px;  width: 280px; height: 280px; }
.f-hoggle .speech { top: 40%; left: calc(100% + 14px); }
.f-ludo   { top: 320px;  right: 22px; width: 280px; height: 280px; }
.f-ludo .speech { top: 40%; right: calc(100% + 14px); }
.f-didymus{ bottom: 70px; right: 22px; width: 240px; height: 240px; }
.f-didymus .speech { top: 30%; right: calc(100% + 14px); }
.f-toby   { top: 90px;   right: 22px; width: 200px; height: 200px; }
.f-toby .speech { top: 30px; right: calc(100% + 14px); }
.floater { border-width: 5px; }
.floater .nameplate { font-size: 11px; bottom: -24px; }

/* magic dance shake */
@keyframes shake { 0%,100% { transform: translateX(0); } 10%,30%,50%,70%,90% { transform: translateX(-7px) rotate(-1deg); } 20%,40%,60%,80% { transform: translateX(7px) rotate(1deg); } }
body.dancing main, body.dancing .floater, body.dancing .well-wrap { animation: shake 1s ease-in-out infinite; }
body.dancing .ball { animation: shake 0.4s ease-in-out infinite, ballglow 1.2s infinite; }

/* ── MODAL (tip jar) ──────────────────── */
.modal {
  position: fixed; inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5,2,12,.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal.show { display: flex; animation: fadein .25s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-deep));
  border: 3px solid var(--gold);
  padding: 32px 32px 28px;
  max-width: 460px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(212,168,62,.4), 0 0 120px rgba(192,56,31,.2);
}
.modal-card::before, .modal-card::after {
  content: '⏃'; position: absolute; top: -16px;
  font-family: 'Cinzel', serif; font-size: 22px; color: var(--gold);
  background: var(--bg-deep); padding: 0 6px;
}
.modal-card::before { left: 24px; }
.modal-card::after { right: 24px; content: '⌰'; }
.modal-coin {
  font-size: 56px; line-height: 1;
  margin-bottom: 8px;
  animation: coinSpin 4s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 0 18px rgba(245,201,95,.7));
}
@keyframes coinSpin {
  0%, 100% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
}
.modal h3 {
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 38px;
  color: var(--gold-bright); margin-bottom: 12px; letter-spacing: .02em;
  font-style: italic;
  text-shadow: 0 0 18px rgba(245,201,95,.5);
}
.modal .pitch {
  font-family: 'Caveat', cursive; font-size: 24px;
  color: var(--paper); margin-bottom: 20px; line-height: 1.35;
}
.modal .pitch b { color: var(--gold-bright); font-weight: 700; }
.modal .pitch sup { color: var(--rust); font-size: 14px; }
.modal .addr-label { font-family: 'Special Elite', monospace; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; opacity: 0.7; }
.modal .fineprint {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: var(--gold);
  margin-top: 16px;
  line-height: 1.3;
  opacity: .85;
}
.modal .fineprint b { color: var(--gold-bright); }
.modal .fineprint sup { color: var(--rust); font-size: 12px; }
.modal .qr { background: var(--paper); padding: 14px; display: inline-block; border: 2px solid var(--gold); margin-bottom: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.modal .qr img { display: block; width: 200px; height: 200px; }
.modal .addr { font-family: 'Special Elite', monospace; font-size: 11px; color: var(--paper); background: rgba(0,0,0,.4); border: 1px solid var(--gold); padding: 10px 12px; word-break: break-all; cursor: pointer; margin-bottom: 14px; user-select: all; }
.modal .addr:hover { background: rgba(212,168,62,.15); }
.modal .copy-status { font-family: 'Caveat', cursive; font-size: 18px; color: var(--gold-bright); height: 22px; margin-bottom: 8px; }
.modal .links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.modal a.cta { background: var(--rust); color: var(--paper); padding: 10px 18px; font-family: 'Cinzel', serif; font-weight: 900; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--gold); }
.modal a.cta.gold { background: var(--gold); color: var(--bg-deep); }
.modal a.cta:hover { transform: translateY(-2px); }
.modal .close { position: absolute; top: 8px; right: 12px; background: transparent; border: 0; color: var(--gold); font-family: 'Cinzel', serif; font-size: 26px; cursor: pointer; padding: 4px 10px; }
.modal .close:hover { color: var(--rust); }

/* ── footer ───────────────────────────── */
.foot {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px 10px;
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(180deg, transparent, rgba(8,5,14,.92));
  z-index: 6;
  pointer-events: none;
}
.foot b { color: var(--rust); }
.foot a { color: rgba(244,236,215,.65); margin: 0 8px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: .12em; pointer-events: auto; }
.foot a:hover { color: var(--gold-bright); }

.counter {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin: 14px 0 0;
}
.counter b { color: var(--gold-bright); font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: .14em; }

/* ── responsive ─────────────────────────── */
@media (max-width: 1300px) {
  .twins { gap: 8px; }
  .ball-wrap { width: 320px; height: 320px; }
  .ball { width: 300px; height: 300px; }
  .well-wrap { width: 380px; height: 380px; }
  .well { width: 360px; height: 360px; }
  .pillar { width: 80px; height: 460px; }
}
@media (max-width: 1100px) {
  .ball-wrap { width: 300px; height: 300px; }
  .ball { width: 280px; height: 280px; }
  .well-wrap { width: 340px; height: 340px; }
  .well { width: 320px; height: 320px; }
  .pillar { width: 72px; height: 420px; }
}
@media (max-width: 980px) {
  html, body { overflow-y: auto; height: auto; }
  main { height: auto; min-height: calc(100vh - 84px); padding: 20px 24px 80px; }
  .twins { flex-direction: column; gap: 16px; }
  .headline { font-size: 32px; }
  .headline .babe { font-size: 22px; display: block; margin-left: 0; }
  .ball-wrap { width: 280px; height: 280px; }
  .ball { width: 260px; height: 260px; }
  .well-wrap { width: 320px; height: 320px; }
  .well { width: 300px; height: 300px; }
  .pillar { width: 50%; max-width: 240px; height: 70px; transform: rotate(90deg); margin: -40px 0; }
  .pillar svg { transform: scaleY(-1); }
  .ball-answer { font-size: 17px; }
  .floater { width: 70px !important; height: 70px !important; border-width: 3px; }
  .floater .speech { font-size: 16px; padding: 5px 10px; }
}
