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

:root {
  --void: #050508;
  --deep: #0a0a12;
  --surface: #12121e;
  --panel: #1a1a2e;
  --border: rgba(255, 255, 255, 0.07);
  --glow-cyan: #00e5ff;
  --glow-violet: #9c40ff;
  --glow-mint: #00ffb3;
  --text-primary: #f0f0f8;
  --text-muted: #8888aa;
  --text-dim: #3a3a5c;
  --accent: #00e5ff;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--void);
  cursor: none;
}

/* ─── CURSOR ─────────────────────────── */
#cursor {
  position: fixed;
  z-index: 9999;
  width: 10px;
  height: 10px;
  background: var(--glow-cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  mix-blend-mode: screen;
}
#cursor-trail {
  position: fixed;
  z-index: 9998;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
}
body.hovering #cursor { width: 20px; height: 20px; background: var(--glow-violet); }
body.hovering #cursor-trail { width: 56px; height: 56px; border-color: rgba(156, 64, 255, 0.4); }

/* ─── CANVAS ────────────────────────── */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ─── MAIN SHELL ─────────────────────── */
.shell {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  z-index: 10;
  overflow: hidden;
}

/* ─── LEFT PANEL ─────────────────────── */
.left-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
}
.left-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), var(--glow-cyan), var(--border), transparent);
}

.eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--glow-cyan);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s forwards;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--glow-cyan);
  box-shadow: 0 0 8px var(--glow-cyan);
}

.name-block {
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.4s forwards;
}
.name-label {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.name {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}
.name .char { display: inline-block; transition: transform 0.3s, color 0.3s; }
.name:hover .char { animation: letterBounce 0.5s ease forwards; }
.name .char:nth-child(1) { animation-delay: 0s; }
.name .char:nth-child(2) { animation-delay: 0.04s; }
.name .char:nth-child(3) { animation-delay: 0.08s; }
.name .char:nth-child(4) { animation-delay: 0.12s; }
.name .char:nth-child(5) { animation-delay: 0.16s; }

@keyframes letterBounce {
  0%   { transform: translateY(0);     color: var(--text-primary); }
  40%  { transform: translateY(-12px); color: var(--glow-cyan); }
  70%  { transform: translateY(3px); }
  100% { transform: translateY(0);     color: var(--glow-cyan); }
}

.name-glow {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow-cyan), var(--glow-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s;
  pointer-events: none;
}
.name-block:hover .name-glow { opacity: 0.4; }

.role {
  font-family: "DM Mono", monospace;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.role-separator { color: var(--glow-violet); }

.stats-row {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s forwards;
}
.stat-pill {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  cursor: pointer;
}
.stat-pill:hover {
  border-color: var(--glow-cyan);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-2px);
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--glow-cyan);
}
.stat-label {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.9s forwards;
}
.btn-primary {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(135deg, var(--glow-cyan), var(--glow-violet));
  color: var(--void);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow-mint), var(--glow-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 229, 255, 0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text-primary); transform: translateY(-3px); }

/* ─── AVATAR SIDE ─────────────────────── */
.right-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 32px;
}

.avatar-wrapper {
  position: relative;
  opacity: 0;
  animation: fadeScaleIn 1s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.avatar-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  position: relative;
  padding: 3px;
}
.avatar-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--glow-cyan) 0deg, var(--glow-violet) 120deg, var(--glow-mint) 240deg, var(--glow-cyan) 360deg);
  animation: spin 8s linear infinite;
  z-index: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.avatar-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.avatar-face {
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.avatar-face-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 30%, rgba(0, 229, 255, 0.08), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(156, 64, 255, 0.07), transparent 60%);
  transition: background 0.6s ease;
}

.avatar-face-color-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.eyes-wrap {
  display: flex;
  gap: 44px;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.eye-outer {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
  cursor: grab;
}
.eye-outer.angry { border-color: rgba(255, 60, 60, 0.5); background: rgba(255, 30, 30, 0.08); }

.pupil {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--glow-cyan);
  position: absolute;
  transition: transform 0.06s ease-out;
  box-shadow: 0 0 12px var(--glow-cyan);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pupil.angry { background: #ff3c3c; box-shadow: 0 0 12px #ff3c3c; }
.pupil.dizzy {
  animation: spinPupil 0.5s linear infinite;
}

@keyframes spinPupil {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.pupil-glint {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 18%;
  left: 22%;
}

.mouth {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 18px;
  border: 2px solid rgba(0, 229, 255, 0.35);
  border-top: none;
  border-radius: 0 0 40px 40px;
  transition: all 0.4s;
}
.mouth.angry {
  border-color: rgba(255, 60, 60, 0.5);
  border-radius: 40px 40px 0 0;
  border-top: 2px solid rgba(255, 60, 60, 0.5);
  border-bottom: none;
}
.mouth.open {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 255, 0.5);
  border-top: 2px solid rgba(0, 229, 255, 0.5);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.8), transparent);
}
.mouth.vomiting {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid rgba(0, 255, 100, 0.6);
  animation: vomitPulse 0.3s ease-in-out infinite;
}

@keyframes vomitPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.2); }
}

.floating-tag {
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  animation: floatTag 4s ease-in-out infinite;
}
.floating-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glow-mint);
  box-shadow: 0 0 8px var(--glow-mint);
  animation: pulse 2s ease-in-out infinite;
}
.floating-tag span { font-family: "DM Mono", monospace; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; }
.floating-tag-1 { top: 10%; right: 8%; animation-delay: 0s; }
.floating-tag-2 { top: 55%; left: 3%; animation-delay: 1.5s; }
.floating-tag-3 { bottom: 12%; right: 12%; animation-delay: 3s; }

@keyframes floatTag { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

/* ─── DIZZY STARS ────────────────────────── */
.dizzy-stars {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 10;
}

.dizzy-star {
  position: absolute;
  font-size: 24px;
  animation: orbitStar 2s linear infinite;
  filter: drop-shadow(0 0 8px currentColor);
}

.dizzy-star:nth-child(1) { animation-delay: 0s; color: #ffd93d; }
.dizzy-star:nth-child(2) { animation-delay: 0.4s; color: #00e5ff; }
.dizzy-star:nth-child(3) { animation-delay: 0.8s; color: #ff6b6b; }
.dizzy-star:nth-child(4) { animation-delay: 1.2s; color: #9c40ff; }
.dizzy-star:nth-child(5) { animation-delay: 1.6s; color: #00ffb3; }

@keyframes orbitStar {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translateX(80px) rotate(0deg);
  }
  100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(360deg) translateX(80px) rotate(-360deg);
  }
}

/* ─── CREATURES ────────────────────────── */
.creatures-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.creature {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: filter 0.2s;
}
.creature:hover { filter: brightness(1.4); }
.creature.dragging {
  z-index: 1000;
  cursor: grabbing;
  filter: brightness(1.3) drop-shadow(0 0 20px currentColor);
}
.creature.being-eaten {
  animation: getEaten 0.6s ease-in forwards !important;
  pointer-events: none !important;
}

@keyframes getEaten {
  0%   { transform: scale(1) rotate(0deg); opacity: 1; }
  50%  { transform: scale(0.5) rotate(180deg); opacity: 0.8; }
  100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

.creature.being-vomited {
  animation: getVomited 0.8s ease-out forwards !important;
  pointer-events: auto !important;
  z-index: 100;
}

@keyframes getVomited {
  0%   { transform: scale(0) rotate(0deg) translateY(0); opacity: 0; }
  40%  { transform: scale(1.3) rotate(180deg) translateY(-50px); opacity: 1; }
  70%  { transform: scale(0.9) rotate(270deg) translateY(-30px); opacity: 1; }
  100% { transform: scale(1) rotate(360deg) translateY(0); opacity: 1; }
}

.creature-bubble {
  background: var(--panel);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 8px;
  max-width: 250px;
  position: relative;
  backdrop-filter: blur(12px);
  animation: floatBubble 3s ease-in-out infinite;
}
.creature-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 229, 255, 0.25);
}
.creature-bubble p {
  font-family: "DM Mono", monospace;
  font-size: 0.63rem;
  color: var(--glow-cyan);
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

@keyframes floatBubble { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.c-body-wrap { display: flex; flex-direction: column; align-items: center; transition: transform 0.15s ease; }

.c-body {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glow-violet), var(--glow-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(156, 64, 255, 0.4);
  animation: creaturePulse 2s ease-in-out infinite;
}
@keyframes creaturePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(156, 64, 255, 0.3); }
  50%       { box-shadow: 0 0 32px rgba(0, 229, 255, 0.5); }
}

.c-eyes { display: flex; gap: 10px; }
.c-eye { width: 8px; height: 8px; border-radius: 50%; background: white; }
.c-legs { display: flex; gap: 4px; margin-top: 4px; }
.c-leg { width: 4px; height: 12px; background: var(--glow-violet); border-radius: 2px; }
.c-leg:nth-child(1) { animation: legAnim 0.6s 0s    ease-in-out infinite; }
.c-leg:nth-child(2) { animation: legAnim 0.6s 0.15s ease-in-out infinite; }
.c-leg:nth-child(3) { animation: legAnim 0.6s 0.3s  ease-in-out infinite; }
.c-leg:nth-child(4) { animation: legAnim 0.6s 0.45s ease-in-out infinite; }

@keyframes legAnim { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.5) translateY(4px); } }

.creature-burst { animation: burstOut 0.5s ease-out forwards !important; pointer-events: none !important; }
@keyframes burstOut {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.5); opacity: 0.6; }
  100% { transform: scale(0) rotate(720deg); opacity: 0; }
}

/* ─── MODAL ─────────────────────────────── */
.modal-veil {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-veil.open { display: flex; animation: fadeIn 0.25s; }

.modal-card {
  position: fixed;
  inset: 24px;
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlide 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 100px rgba(0, 229, 255, 0.07), 0 40px 80px rgba(0, 0, 0, 0.6);
}
@keyframes modalSlide {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-bar {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-shrink: 0;
  background: var(--surface);
}
.modal-dots { display: flex; gap: 6px; }
.modal-dot { width: 12px; height: 12px; border-radius: 50%; }
.modal-dot.red    { background: #ff5f57; cursor: pointer; }
.modal-dot.yellow { background: #ffbd2e; }
.modal-dot.green  { background: #28c940; }
.modal-dot.red:hover { filter: brightness(1.2); }
.modal-url {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-url .lock { color: var(--glow-mint); font-size: 0.65rem; }
.modal-iframe { flex: 1; border: none; width: 100%; background: var(--surface); overflow: hidden; }

/* ─── FOOTER NAV ─────────────────────────── */
.footer-nav {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 20;
  display: flex;
  gap: 10px;
  background: rgba(10, 10, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  backdrop-filter: blur(20px);
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.2s forwards;
}
.nav-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--text-dim); cursor: pointer; transition: all 0.2s; }
.nav-dot.active, .nav-dot:hover { background: var(--glow-cyan); box-shadow: 0 0 8px var(--glow-cyan); }

/* ─── LANGUAGE BUTTON ─────────────────────── */
.language-btn {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 100;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.4s forwards;
}
.language-btn:hover {
  border-color: var(--glow-cyan);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.15);
}
.language-flag {
  font-size: 1.2rem;
  line-height: 1;
}
.language-text {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.language-btn:hover .language-text {
  color: var(--glow-cyan);
}

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── SCANLINES ─────────────────────────── */
.scanlines {
  position: fixed; inset: 0; z-index: 300; pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 4px);
}

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

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  #cursor, #cursor-trail { display: none; }

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

  .shell {
    position: fixed;
    inset: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
  }

  /* Conteúdo centralizado na metade superior */
  .left-panel {
    padding: 32px 28px 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50vh;
    overflow: hidden;
  }
  .left-panel::after { display: none; }

  /* Centraliza elementos filhos */
  .eyebrow { justify-content: center; }
  .name-block { display: flex; flex-direction: column; align-items: center; }
  .role { justify-content: center; flex-wrap: wrap; }
  .stats-row { justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
  .cta-row { justify-content: center; flex-wrap: wrap; margin-top: 24px; }

  /* Esconde o que não cabe */
  .name { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .eyebrow { margin-bottom: 16px; }
  .name-block { opacity: 1; animation: none; }
  .stats-row { opacity: 1; animation: none; }
  .cta-row { opacity: 1; animation: none; }
  .eyebrow { opacity: 1; animation: none; }

  .right-panel { display: none; }
  .avatar-wrapper { display: none; }

  .floating-tag-1,
  .floating-tag-2,
  .floating-tag-3 { display: none; }

  /* Bichinhos: fixed, restritos à metade inferior (50%–92% da viewport) */
  .creatures-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
  }

  .creature { position: absolute; pointer-events: auto; }

  .footer-nav { bottom: 12px; }
  
  .language-btn {
    top: 5px;
    right: 5px;
    padding: 10px 10px;
  }
}
