/* ============================================================
   Potyy — Desafio 10s · CAMADA PREMIUM (aditiva)
   ============================================================
   ESTE ARQUIVO E PURAMENTE ADITIVO. Nao reescreve nenhuma regra
   existente. Adiciona NOVAS classes/keyframes que sao ativadas
   por js/desafio-enhancements.js via add/removeClass nos elementos
   ja presentes no desafio.html.

   Filosofia:
   - Sem !important em nada (pra nao quebrar override do .html)
   - Variaveis em :root usam --mp-* pra evitar colisao
   - Tudo dentro de @supports / prefers-reduced-motion respeitado
   - Mobile-first; escala via clamp()

   Estrutura:
     1. Variaveis premium
     2. Keyframes neon/glow/particulas/confete
     3. Hero / Attract amplificado
     4. Cronometro tech (.counter-num.mp-tense / .mp-laser)
     5. Speech bubble ovelha (estende .sheep-bubble)
     6. Resultado: win explosivo + near-miss "QUASE"
     7. Stats viral hint badges
     8. Confete container
     9. Acessibilidade
   ============================================================ */

:root {
  --mp-neon-pink: #FF4F8A;
  --mp-neon-purple: #7E57C2;
  --mp-neon-blue: #42A5F5;
  --mp-neon-gold: #FFD700;
  --mp-neon-red: #FF1744;
  --mp-glow-soft: 0 0 12px var(--mp-neon-pink), 0 0 28px rgba(255,79,138,.45);
  --mp-glow-tense: 0 0 18px var(--mp-neon-red), 0 0 40px rgba(255,23,68,.55);
  --mp-glow-win: 0 0 22px var(--mp-neon-gold), 0 0 60px rgba(255,215,0,.5);
  --mp-ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   1. KEYFRAMES BASE
   ============================================================ */
@keyframes mpPulseGlow {
  0%, 100% { box-shadow: var(--mp-glow-soft); transform: scale(1); }
  50%      { box-shadow: var(--mp-glow-tense); transform: scale(1.03); }
}
@keyframes mpHeartbeat {
  0%, 70%, 100% { transform: scale(1); }
  10%           { transform: scale(1.06); }
  20%           { transform: scale(0.99); }
  30%           { transform: scale(1.04); }
}
@keyframes mpFloatUp {
  0%   { transform: translateY(0) scale(0.8); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(-110px) scale(1.05); opacity: 0; }
}
@keyframes mpSheepHappy {
  0%, 100% { transform: translateY(0) rotate(0); }
  20%      { transform: translateY(-18px) rotate(-6deg); }
  40%      { transform: translateY(-8px) rotate(4deg); }
  60%      { transform: translateY(-22px) rotate(-3deg); }
  80%      { transform: translateY(-4px) rotate(2deg); }
}
@keyframes mpSheepSad {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(4px) rotate(-3deg); }
  50%      { transform: translateY(0) rotate(3deg); }
  75%      { transform: translateY(4px) rotate(-2deg); }
}
@keyframes mpSheepWiggle {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}
@keyframes mpSheepBlink {
  0%, 92%, 100% { filter: none; }
  94%, 98%      { filter: brightness(0.4) saturate(0); }
}
@keyframes mpConfettiFall {
  0%   { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0.6; }
}
@keyframes mpShake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% { transform: translate3d(-4px, 0, 0); }
  20%, 40%, 60%, 80%      { transform: translate3d(4px, 0, 0); }
}
@keyframes mpZoomBurst {
  0%   { transform: scale(0.6); opacity: 0; filter: blur(8px); }
  60%  { transform: scale(1.08); opacity: 1; filter: blur(0); }
  100% { transform: scale(1); }
}
@keyframes mpScanline {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}
@keyframes mpAuraSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes mpHintPop {
  0%   { transform: translateY(8px) scale(0.92); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes mpTickerSlide {
  0%, 20%   { transform: translateY(0); opacity: 1; }
  25%, 45%  { transform: translateY(-100%); opacity: 0; }
  50%, 70%  { transform: translateY(100%); opacity: 0; }
  75%, 100% { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   2. HERO / ATTRACT — copy + glow
   ============================================================ */
/* aurora suave no fundo do attract — atras do conteudo */
.mp-aurora-bg::before,
.mp-aurora-bg::after {
  content: '';
  position: fixed;
  inset: -20vmax;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.45;
}
.mp-aurora-bg::before {
  background: radial-gradient(circle at 30% 30%, var(--mp-neon-pink), transparent 60%);
  animation: mpAuraSpin 22s linear infinite;
}
.mp-aurora-bg::after {
  background: radial-gradient(circle at 70% 70%, var(--mp-neon-purple), transparent 60%);
  animation: mpAuraSpin 28s linear infinite reverse;
}
@media (prefers-reduced-motion: reduce) {
  .mp-aurora-bg::before, .mp-aurora-bg::after { animation: none; }
}

/* hero hint badges (pessoas jogaram hoje / recorde do dia) */
.mp-hint-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 14px auto 6px;
  max-width: 760px;
  padding: 0 16px;
  animation: mpHintPop 0.6s var(--mp-ease-pop) both;
}
.mp-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.3px;
  border-radius: 100px;
  color: #1F1535;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  border: 1.5px solid rgba(255,79,138,0.35);
  box-shadow: 0 6px 22px rgba(126,87,194,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mp-hint b { color: var(--mp-neon-pink); margin-right: 2px; }
.mp-hint.gold { border-color: rgba(255,215,0,0.55); }
.mp-hint.gold b { color: #B58900; }
.mp-hint.fire { border-color: rgba(255,107,53,0.45); }
.mp-hint.fire b { color: #FF6B35; }

/* tagline viral (substitui visual do attract-title quando ativada) */
.mp-tagline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  font-size: clamp(22px, 4.5vw, 44px);
  text-align: center;
  margin: 8px auto 10px;
  background: linear-gradient(90deg, var(--mp-neon-pink), var(--mp-neon-purple), var(--mp-neon-blue), var(--mp-neon-pink));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: mpTickerSlide 12s ease-in-out infinite;
}
.mp-tagline-sub {
  text-align: center;
  font-weight: 700;
  color: rgba(90,69,112,0.78);
  font-size: clamp(12px, 1.6vw, 16px);
  margin: 0 auto 10px;
  max-width: 640px;
  padding: 0 14px;
}

/* ============================================================
   3. CRONOMETRO TECH — pulse + laser quando proximo do alvo
   ============================================================ */
.counter-num.mp-tense {
  animation: mpHeartbeat 1.1s ease-in-out infinite;
  text-shadow: 0 0 12px currentColor, 0 0 36px rgba(255,23,68,0.4);
}
.counter-num.mp-laser {
  position: relative;
  text-shadow: 0 0 14px currentColor, 0 0 40px var(--mp-neon-gold), 0 0 80px rgba(255,215,0,0.4);
}
.counter-num.mp-laser::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255,215,0,0.18) 50%, transparent 100%);
  background-size: 100% 12px;
  animation: mpScanline 1.2s linear infinite;
  mix-blend-mode: screen;
}
.counter-box.mp-arena {
  position: relative;
  box-shadow:
    0 12px 50px rgba(126,87,194,0.22),
    inset 0 0 0 1.5px rgba(255,79,138,0.18),
    inset 0 -4px 20px rgba(255,79,138,0.08);
}
.counter-box.mp-arena::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--mp-neon-pink), transparent 40%, transparent 60%, var(--mp-neon-blue));
  filter: blur(12px);
  opacity: 0.35;
  z-index: -1;
}

/* hint "alvo" exibido durante countdown / running */
.mp-target-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: clamp(11px, 1.4vw, 14px);
  color: #fff;
  background: linear-gradient(135deg, rgba(255,79,138,0.92), rgba(126,87,194,0.92));
  border-radius: 100px;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(255,79,138,0.35);
  animation: mpHintPop 0.5s var(--mp-ease-pop) both;
}
.mp-target-hint.mp-target-tense {
  background: linear-gradient(135deg, var(--mp-neon-red), var(--mp-neon-pink));
  animation: mpHintPop 0.5s var(--mp-ease-pop) both, mpPulseGlow 0.8s ease-in-out infinite;
}

/* ============================================================
   4. OVELHINHA — falas mais ricas + reacoes
   ============================================================ */
/* estado emocional dinamico — adicionado via classList em #sheepMascot */
#sheepMascot.mp-happy   { animation: mpSheepHappy 1.4s var(--mp-ease-pop) 1 forwards; }
#sheepMascot.mp-sad     { animation: mpSheepSad 1.2s ease-in-out 1 forwards; filter: saturate(0.6); }
#sheepMascot.mp-watching{ animation: mpSheepWiggle 1.6s ease-in-out infinite; filter: drop-shadow(0 0 12px rgba(255,79,138,0.45)); }
#sheepMascot.mp-blink   { animation: mpSheepBlink 4s ease-in-out infinite; }

/* balao da ovelha — versao premium quando .sheep-bubble recebe .mp-rich */
.sheep-bubble.mp-rich {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  letter-spacing: -0.2px;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FFFFFF, #FFF0F6);
  border: 2px solid var(--mp-neon-pink);
  color: #2D1747;
  box-shadow: 0 10px 28px rgba(255,79,138,0.28);
  animation: mpHintPop 0.4s var(--mp-ease-pop) both;
}
.sheep-bubble.mp-rich.mp-rich-win    { border-color: var(--mp-neon-gold); background: linear-gradient(135deg,#FFFBE6,#FFF3B8); color:#7A5500; }
.sheep-bubble.mp-rich.mp-rich-near   { border-color: var(--mp-neon-red); background: linear-gradient(135deg,#FFF0F2,#FFD7DC); color:#7A0014; }
.sheep-bubble.mp-rich.mp-rich-watch  { border-color: var(--mp-neon-purple); background: linear-gradient(135deg,#F0EBFA,#E0D6F5); }
.sheep-bubble.mp-rich.mp-rich-tense  { border-color: var(--mp-neon-red); animation: mpHintPop 0.4s var(--mp-ease-pop) both, mpShake 0.4s ease-in-out infinite; }

/* ============================================================
   5. RESULT — WIN explosivo + NEAR-MISS quase
   ============================================================ */
.result-value.win.mp-burst {
  animation: mpZoomBurst 0.9s var(--mp-ease-pop) both;
  text-shadow: var(--mp-glow-win);
}
.result-value.close.mp-shake {
  animation: mpShake 0.6s ease-in-out 1 both;
}

/* overlay de mensagem grande "QUASE!" / "POR UM FIO!" */
.mp-near-miss {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9000;
  animation: mpZoomBurst 0.5s var(--mp-ease-pop) both;
}
.mp-near-miss-card {
  text-align: center;
  padding: clamp(20px, 4vw, 40px) clamp(28px, 6vw, 56px);
  border-radius: 32px;
  background: rgba(31,11,42,0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--mp-neon-red);
  box-shadow: 0 22px 60px rgba(255,23,68,0.45);
  max-width: 90vw;
}
.mp-near-miss-emoji {
  font-size: clamp(56px, 12vw, 120px);
  line-height: 1;
  animation: mpShake 0.6s ease-in-out 2;
}
.mp-near-miss-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1;
  background: linear-gradient(90deg, #FFE700, var(--mp-neon-red), var(--mp-neon-pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 14px 0 8px;
  letter-spacing: -1px;
}
.mp-near-miss-sub {
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 22px);
  opacity: 0.92;
}
.mp-near-miss-diff {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.14);
  color: #FFE700;
  font-family: 'Orbitron', monospace;
  font-weight: 800;
  font-size: clamp(16px, 2.8vw, 24px);
}

/* ============================================================
   6. CONFETE — DIY (sem deps externas)
   ============================================================ */
.mp-confetti-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 8000;
}
.mp-confetti-piece {
  position: absolute;
  top: -20px;
  width: 12px;
  height: 18px;
  border-radius: 2px;
  animation: mpConfettiFall 2.6s linear forwards;
  will-change: transform, opacity;
}
.mp-confetti-piece.mp-c-circle { border-radius: 50%; width: 12px; height: 12px; }
.mp-confetti-piece.mp-c-strip  { width: 6px; height: 22px; }
.mp-confetti-piece.mp-c-tri    { width: 0; height: 0; background: transparent !important;
  border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 14px solid var(--mp-neon-gold);
  border-radius: 0;
}

/* ============================================================
   7. SHARE / VIRAL CARD apos win — botoes grandes
   ============================================================ */
.mp-viral-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.mp-viral-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: clamp(13px, 1.7vw, 16px);
  color: #fff;
  background: linear-gradient(135deg, var(--mp-neon-pink), var(--mp-neon-purple));
  box-shadow: 0 10px 22px rgba(126,87,194,0.34);
  transition: transform 0.18s var(--mp-ease-pop), box-shadow 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mp-viral-btn:hover  { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(126,87,194,0.46); }
.mp-viral-btn:active { transform: translateY(0) scale(0.97); }
.mp-viral-btn.mp-secondary {
  background: linear-gradient(135deg, #FFFFFF, #FFF0F6);
  color: var(--mp-neon-pink);
  border: 2px solid var(--mp-neon-pink);
}

/* ============================================================
   8. VIRAL HINT em hero/attract — particula sutil saindo da ovelha
   ============================================================ */
.mp-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, rgba(255,79,138,0));
  animation: mpFloatUp 1.6s ease-out forwards;
  pointer-events: none;
}

/* ============================================================
   9. ACESSIBILIDADE / REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .counter-num.mp-tense,
  .counter-num.mp-laser,
  .sheep-bubble.mp-rich,
  .mp-tagline,
  .mp-confetti-piece,
  .mp-near-miss,
  #sheepMascot.mp-happy,
  #sheepMascot.mp-sad,
  #sheepMascot.mp-watching,
  #sheepMascot.mp-blink {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   11. HALL DA FAMA — selos de credibilidade + banner FOMO
   ============================================================ */
.mp-hall-selos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px auto 12px;
  padding: 0 12px;
}
.mp-selo {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(10px, 1.3vw, 13px);
  letter-spacing: 0.4px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.95);
  color: #2D1747;
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 12px rgba(31,11,42,0.18);
}
.mp-selo.mp-selo-pulse {
  background: linear-gradient(135deg, #FFE700, #FFB300);
  color: #5A3A00;
  border-color: rgba(255,215,0,0.6);
  animation: mpPulseGlow 1.6s ease-in-out infinite;
  box-shadow: 0 6px 18px rgba(255,179,0,0.45);
}
.mp-hall-fomo {
  margin: 14px auto 0;
  padding: 10px 18px;
  max-width: 92%;
  text-align: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(12px, 1.6vw, 16px);
  color: #fff;
  background: linear-gradient(135deg, rgba(255,23,68,0.85), rgba(255,107,53,0.85));
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(255,23,68,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mp-hall-fomo b { color: #FFE700; }

/* lista "ultimos campeoes" injetada via JS quando ha dados */
.mp-hall-recent {
  margin: 12px auto 4px;
  padding: 10px 14px;
  max-width: 95%;
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,215,0,0.4);
}
.mp-hall-recent h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  margin: 0 0 6px;
  font-size: clamp(12px, 1.6vw, 16px);
  color: #B58900;
  text-align: center;
  letter-spacing: 0.4px;
}
.mp-hall-recent ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mp-hall-recent li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 700;
  color: #2D1747;
}
.mp-hall-recent li b {
  font-family: 'Orbitron', monospace;
  color: #B58900;
  letter-spacing: 0.3px;
}
.mp-hall-recent li::before {
  content: '✅';
  margin-right: 8px;
}

/* ============================================================
   13. MISSAO STREAK — ladder visual + top streakers
   ============================================================ */
.mp-streak-ladder {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 92%;
  margin: 12px auto 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.94);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(31,11,42,0.18), inset 0 0 0 1.5px rgba(255,215,0,0.35);
}
.mp-streak-tier {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(13px, 1.7vw, 16px);
  color: #2D1747;
  padding: 6px 4px;
  border-bottom: 1px dashed rgba(126,87,194,0.18);
}
.mp-streak-tier:last-child { border-bottom: 0; }
.mp-streak-tier b {
  font-family: 'Baloo 2', cursive;
  color: var(--mp-neon-pink);
  margin-left: 4px;
}
.mp-streak-tier.mp-streak-tier-top {
  background: linear-gradient(135deg, rgba(255,231,0,0.18), rgba(255,179,0,0.18));
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 4px;
  border: 1.5px solid rgba(255,215,0,0.55);
  animation: mpPulseGlow 2.2s ease-in-out infinite;
}
.mp-streak-tier.mp-streak-tier-top b { color: #B58900; }

.mp-streak-top-card {
  margin: 12px auto 0;
  padding: 10px 14px;
  max-width: 92%;
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,79,138,0.38);
}
.mp-streak-top-card h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  margin: 0 0 6px;
  font-size: clamp(12px, 1.6vw, 16px);
  color: var(--mp-neon-pink);
  text-align: center;
  letter-spacing: 0.4px;
}
.mp-streak-top-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.mp-streak-top-card li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: clamp(12px, 1.5vw, 15px); font-weight: 700; color: #2D1747;
}
.mp-streak-top-card li b {
  font-family: 'Orbitron', monospace; color: var(--mp-neon-pink); letter-spacing: 0.3px;
}

/* ============================================================
   14. SLIDE 300G — animacao de peso + headline rotativa
   ============================================================ */
/* Balanca SAGRADA: maior, glow forte, aura dourada pulsante */
.mp-300g-scale-wrap {
  position: relative;
  width: clamp(120px, 22vw, 280px);
  height: clamp(120px, 22vw, 280px);
  margin: 4px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-300g-scale-aura {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,231,0,0.55), rgba(255,107,53,0.35) 50%, transparent 75%);
  filter: blur(28px);
  animation: mp300gAuraPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mp300gAuraPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.75; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.mp-300g-scale {
  position: relative;
  font-size: clamp(80px, 18vw, 200px);
  line-height: 1;
  filter: drop-shadow(0 14px 28px rgba(255,107,53,0.55)) drop-shadow(0 0 18px rgba(255,231,0,0.6));
  animation: mpHeartbeat 2.4s ease-in-out infinite;
  z-index: 1;
}
.mp-300g-weight {
  position: relative;
  height: clamp(46px, 6vw, 72px);
  margin: 4px auto 12px;
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 0 24px rgba(255,255,255,0.7), 0 4px 12px rgba(255,107,53,0.8);
  /* flicker LED leve no painel inteiro */
  animation: mp300gWeightFlicker 4.2s linear infinite;
}
@keyframes mp300gWeightFlicker {
  0%, 96%, 100% { opacity: 1; }
  97%, 99%      { opacity: 0.82; }
  98%           { opacity: 1; }
}
.mp-300g-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: mp300gFlip 4.8s linear infinite;
}
.mp-300g-frame.mp-300g-frame-win {
  color: #FFE700;
  text-shadow: 0 0 24px #FFE700, 0 0 60px rgba(255,231,0,0.7);
  animation: mp300gWin 4.8s linear infinite;
}
@keyframes mp300gFlip {
  0%, 100% { opacity: 0; transform: translateY(20px) scale(0.85); }
  8%, 12%  { opacity: 1; transform: translateY(0) scale(1); }
  18%      { opacity: 0; transform: translateY(-20px) scale(0.95); }
}
@keyframes mp300gWin {
  0%, 100% { opacity: 0; transform: translateY(20px) scale(0.85); }
  8%, 16%  { opacity: 1; transform: translateY(0) scale(1.2); }
  22%      { opacity: 0; transform: translateY(-20px) scale(0.95); }
}

.mp-300g-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(20px, 3.5vw, 40px);
  line-height: 1.1;
  text-align: center;
  color: #fff;
  margin: 14px auto 6px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.25);
  padding: 0 14px;
  max-width: 95%;
  transition: opacity 0.22s ease;
}
.mp-300g-sub {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(13px, 1.9vw, 18px);
  text-align: center;
  color: rgba(255,255,255,0.95);
  margin: 0 auto 4px;
  padding: 0 16px;
  max-width: 92%;
  transition: opacity 0.22s ease;
}
.mp-fade-swap { opacity: 0 !important; }

/* prova social ao vivo no slide 300g — placeholder vazio ate JS popular */
.mp-300g-live {
  margin: 10px auto 0;
  max-width: 92%;
}
.mp-300g-live-card {
  background: rgba(0,0,0,0.30);
  border: 1.5px solid rgba(255,231,0,0.55);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  color: #fff;
  text-align: center;
}
.mp-300g-live-card h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(13px, 1.7vw, 17px);
  letter-spacing: 0.4px;
  margin: 0 0 6px;
  color: #FFE700;
}
.mp-300g-live-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 4px;
}
.mp-300g-live-stat {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(12px, 1.6vw, 15px);
}
.mp-300g-live-stat b {
  font-family: 'Orbitron', monospace;
  display: block;
  font-size: clamp(20px, 3.2vw, 28px);
  color: #FFE700;
  text-shadow: 0 0 12px rgba(255,231,0,0.55);
  letter-spacing: 0.6px;
}
.mp-300g-live-winners {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,231,0,0.35);
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 15px);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  justify-content: center;
}
.mp-300g-live-winners span {
  background: rgba(255,231,0,0.18);
  padding: 3px 10px;
  border-radius: 100px;
  color: #FFE700;
}

/* ============================================================
   15. TV indoor amplification (apenas em ?tv=1)
   ============================================================ */
body.mp-tv-mode .mp-tagline   { font-size: clamp(36px, 6vw, 72px); }
body.mp-tv-mode .mp-hint      { font-size: clamp(14px, 1.6vw, 18px); padding: 10px 18px; }
body.mp-tv-mode #sheepMascot  { transform: scale(1.18); }
body.mp-tv-mode .counter-num  { letter-spacing: -2px; }

/* end ====================================================== */
