/* ==========================================================================
   COMPONENTS & UI ELEMENTS (SHOW DO MILHÃO BÍBLICO)
   ========================================================================== */

/* ==========================================================================
   PERGUNTA & ARENA CENTRAL
   ========================================================================== */
.question-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.question-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-regular {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.badge-million {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #1a0f00;
  font-family: var(--font-royal);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
  letter-spacing: 1px;
}

.badge-category {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-sub);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.question-content-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.question-text {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-white);
  flex: 1;
}

.btn-speaker {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-speaker:hover {
  background: rgba(245, 158, 11, 0.25);
  transform: scale(1.1);
}

.btn-speaker.speaking {
  background: var(--gold-gradient);
  color: #000;
  animation: pulseGold 1s infinite;
}

/* ==========================================================================
   GRADE DE ALTERNATIVAS (A, B, C, D)
   ========================================================================== */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.option-btn {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 2px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-card);
  position: relative;
  min-height: 70px;
}

.option-btn:hover:not(:disabled) {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.option-letter {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  font-family: var(--font-royal);
  font-weight: 900;
  font-size: 1.15rem;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-glass);
  transition: all 0.2s ease;
}

.option-text {
  flex: 1;
  line-height: 1.3;
}

/* Estados da Opção */
.option-btn.selected {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--gold-bright);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
  transform: scale(1.02);
}

.option-btn.selected .option-letter {
  background: var(--gold-gradient);
  color: #1a0f00;
  border-color: var(--gold-bright);
}

.option-btn.blinking {
  animation: blinkCard 0.4s infinite alternate;
}

.option-btn.correct-answer {
  background: rgba(16, 185, 129, 0.35) !important;
  border-color: var(--color-correct) !important;
  box-shadow: 0 0 30px var(--color-correct-glow) !important;
  animation: pulseCorrect 0.6s ease;
}

.option-btn.correct-answer .option-letter {
  background: var(--color-correct);
  color: #fff;
}

.option-btn.wrong-answer {
  background: rgba(239, 68, 68, 0.35) !important;
  border-color: var(--color-wrong) !important;
  box-shadow: 0 0 30px var(--color-wrong-glow) !important;
}

.option-btn.eliminated {
  opacity: 0.25;
  filter: grayscale(1);
  pointer-events: none;
  text-decoration: line-through;
}

@keyframes blinkCard {
  0% { background: rgba(245, 158, 11, 0.2); border-color: var(--gold-primary); }
  100% { background: rgba(245, 158, 11, 0.6); border-color: #fff; }
}

@keyframes pulseCorrect {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   PAINEL DE VALORES & AÇÕES (ACERTAR / PARAR / ERRAR)
   ========================================================================== */
.prize-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.prize-box {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.prize-box.box-acertar {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
}

.prize-box.box-parar {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.08);
}

.prize-box.box-errar {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
}

.prize-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.prize-val {
  font-family: var(--font-royal);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-white);
}

.box-acertar .prize-val { color: #34d399; }
.box-parar .prize-val { color: var(--gold-bright); }
.box-errar .prize-val { color: #f87171; }

/* Botões de Ação Inferiores */
.action-row {
  display: flex;
  gap: 14px;
}

.btn-confirm-action {
  flex: 2;
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-royal);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-confirm-action:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: var(--border-glass);
  color: var(--text-muted);
}

.btn-confirm-action.ready {
  background: var(--gold-gradient);
  color: #1a0f00;
  border-color: var(--gold-bright);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.5);
  cursor: pointer;
}

.btn-stop-action {
  flex: 1;
  background: rgba(239, 68, 68, 0.12);
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-stop-action:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.25);
  border-color: var(--color-wrong);
  color: #fff;
}

/* ==========================================================================
   BARRA DE AJUDAS BÍBLICAS (LIFELINES)
   ========================================================================== */
.lifelines-bar {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.help-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 4px;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.help-btn:hover:not(.used) {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.help-btn.used {
  opacity: 0.3;
  filter: grayscale(1);
  cursor: not-allowed;
  border-color: transparent;
}

.help-icon {
  font-size: 1.5rem;
}

.help-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.help-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   ESCADA DE PRÊMIOS (LADDER)
   ========================================================================== */
.ladder-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ladder-header {
  font-family: var(--font-royal);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-glass);
}

.ladder-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  flex: 1;
}

.ladder-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.ladder-item.active {
  background: var(--gold-gradient);
  color: #1a0f00;
  font-weight: 900;
  border-left: 3px solid #fff;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
  transform: scale(1.02);
}

.ladder-item.completed {
  color: #34d399;
  border-left-color: #10b981;
}

.ladder-item.million-tier {
  font-weight: 800;
  color: var(--gold-bright);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.ladder-item.checkpoint-tier {
  border-left-color: #60a5fa;
}

.ladder-num {
  font-family: var(--font-royal);
  font-size: 0.75rem;
}

/* ==========================================================================
   BADGE DO JOGADOR (SIDEBAR)
   ========================================================================== */
.player-badge-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.badge-avatar {
  font-size: 2.2rem;
  background: rgba(245, 158, 11, 0.15);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.35);
  flex-shrink: 0;
}

.badge-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.player-name {
  font-family: var(--font-royal);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.player-title {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
}

.result-avatar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.res-avatar-icon {
  font-size: 3.5rem;
  margin-bottom: 4px;
  animation: pulseGold 2s infinite;
}

.res-avatar-name {
  font-family: var(--font-royal);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-bright);
}


/* ==========================================================================
   MODAIS & FEEDBACK PEDAGÓGICO
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.25s ease forwards;
}

.modal-content {
  background: #0e1438;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.3);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 26px;
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

.modal-title {
  font-family: var(--font-royal);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-white);
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.5);
}

/* Feedback Pedagógico (Explicação da Resposta) */
.feedback-card {
  text-align: center;
  padding: 10px 0;
}

.feedback-icon {
  font-size: 3.2rem;
  margin-bottom: 8px;
}

.feedback-result {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.feedback-reference {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.feedback-explanation {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-sub);
  font-style: italic;
}

/* Conteúdos das Ajudas */
.sages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.sage-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
}

.sage-avatar { font-size: 2.2rem; margin-bottom: 4px; }
.sage-name { font-weight: 700; font-size: 0.95rem; color: var(--gold-light); }
.sage-title { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; }
.sage-vote { font-size: 0.9rem; margin-bottom: 6px; }
.sage-comment { font-size: 0.78rem; color: var(--text-sub); font-style: italic; line-height: 1.3; }

/* Votação Congregação */
.poll-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.poll-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.poll-label {
  font-family: var(--font-royal);
  font-weight: 800;
  width: 70px;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.poll-bar-wrapper {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  height: 22px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.poll-bar-fill {
  background: var(--gold-gradient);
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.poll-pct {
  font-family: var(--font-royal);
  font-weight: 800;
  width: 45px;
  text-align: right;
  font-size: 1rem;
}

/* Dica Bíblica em Pergaminho */
.verse-hint-box {
  background: rgba(245, 158, 11, 0.08);
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.parchment-icon { font-size: 3rem; margin-bottom: 8px; }
.verse-ref { font-size: 1.1rem; color: var(--gold-bright); margin-bottom: 10px; }
.verse-text { font-size: 1.15rem; font-style: italic; color: var(--text-white); line-height: 1.4; }

/* Baú do Saber */
.chest-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.chest-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: left;
}

.chest-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.chest-correct .chest-num { color: #34d399; font-weight: 700; }
.chest-wrong .chest-num { color: var(--gold-bright); font-weight: 700; }
.chest-ref { color: var(--gold-light); font-weight: 600; }
.chest-q { font-size: 0.95rem; margin-bottom: 4px; }
.chest-ans { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 4px; }
.chest-expl { font-size: 0.85rem; color: var(--gold-light); font-style: italic; }

/* ==========================================================================
   TELA DE RESULTADO & CERTIFICADO
   ========================================================================== */
.screen-result-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 20px 10px;
}

.result-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  width: 100%;
}

.result-title {
  font-family: var(--font-royal);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.result-title.victory {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-prize-display {
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid var(--gold-bright);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
}

.result-prize-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.result-prize-value {
  font-family: var(--font-royal);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.result-message {
  font-size: 1.15rem;
  color: var(--text-sub);
  margin-bottom: 28px;
  line-height: 1.4;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ==========================================================================
   CERTIFICADO OFICIAL DE MESTRE DA PALAVRA
   ========================================================================== */
.certificate-container {
  background: #fffdf5;
  color: #1e1b18;
  padding: 24px;
  border-radius: var(--radius-md);
  font-family: 'Cinzel', Georgia, serif;
}

.cert-border {
  border: 4px double #b45309;
  padding: 26px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #ffffff 0%, #fffbeb 100%);
}

.cert-header h2 {
  font-size: 1.5rem;
  color: #92400e;
  letter-spacing: 2px;
  margin: 6px 0;
  font-weight: 900;
}

.cert-subtitle {
  font-size: 0.9rem;
  color: #78350f;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
}

.cert-player-name {
  font-size: 2rem;
  color: #b45309;
  margin: 12px 0;
  font-weight: 900;
  border-bottom: 2px solid #fcd34d;
  display: inline-block;
  padding: 0 20px 4px;
}

.cert-text {
  font-size: 0.95rem;
  color: #451a03;
  line-height: 1.4;
  margin: 8px 0;
  font-family: 'Outfit', sans-serif;
}

.cert-prize-badge {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #d97706;
  color: #78350f;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin: 16px auto;
  display: inline-block;
}

.cert-verse {
  font-size: 0.85rem;
  color: #78350f;
  margin-top: 14px;
}

.cert-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed #d97706;
  font-size: 0.85rem;
  color: #92400e;
}

.cert-actions {
  margin-top: 16px;
  text-align: center;
}

/* Responsividade de Componentes */
@media (max-width: 768px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
  .lifelines-bar {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 8px;
  }
  .help-name {
    font-size: 0.62rem;
  }
  .action-row {
    flex-direction: column;
  }
  .question-text {
    font-size: 1.15rem;
  }
  .cert-player-name {
    font-size: 1.5rem;
  }
}

@media print {
  body * {
    visibility: hidden;
  }
  #certificate-print-area, #certificate-print-area * {
    visibility: visible;
  }
  #certificate-print-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .no-print {
    display: none !important;
  }
}
