/* ═══════════════════════════════════════════════════════════
   SICOOB CREDIPEU — Playful Game-Like Alternative Layout CSS
   Baseado Fielmente no Modelo Lúdico do Usuário (Baloo 2)
   Com Grid de Fundo, Círculos de Brilho, Moedas, Baloo 2 e Botões 3D
   ═══════════════════════════════════════════════════════════ */

/* ─── BRAND VARIABLES ─────────────────────────────────────── */
:root {
  --bg-dark-base:   #004b43;
  --bg-dark-end:    #003a35;
  --bg-teal-mid:    #00795f;
  --bg-teal-light:  #00b894;
  --bg-neon-teal:   #12e0ae;
  
  --lime:           #a7ef44;
  --lime-light:     #d9ff57;
  --lime-dark:      #9fe870;
  
  --navy:           #00382f;
  --navy-stroke:    #005b4b;
  --white:          #ffffff;
  
  --text-white:     #ffffff;
  --text-muted:     rgba(255, 255, 255, 0.95);
  
  --font-brand:     'Baloo 2', cursive;
}

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  font-family: var(--font-brand);
  background:
    radial-gradient(circle at top,
    var(--bg-neon-teal) 0%,
    var(--bg-teal-light) 30%,
    var(--bg-teal-mid) 70%,
    var(--bg-dark-end) 100%);
  color: var(--text-white);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
img { display: block; }

/* ─── DYNAMIC CONTAINER (FIEL AO MODELO DO USUÁRIO) ────────── */
.container {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top,
    var(--bg-neon-teal) 0%,
    var(--bg-teal-light) 30%,
    var(--bg-teal-mid) 70%,
    var(--bg-dark-end) 100%);
}

/* GRID FUNDO (FIEL AO MODELO) */
.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

/* GLOWS (FIEL AO MODELO) */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}
.g1 {
  width: 300px; height: 300px;
  background: #00ffbf;
  top: -100px; left: -100px;
}
.g2 {
  width: 250px; height: 250px;
  background: var(--lime-light);
  bottom: -80px; right: -50px;
}

/* ─── CANVAS OVERLAYS ───────────────────────────────────────── */
#bg-canvas { display: none; } /* Desativado para usar o gradiente luxuoso do modelo */
#confetti-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
}
#transition-overlay {
  position: fixed; inset: 0;
  background: var(--bg-dark-base);
  pointer-events: none; z-index: 998;
  opacity: 0; transition: opacity .3s ease;
}
#transition-overlay.fade-in  { opacity: 1; pointer-events: all; }
#transition-overlay.fade-out { opacity: 0; }

/* ─── SOUND TOGGLE / ADMIN GEAR ─────────────────────────────── */
#sound-toggle {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 18px;
  color: var(--text-white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
#sound-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

#admin-gear {
  position: fixed;
  top: 24px; left: 24px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 18px;
  color: var(--text-white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
#admin-gear:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05) rotate(45deg);
}

/* ─── IDLE HEADER CONTROLS CONTAINER ────────────────────────── */
.idle-header-controls {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  pointer-events: none;
  z-index: 100;
}
.idle-header-controls button {
  pointer-events: auto;
}
.idle-header-controls #sound-toggle,
.idle-header-controls #admin-gear {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

/* ─── SCREENS ───────────────────────────────────────────────── */
.screen {
  position: absolute; inset: 0;
  display: none; flex-direction: column;
  background: transparent;
  z-index: 1;
  padding: 28px;
  width: 100%; height: 100%;
}
.screen.active { display: flex; }

.screen:not(.screen-admin) {
  max-width: 520px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 100%;
}

/* Base scrollable layout */
.screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: center; justify-content: flex-start;
  width: 100%;
  gap: 0;
  padding-top: clamp(20px, 4.5vh, 48px);
  padding-bottom: 32px;
}
.screen-body::-webkit-scrollbar { display: none; }

.screen-footer {
  flex-shrink: 0;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  margin-top: auto;
  z-index: 2;
  margin-bottom: 8px; /* Mantém a logo no final absoluto da página */
}

/* ─── HEADER/LOGO BANNER (MANTÉM LOGO DO USUÁRIO) ────────────── */
.logo-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
  z-index: 2;
  padding-top: 12px;
}
.logo-header img {
  width: 130px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,58,53,0.25));
}
.badge-brand {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.top-brand-header {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.brand-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 22px;
  border-radius: 30px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}

/* ─── HERO & TYPOGRAPHY (FIEL AO MODELO DO USUÁRIO) ──────────── */
.hero {
  margin-top: clamp(4px, 1.2vh, 16px);
  width: 100%;
  text-align: center;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(68px, 7.5vw, 84px);
  line-height: .85;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow:
    0 6px 0 rgba(0,0,0,.18),
    0 12px 25px rgba(0,0,0,.25);
}
.hero h1 span {
  color: var(--lime-light);
}
.hero p {
  margin-top: 22px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--text-white);
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
}

/* RECOMPENSA BADGE (FIEL AO MODELO) */
.reward {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* ─── CTA BOTÃO (FIEL AO MODELO COM ANIMAÇÃO PULSE E EFEITO 3D) ─── */
button.btn-action {
  width: 100%;
  max-width: 520px;
  height: clamp(66px, 8.5vh, 84px);
  border: none;
  border-radius: 35px;
  background: linear-gradient(180deg, var(--lime-light), var(--lime));
  color: var(--navy);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  font-family: var(--font-brand);
  box-shadow:
    0 12px 0 var(--navy-stroke),
    0 0 40px rgba(217,255,87,.55);
  cursor: pointer;
  animation: pulse-btn 2s infinite;
  touch-action: manipulation;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: clamp(40px, 7.5vh, 110px); /* Pushes the button high, leaving logo at the bottom */
}

@keyframes pulse-btn {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

button.btn-action:hover {
  filter: brightness(1.05);
}
button.btn-action:active {
  transform: translateY(8px) scale(0.98);
  box-shadow:
    0 4px 0 var(--navy-stroke),
    0 0 20px rgba(217,255,87,.35);
  animation: none;
}

.footer-text {
  margin-top: 16px;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 600;
}

/* ─── TELA 01 — IDLE (CONVITE COM CARTAS FLUTUANTES) ─────────── */
#screen-idle .screen-body {
  justify-content: flex-start;
  padding-top: 70px !important;
}

/* Vitrine de Prêmios Gigantes e Flutuantes Sem Fundo Branco (Super Estilo 3D) */
.idle-prizes-cluster {
  width: 100%;
  max-width: 520px;
  height: clamp(230px, 32vh, 360px);
  position: relative;
  margin-top: clamp(100px, 15vh, 160px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prizes-showcase-glow {
  position: absolute;
  width: clamp(260px, 34vh, 380px);
  height: clamp(260px, 34vh, 380px);
  background: radial-gradient(circle, rgba(197,212,0,0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(15px);
  z-index: 0;
  pointer-events: none;
  animation: pulse-showcase-glow 3s infinite alternate ease-in-out;
}

@keyframes pulse-showcase-glow {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

.showcase-prize-icon {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 58, 53, 0.45));
  width: clamp(135px, 20vh, 185px);
  height: clamp(135px, 20vh, 185px);
}

/* Chapéu Sicoob (esquerda) */
.prize-1 {
  left: 6%;
  bottom: clamp(0px, 0vh, 20px);
  transform: rotate(-14deg);
  animation: float-prize-1 4.5s infinite ease-in-out alternate;
  animation-delay: 0s;
  z-index: 2;
}

/* Boné Sicoob (centro-esquerda) */
.prize-2 {
  left: 21%;
  bottom: clamp(10px, 1.5vh, 35px);
  transform: rotate(-6deg);
  animation: float-prize-2 4.5s infinite ease-in-out alternate;
  animation-delay: -0.9s;
  z-index: 3;
}

/* Copo LED Sicoob (centro) */
.prize-3 {
  left: 36%;
  bottom: clamp(10px, 1.5vh, 35px);
  transform: rotate(0deg);
  animation: float-prize-3 4.5s infinite ease-in-out alternate;
  animation-delay: -1.8s;
  z-index: 4;
}

/* Ecobag Sicoob (centro-direita) */
.prize-4 {
  left: 51%;
  bottom: clamp(10px, 1.5vh, 35px);
  transform: rotate(6deg);
  animation: float-prize-4 4.5s infinite ease-in-out alternate;
  animation-delay: -2.7s;
  z-index: 3;
}

/* Garrafinha Sicoob (extremidade direita) */
.prize-5 {
  left: 66%;
  bottom: clamp(0px, 0vh, 20px);
  transform: rotate(14deg);
  animation: float-prize-5 4.5s infinite ease-in-out alternate;
  animation-delay: -3.6s;
  z-index: 2;
}

/* Animações de flutuação individuais e orgânicas */
@keyframes float-prize-1 {
  0% { transform: translateY(0) rotate(-14deg) scale(1); }
  100% { transform: translateY(-16px) rotate(-10deg) scale(1.03); }
}
@keyframes float-prize-2 {
  0% { transform: translateY(0) rotate(-6deg) scale(1); }
  100% { transform: translateY(-18px) rotate(-2deg) scale(1.03); }
}
@keyframes float-prize-3 {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-18px) rotate(4deg) scale(1.03); }
}
@keyframes float-prize-4 {
  0% { transform: translateY(0) rotate(6deg) scale(1); }
  100% { transform: translateY(-18px) rotate(10deg) scale(1.03); }
}
@keyframes float-prize-5 {
  0% { transform: translateY(0) rotate(14deg) scale(1); }
  100% { transform: translateY(-16px) rotate(18deg) scale(1.03); }
}

/* ─── TELA 02 & ADMIN LOGIN — TECLADOS LÚDICOS BALOO ────────── */
#screen-register .screen-body,
#screen-admin-login .screen-body {
  padding-top: 30px;
  justify-content: flex-start;
}
#screen-register .hero h1,
#screen-admin-login .hero h1 {
  font-size: 48px;
}
#screen-register .btn-action,
#screen-admin-login .btn-action {
  max-width: 290px;
  margin-top: clamp(12px, 2.5vh, 20px);
  margin-bottom: clamp(8px, 1.5vh, 20px) !important;
}

.conta-field-wrap {
  width: 100%;
  max-width: 340px;
  margin-top: clamp(6px, 1.5vh, 12px);
  margin-bottom: 6px;
  z-index: 2;
}
.conta-field {
  width: 100%;
  background: var(--white);
  border: 3.5px solid var(--navy);
  border-radius: 20px;
  padding: 12px;
  font-family: var(--font-brand);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  outline: none;
  letter-spacing: 0.06em;
  text-align: center;
  box-shadow: 0 6px 0 var(--navy);
  transition: all .2s;
}
.conta-field:focus {
  border-color: var(--bg-teal-light);
}
.conta-field::placeholder { color: rgba(0, 58, 53, 0.3); font-weight: 600; }
.conta-field.error-state  { animation: shake-numpad .4s ease; border-color: #ff3333; }

@keyframes shake-numpad {
  0%,100% { transform: translateX(0); }
  25%,75%  { transform: translateX(-6px); }
  50%      { transform: translateX(6px); }
}

.member-name {
  display: none;
}

.error-msg {
  color: #ffea00;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 2px 2px 0 var(--navy);
  min-height: 1.2em;
  margin-bottom: 6px;
  z-index: 2;
}

.numpad-wrap {
  width: 100%;
  max-width: 340px;
  z-index: 2;
}
.numpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.np-key {
  background: var(--white);
  border: 3.5px solid var(--navy);
  border-radius: 18px;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: 28px;
  font-weight: 800;
  padding: 11px 0;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 0 var(--navy);
}
.np-key:hover {
  background: #f7fafc;
}
.np-key:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--navy);
}
.np-key.del {
  background: var(--white);
  border-color: #d32f2f;
  color: #d32f2f;
  box-shadow: 0 6px 0 var(--navy);
}
.np-key.del:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--navy);
}
.np-key.ok {
  background: var(--lime-light);
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: 0 6px 0 var(--navy);
}
.np-key.ok:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--navy);
}

.back-link {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,58,53,0.3);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 0;
  transition: opacity .2s;
  margin-top: 10px;
  z-index: 2;
}
.back-link:hover { opacity: 0.8; }

/* ─── TELA 03 — JOGO (MOLDURAS DO JOGO) ──────────────────────── */
#screen-game {
  overflow: hidden;
  padding: clamp(10px, 2.5vw, 16px);
}

.game-header {
  flex-shrink: 0;
  text-align: center;
  padding: 10px 0 4px;
  z-index: 2;
}

.game-main-title {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.1;
  text-shadow:
    2px  2px 0 var(--navy),
    -2.5px -2.5px 0 var(--navy);
}
.game-main-title span { color: var(--lime-light); }

.timer-row {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 6px;
}
.timer-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,58,53,0.3);
  text-transform: uppercase;
}
.timer-value {
  font-size: 24px;
  font-weight: 900;
  background: var(--white);
  border: 3.5px solid var(--navy);
  border-radius: 16px;
  padding: 4px 16px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all .3s;
}
.timer-value.warning {
  color: #ff9900; border-color: #ff9900;
}
.timer-value.danger {
  color: #ff3333; border-color: #ff3333;
  animation: pulse-danger-timer .8s ease infinite alternate;
}
@keyframes pulse-danger-timer { 
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Progress bar */
.game-progress-wrap {
  flex-shrink: 0;
  height: 22px;
  background: rgba(0, 58, 53, 0.25);
  border: 3.5px solid var(--navy);
  margin: 8px clamp(16px,4vw,40px);
  border-radius: 20px; overflow: hidden;
  z-index: 2;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}
.game-progress-fill {
  height: 100%; 
  background: linear-gradient(180deg, var(--lime-light), var(--lime-dark));
  border-radius: 20px; 
  transition: width .4s cubic-bezier(0.1, 0.8, 0.1, 1);
  box-shadow: 0 2px 0 rgba(255,255,255,0.4) inset;
}

/* Card area */
.game-area {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(6px, 1.8vw, 12px) 4px;
  min-height: 0; overflow: hidden;
  z-index: 2;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.6vmin, 12px);
  width: 100%;
  max-width: min(98vw, calc((100vh - 220px) * 0.75));
}
@supports (height: 1svh) {
  .card-grid {
    max-width: min(98vw, calc((100svh - 220px) * 0.75));
  }
}
@supports (height: 1dvh) {
  .card-grid {
    max-width: min(98vw, calc((100dvh - 220px) * 0.75));
  }
}

/* ─── MEMORY CARDS (VISUAL DE TABULEIRO FIEL) ───────────────── */
.memory-card {
  aspect-ratio: 1;
  perspective: 1000px;
  cursor: pointer;
  border-radius: 22px;
  touch-action: manipulation;
}
.card-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: inherit;
  box-shadow: 0 6px 20px rgba(0, 58, 53, 0.25);
}
.memory-card.flipped .card-inner { transform: rotateY(180deg); }

.card-face {
  position: absolute; inset: 0;
  border-radius: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}

/* VERSO (Frente para o jogador - WHITE BOARD GAME CARD + LOGO) */
.card-back {
  background: var(--white);
  border: 3.5px solid var(--navy);
  padding: 0;
}
.card-back::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), transparent);
}
.card-back img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transform: scale(1.38);
}

/* FRENTE (Produto - CLEAN WHITE CARD) */
.card-front {
  transform: rotateY(180deg);
  background: var(--white);
  border: 3.5px solid var(--navy);
  padding: 0;
}
.card-front img {
  width: 100%; height: 100%;
  object-fit: cover; flex-shrink: 0;
  border-radius: 18px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

/* Estados especiais das cartas */
.memory-card.matched .card-inner {
  box-shadow: 0 0 0 3.5px var(--lime), 0 0 25px rgba(217,255,87,0.75);
  border-color: var(--lime);
}
.memory-card.wrong .card-inner {
  animation: wrong-shake-card .45s ease;
}
@keyframes wrong-shake-card {
  0%,100% { transform: rotateY(180deg) translateX(0); }
  25%,75%  { transform: rotateY(180deg) translateX(-5px); }
  50%      { transform: rotateY(180deg) translateX(5px); }
}

/* ─── TELAS DE VITÓRIA & DERROTA ────────────────────────────── */
#screen-win .screen-body,
#screen-timeup .screen-body {
  justify-content: flex-start;
  padding-top: 30px;
}

.win-main-title {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(52px, 12vw, 96px);
  line-height: .82;
  letter-spacing: -2px;
  color: var(--white);
  text-shadow:
    0 6px 0 rgba(0,0,0,.18),
    0 12px 25px rgba(0,0,0,.25);
  margin-bottom: clamp(14px, 2vh, 24px);
}
.win-main-title span { color: var(--lime-light); }

.win-headline {
  font-size: clamp(16px, 3.2vw, 22px);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 2px;
}
.win-subline {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 2px;
}
.win-prize-name {
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 800;
  color: var(--lime-light);
  text-shadow: 2px 2px 0 var(--navy);
  line-height: 1.1;
  margin-bottom: clamp(12px, 2vh, 22px);
}

/* Container de brinde */
.prize-img-wrap {
  width: clamp(180px, 28vh, 280px);
  height: clamp(180px, 28vh, 280px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: transparent;
  border: none;
  margin-top: auto; margin-bottom: auto;
  z-index: 2;
}
.prize-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 58, 53, 0.45));
  animation: float-prize 3.5s infinite ease-in-out alternate;
  z-index: 1;
}
@keyframes float-prize {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.parabens {
  font-size: clamp(26px, 6vw, 48px);
  font-weight: 800;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--navy);
  margin-bottom: clamp(10px, 1.8vh, 18px);
  z-index: 2;
}

/* Tela de derrota */
.timeup-headline {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800;
  color: var(--lime-light);
  text-shadow:
    0 6px 0 rgba(0,0,0,.18),
    0 12px 25px rgba(0,0,0,.25);
  margin-bottom: 4px;
}
.timeup-subline {
  font-size: clamp(13px, 2.5vw, 17px);
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.3;
  max-width: 320px;
  margin-bottom: clamp(10px, 1.8vh, 18px);
}

/* ─── TELA ADMIN (VISUAL CLEAN, CORPORATIVO) ────────────────── */
.screen-admin {
  background: #f7fafc; color: var(--navy);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 12px !important;
}
@media (min-width: 600px) {
  .screen-admin {
    padding: 24px !important;
  }
}
.admin-panel {
  width: 100%;
  max-width: 900px; margin: 0 auto;
  padding: clamp(16px, 4vw, 24px) 0 50px;
  z-index: 2; position: relative;
  box-sizing: border-box;
}
.admin-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .admin-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.admin-title { font-size: clamp(18px,4.5vw,24px); font-weight: 800; color: var(--navy); }
.admin-subtitle { font-size: 13px; color: #64748b; margin-top: 3px; }
.admin-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  width: 100%;
}
@media (min-width: 600px) {
  .admin-actions {
    display: flex;
    width: auto;
  }
}
.admin-btn {
  border: none; border-radius: 8px;
  padding: 10px 14px; font-family: var(--font-brand);
  font-size: clamp(11px,2.2vw,13px); font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.admin-btn:hover { opacity: .9; transform: translateY(-1px); }
.admin-btn.export  { background: var(--bg-teal-mid); color: var(--white); }
.admin-btn.clear   { background: #ef4444;      color: var(--white); }
.admin-btn.back    { background: var(--navy);  color: var(--white); }

/* Configurations Form Footer alignment */
.config-card {
  padding: 12px !important;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .config-card {
    padding: 20px !important;
  }
}
.config-card .grid-inputs {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)) !important;
  gap: 12px !important;
}
@media (min-width: 600px) {
  .config-card .grid-inputs {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    gap: 16px !important;
  }
}

.config-grid-selects {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  width: 100%;
}
@media (min-width: 680px) {
  .config-grid-selects {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  }
}

.config-card select,
.config-card input {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-overflow: ellipsis !important;
}
.config-card > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media (min-width: 600px) {
  .config-card > div:last-child {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}

.admin-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,.05);
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
}
.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-size: clamp(11px,1.8vw,13px);
}
.admin-table th {
  background: var(--navy); color: var(--white);
  text-align: left;
  padding: clamp(8px,1.5vw,12px) clamp(10px,2vw,14px);
  font-weight: 700; font-size: clamp(10px,1.4vw,12px);
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
  border-bottom: 1px solid #e2e8f0;
}
.admin-table td {
  padding: clamp(6px,1.2vw,10px) clamp(10px,2vw,14px);
  border-bottom: 1px solid #e2e8f0; color: #334155; vertical-align: middle;
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: #f8fafc; }
.admin-table code {
  background: #f1f5f9; border-radius: 4px;
  padding: 2px 6px; font-weight: 700; color: var(--navy);
}

/* ─── RESPONSIVIDADE ────────────────────────────────────────── */
@media (max-width: 374px) {
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .game-main-title, .win-main-title { font-size: 24px; }
  button.btn-action { font-size: 18px; height: 62px; }
  .conta-field-wrap, .numpad-wrap { width: 90vw; }
  #screen-register .btn-action,
  #screen-admin-login .btn-action { max-width: 90vw; }
  .prize-img-wrap { width: 110px; height: 110px; }
  .parabens { font-size: 26px; }
  .logo-header img { width: 100px; }
}

@media (max-height: 740px) {
  .screen-body { padding-top: clamp(16px, 2.5vh, 24px) !important; }
  .logo-header { padding-top: 6px; }
  .hero { margin-top: clamp(4px, 0.8vh, 10px); }
  .hero h1 { font-size: clamp(52px, 9vw, 72px); }
  .hero p { margin-top: 10px; font-size: clamp(16px, 2.2vw, 20px); }
  .reward { margin-top: 14px; padding: 8px 18px; font-size: 16px; }
  
  /* Vitrine de Prêmios Gigantes e Flutuantes Sem Fundo Branco (Super Estilo 3D) */
  .idle-prizes-cluster { width: 100%; height: clamp(160px, 22vh, 210px); margin-top: clamp(65px, 10vh, 100px); }
  .showcase-prize-icon {
    width: clamp(100px, 14vh, 125px);
    height: clamp(100px, 14vh, 125px);
  }
  .prize-1 { left: 5%; bottom: clamp(0px, 0vh, 10px); }
  .prize-2 { left: 20%; bottom: clamp(5px, 0.8vh, 20px); }
  .prize-3 { left: 36%; bottom: clamp(5px, 0.8vh, 20px); }
  .prize-4 { left: 52%; bottom: clamp(5px, 0.8vh, 20px); }
  .prize-5 { left: 68%; bottom: clamp(0px, 0vh, 10px); }
  
  .win-main-title { font-size: clamp(38px, 7vw, 64px); margin-bottom: 10px; }
  .prize-img-wrap { width: clamp(120px, 20vh, 160px); height: clamp(120px, 20vh, 160px); }
  .win-prize-name { font-size: clamp(15px, 3vw, 20px); margin-bottom: 10px; }
  
  #screen-register .screen-body,
  #screen-admin-login .screen-body { padding-top: clamp(8px, 1.8vh, 20px) !important; }
  .conta-field-wrap { max-width: 290px; margin-top: clamp(6px, 1.5vh, 12px) !important; }
  .conta-field { padding: 9px; font-size: 22px; border-radius: 16px; border-width: 3px; box-shadow: 0 4px 0 var(--navy); }
  .numpad-wrap { max-width: 290px; }
  .numpad { gap: 8px; }
  .np-key { padding: 8px 0; font-size: 24px; border-radius: 14px; border-width: 3px; box-shadow: 0 4px 0 var(--navy); }
  .np-key:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--navy); }
  .np-key.del { box-shadow: 0 4px 0 var(--navy); }
  .np-key.del:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--navy); }
  .np-key.ok { box-shadow: 0 4px 0 var(--navy); }
  .np-key.ok:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--navy); }
  #screen-register .btn-action,
  #screen-admin-login .btn-action {
    max-width: 250px;
    margin-top: clamp(8px, 1.5vh, 14px);
    margin-bottom: clamp(6px, 1vh, 12px) !important;
  }
  
  button.btn-action { margin-top: clamp(6px, 1vh, 12px); height: clamp(56px, 7vh, 68px); margin-bottom: clamp(16px, 3vh, 32px); }
  .screen-footer { margin-bottom: 4px; }
  .logo-header img { width: 150px !important; max-height: 50px !important; }
}

@media (max-height: 660px) {
  .container { padding: 12px; }
  .screen { padding: 12px; }
  .screen-body { padding-top: clamp(8px, 1.2vh, 12px) !important; padding-bottom: 8px; }
  .logo-header img { width: 140px; }
  .badge-brand { padding: 4px 8px; font-size: 10px; }
  .hero { margin-top: 2px; }
  .hero h1 { font-size: clamp(42px, 7vw, 56px); line-height: 0.8; letter-spacing: -1px; }
  .hero p { font-size: 14px; margin-top: 6px; line-height: 1.2; }
  .reward { margin-top: 8px; padding: 6px 12px; font-size: 14px; }
  
  /* Vitrine de Prêmios Gigantes e Flutuantes Sem Fundo Branco (Super Estilo 3D) */
  .idle-prizes-cluster { width: 100%; height: 125px; margin-top: 40px; }
  .showcase-prize-icon {
    width: clamp(80px, 11vh, 95px);
    height: clamp(80px, 11vh, 95px);
  }
  .prize-1 { bottom: 0px; }
  .prize-2 { bottom: 4px; }
  .prize-3 { bottom: 4px; }
  .prize-4 { bottom: 4px; }
  .prize-5 { bottom: 0px; }
  
  .game-header { padding: 2px 0 2px; }
  .game-main-title { font-size: clamp(16px, 4vw, 24px); }
  .game-progress-wrap { margin: 4px 0 8px !important; }
  .game-area { padding: 0 clamp(4px, 1vw, 8px) 2px; }
  
  /* Garante que o grid de cartas permaneça 100% contido */
  .card-grid {
    max-width: min(98vw, calc((100vh - 220px) * 0.75)) !important;
  }
  @supports (height: 1svh) {
    .card-grid {
      max-width: min(98vw, calc((100svh - 220px) * 0.75)) !important;
    }
  }
  @supports (height: 1dvh) {
    .card-grid {
      max-width: min(98vw, calc((100dvh - 220px) * 0.75)) !important;
    }
  }
  
  .win-main-title { font-size: clamp(28px, 6vw, 40px); margin-bottom: 2px; }
  .win-headline { font-size: 12px; margin-bottom: 1px; }
  .win-subline { font-size: 11px; margin-bottom: 1px; }
  .win-prize-name { font-size: clamp(13px, 2.5vw, 18px); margin-bottom: 2px; }
  .prize-img-wrap { width: clamp(90px, 14vh, 120px); height: clamp(90px, 14vh, 120px); padding: 0; border: none; }
  .parabens { font-size: clamp(16px, 3.5vw, 22px); margin-bottom: 4px; }
  
  #screen-win .screen-body,
  #screen-timeup .screen-body { padding-top: 6px !important; }
  .timeup-headline { font-size: clamp(16px, 3.5vw, 22px); margin-bottom: 2px; }
  .timeup-subline { font-size: 11px; margin-bottom: 4px; }
  
  /* Keyboard/Numpad Compaction on very short screens */
  #screen-register .screen-body,
  #screen-admin-login .screen-body { padding-top: clamp(6px, 1.5vh, 15px) !important; }
  .conta-field-wrap { max-width: 220px; margin-top: 4px !important; margin-bottom: 6px; }
  .conta-field { padding: 6px; font-size: 18px; border-radius: 12px; border-width: 2.5px; box-shadow: 0 3px 0 var(--navy); }
  .member-name { font-size: 13px; margin-bottom: 6px; }
  .error-msg { font-size: 13px; margin-bottom: 4px; }
  .numpad-wrap { max-width: 220px; }
  .numpad { gap: 6px; }
  .np-key { padding: 6px 0; font-size: 20px; border-radius: 12px; border-width: 2.5px; box-shadow: 0 3px 0 var(--navy); }
  .np-key:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--navy); }
  .np-key.del { box-shadow: 0 3px 0 var(--navy); }
  .np-key.del:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--navy); }
  .np-key.ok { box-shadow: 0 3px 0 var(--navy); }
  .np-key.ok:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--navy); }
  #screen-register .btn-action,
  #screen-admin-login .btn-action {
    max-width: 220px;
    margin-top: clamp(6px, 1vh, 10px);
    margin-bottom: clamp(4px, 0.8vh, 8px) !important;
  }
  .back-link { margin-top: 4px; font-size: 13px; padding: 4px 0; }
  
  button.btn-action { height: 46px; font-size: 15px; border-radius: 23px; box-shadow: 0 6px 0 var(--navy-stroke); margin-bottom: 10px; }
  button.btn-action:active { transform: translateY(4px) scale(0.98); box-shadow: 0 2px 0 var(--navy-stroke); }
  .footer-text { margin-top: 4px; font-size: 9px; }
  
  /* Footer logo */
  .logo-header { padding-top: 4px !important; }
  .logo-header img { max-height: 40px !important; width: 130px !important; }
  .screen-footer { margin-bottom: 4px; }
}

/* ─── MODAL CUSTOMIZADO E LÚDICO ─────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 58, 53, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: var(--white);
  border: 4px solid var(--navy);
  border-radius: 28px;
  width: 90%;
  max-width: 320px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}
.modal-icon {
  font-size: 48px;
  margin-bottom: 10px;
  animation: bounce-icon 2s infinite ease-in-out alternate;
}
@keyframes bounce-icon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
.modal-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 800;
}
.modal-card p {
  font-size: 16px;
  color: #334155;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 600;
}
.modal-btn {
  background: linear-gradient(180deg, var(--lime-light), var(--lime));
  color: var(--navy);
  border: none;
  border-radius: 18px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-brand);
  box-shadow: 0 4px 0 var(--navy-stroke);
  cursor: pointer;
  width: 100%;
  transition: transform 0.1s;
}
.modal-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--navy-stroke);
}

.cancel-btn {
  background: #cbd5e1 !important;
  color: #334155 !important;
  box-shadow: 0 4px 0 #94a3b8 !important;
}
.cancel-btn:active {
  transform: translateY(2px) !important;
  box-shadow: 0 2px 0 #94a3b8 !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVIDADE PREMIUM — TABLETS E TOTENS REQUISITADOS
   ═══════════════════════════════════════════════════════════ */

/* 📱 600px+ Tablet Portrait (iPads e Tablets Portrait) */
@media (min-width: 600px) and (orientation: portrait) {
  .screen-body {
    padding-top: clamp(24px, 4vh, 70px) !important;
  }
  .hero h1 {
    font-size: clamp(82px, 11vw, 120px);
  }
  .hero p {
    font-size: clamp(24px, 3vw, 30px);
    margin-top: 18px;
  }
  .reward {
    font-size: 21px;
    padding: 12px 28px;
    margin-top: 26px;
  }
  
  /* Vitrine de brindes da tela inicial */
  .idle-prizes-cluster {
    height: clamp(260px, 30vh, 360px);
    margin-top: clamp(110px, 14vh, 180px);
    max-width: 600px;
  }
  .showcase-prize-icon {
    width: clamp(140px, 18vh, 180px);
    height: clamp(140px, 18vh, 180px);
  }
  .prize-1 { bottom: 25px; }
  .prize-2 { bottom: 35px; }
  .prize-3 { bottom: 35px; }
  .prize-4 { bottom: 35px; }
  .prize-5 { bottom: 25px; }
  
  /* Botões e Identificação */
  .conta-field-wrap {
    max-width: clamp(380px, 70vw, 550px);
    margin-top: clamp(18px, 3vh, 36px) !important;
  }
  .conta-field {
    font-size: 28px;
    padding: 14px;
    border-radius: 24px;
  }
  .numpad-wrap {
    max-width: clamp(380px, 70vw, 550px);
  }
  .np-key {
    font-size: clamp(24px, 4vw, 34px);
    padding: clamp(10px, 1.6vh, 18px) 0;
    border-radius: 20px;
  }
  #screen-register .btn-action,
  #screen-admin-login .btn-action {
    max-width: clamp(380px, 70vw, 550px);
    height: clamp(66px, 8vh, 80px);
    font-size: 24px;
    border-radius: 30px;
    margin-top: clamp(16px, 2vh, 28px);
    margin-bottom: clamp(12px, 1.5vh, 22px) !important;
  }
  button.btn-action {
    max-width: 600px;
    height: clamp(70px, 8vh, 90px);
    font-size: clamp(20px, 3.5vw, 30px);
    margin-bottom: clamp(36px, 6vh, 70px);
  }
  .logo-header img {
    width: 200px !important;
    max-height: 68px !important;
  }
  
  /* Tela de jogo */
  .game-main-title { font-size: clamp(48px, 6vw, 72px); }
  .card-grid {
    max-width: min(97vw, calc((100vh - 240px) * 0.75));
    gap: 16px;
  }
  .card-label { font-size: clamp(12px, 1.5vw, 16px); }
  
  /* Telas de desfecho */
  .win-main-title { font-size: clamp(52px, 7vw, 84px); margin-bottom: 20px; }
  .win-headline { font-size: clamp(22px, 3vw, 34px); }
  .win-prize-name { font-size: clamp(28px, 4vw, 44px); margin-bottom: 24px; }
  .prize-img-wrap { width: clamp(180px, 26vh, 280px); height: clamp(180px, 26vh, 280px); }
  .parabens { font-size: clamp(48px, 7vw, 80px); margin-bottom: 20px; }
}

@supports (height: 1svh) {
  @media (min-width: 600px) and (orientation: portrait) {
    .card-grid { max-width: min(97vw, calc((100svh - 240px) * 0.75)); }
  }
}
@supports (height: 1dvh) {
  @media (min-width: 600px) and (orientation: portrait) {
    .card-grid { max-width: min(97vw, calc((100dvh - 240px) * 0.75)); }
  }
}

/* 🖥️ 900px+ Totem Portrait (Full HD) */
@media (min-width: 900px) and (orientation: portrait) {
  .screen-body {
    padding-top: clamp(40px, 6vh, 120px) !important;
  }
  .hero h1 {
    font-size: clamp(100px, 12vw, 145px);
  }
  .hero p {
    font-size: clamp(28px, 3.5vw, 36px);
    max-width: 650px;
  }
  .reward {
    font-size: 24px;
    padding: 14px 36px;
    margin-top: 32px;
  }
  
  .idle-prizes-cluster {
    height: clamp(340px, 34vh, 460px);
    margin-top: clamp(140px, 16vh, 220px);
    max-width: 780px;
  }
  .showcase-prize-icon {
    width: clamp(170px, 22vh, 230px);
    height: clamp(170px, 22vh, 230px);
  }
  .prize-1 { bottom: 35px; }
  .prize-2 { bottom: 45px; }
  .prize-3 { bottom: 45px; }
  .prize-4 { bottom: 45px; }
  .prize-5 { bottom: 35px; }
  
  .conta-field-wrap, .numpad-wrap {
    max-width: clamp(450px, 80vw, 750px);
  }
  .conta-field {
    font-size: 36px;
    padding: 18px 36px;
    border-radius: 30px;
  }
  .np-key {
    font-size: clamp(30px, 4.5vw, 44px);
    padding: clamp(12px, 1.8vh, 22px) 0;
    border-radius: 24px;
  }
  #screen-register .btn-action,
  #screen-admin-login .btn-action {
    max-width: clamp(450px, 80vw, 750px);
    height: clamp(74px, 9vh, 92px);
    font-size: 28px;
    border-radius: 35px;
    margin-top: clamp(20px, 2.5vh, 36px);
  }
  button.btn-action {
    max-width: 780px;
    height: clamp(80px, 9vh, 100px);
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: clamp(48px, 7vh, 90px);
  }
  .logo-header img {
    width: 250px !important;
    max-height: 84px !important;
  }
  
  .game-main-title { font-size: clamp(60px, 8vw, 96px); }
  .card-grid { gap: 20px; }
  .card-label { font-size: clamp(14px, 1.8vw, 20px); }
  
  .win-main-title { font-size: clamp(68px, 9vw, 110px); }
  .win-headline { font-size: clamp(28px, 3.8vw, 42px); }
  .win-prize-name { font-size: clamp(34px, 4.8vw, 54px); }
  .prize-img-wrap { width: clamp(240px, 32vh, 380px); height: clamp(240px, 32vh, 380px); }
  .parabens { font-size: clamp(60px, 9vw, 110px); }
}

/* 🖥️ 1800px+ Totem Portrait (4K) */
@media (min-width: 1800px) and (orientation: portrait) {
  .screen-body {
    padding-top: 180px !important;
  }
  .hero h1 { font-size: 190px; }
  .hero p { font-size: 44px; max-width: 950px; }
  .reward { font-size: 34px; padding: 20px 48px; }
  .idle-prizes-cluster { height: 600px; margin-top: 260px; max-width: 1400px; }
  .showcase-prize-icon { width: 320px; height: 320px; }
  
  .conta-field-wrap, .numpad-wrap { max-width: 1100px; }
  .conta-field { font-size: 54px; padding: 28px; border-radius: 40px; }
  .np-key { font-size: 64px; padding: 32px 0; border-radius: 35px; }
  #screen-register .btn-action,
  #screen-admin-login .btn-action { max-width: 1100px; height: 130px; font-size: 44px; border-radius: 50px; }
  button.btn-action { height: 140px; font-size: 48px; border-radius: 50px; max-width: 1400px; }
  .logo-header img { width: 420px !important; max-height: 140px !important; }
  
  .game-main-title { font-size: 140px; }
  .card-label { font-size: 30px; }
  
  .win-main-title { font-size: 150px; }
  .win-headline { font-size: 60px; }
  .win-prize-name { font-size: 80px; }
  .prize-img-wrap { width: 560px; height: 560px; }
  .parabens { font-size: 150px; }
}
