/* Variáveis do Xadrez da Velha */
:root {
  --velha-light: #f0d9b5;
  --velha-dark: #b58863;
  --velha-select: #769656;
  --velha-valid: rgba(0, 0, 0, 0.2);
  --velha-win: #f6f669;
}

.velha-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Tabuleiro */
.velha-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: min(90vw, 360px);
  height: min(90vw, 360px);
  border: 4px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  background-color: var(--velha-dark); /* Fallback */
}

/* Casas */
.velha-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.velha-cell-light {
  background-color: var(--velha-light);
}

.velha-cell-dark {
  background-color: var(--velha-dark);
}

.velha-cell.selected {
  background-color: var(--velha-select) !important;
}

.velha-cell.valid-move::after {
  content: '';
  position: absolute;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  background-color: var(--velha-valid);
}

@keyframes win-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.velha-cell.win-cell {
  animation: win-pulse 0.8s ease infinite;
  background-color: var(--velha-win) !important;
  z-index: 2;
}

/* Peças */
.velha-piece {
  font-size: clamp(2.5rem, 12vw, 4rem);
  line-height: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.velha-piece-W {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 -1px 1px rgba(0,0,0,0.3), 1px 0 1px rgba(0,0,0,0.3), -1px 0 1px rgba(0,0,0,0.3);
}

.velha-piece-B {
  color: #111;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5), 0 -1px 1px rgba(255,255,255,0.3), 1px 0 1px rgba(255,255,255,0.3), -1px 0 1px rgba(255,255,255,0.3);
}

/* Painéis de Inventário */
.velha-inventory {
  display: flex;
  justify-content: space-between;
  width: min(90vw, 360px);
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
}

.velha-inventory.bottom {
  margin-bottom: 0;
  margin-top: 1rem;
}

.velha-inventory-group {
  display: flex;
  gap: 0.5rem;
}

.velha-piece-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.velha-piece-btn.selected {
  border-color: var(--velha-select);
  background: #e8f5e9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.velha-piece-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(1);
}

.velha-piece-btn .piece-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.velha-piece-btn .piece-count {
  font-size: 0.7rem;
  font-weight: bold;
  background: #333;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  right: -5px;
}

.velha-info-panel {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  width: min(90vw, 360px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.velha-info-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.velha-info-subtitle {
  font-size: 0.85rem;
  color: #666;
}

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ── RESULT PANEL (OUTSIDE BOARD) ─────────────────────────────────────── */
.velha-result-panel {
  width: min(90vw, 360px);
  margin-top: 1.5rem;
  z-index: 5;
}

.velha-result-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Animações de Partículas */
.sidebar-win-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sidebar-particle {
  position: absolute;
  top: -40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: particle-fall linear forwards;
}

@keyframes particle-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

.result-header, .result-reason, .result-actions {
  position: relative;
  z-index: 10;
}

.velha-result-card.win { border-color: #769656; background: linear-gradient(to bottom, #ffffff, #f9fbf7); }
.velha-result-card.loss { border-color: #ee4b2b; background: linear-gradient(to bottom, #ffffff, #fff9f8); }
.velha-result-card.draw { border-color: #8b8b8b; background: linear-gradient(to bottom, #ffffff, #f8f8f8); }

.result-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.result-icon {
  font-size: 3rem;
  line-height: 1;
}

.result-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.result-reason {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.action-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.action-btn.primary {
  background: #769656;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(118, 150, 86, 0.3);
}

.action-btn.primary:hover:not(:disabled) {
  background: #6a874d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(118, 150, 86, 0.4);
}

.action-btn.primary.loading {
  background: #a5bca0;
  cursor: not-allowed;
}

.action-btn.secondary {
  background: white;
  color: #666;
  border: 2px solid #f0f0f0;
}

.action-btn.secondary:hover {
  background: #f9f9f9;
  border-color: #e0e0e0;
}

.opponent-feedback {
  margin-top: 1rem;
  padding: 0.5rem;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ── SORTEIO E SETUP ─────────────────────────────────────────────────── */
.velha-draw-coin-wrapper {
  perspective: 1000px;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.velha-draw-coin {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: flip-coin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.coin-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: 50%;
  border: 4px solid #769656;
  background: white;
  color: #769656;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.coin-face.back {
  transform: rotateY(180deg);
  background: #769656;
  color: white;
}

@keyframes flip-coin {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(1800deg) translateY(-50px); }
  100% { transform: rotateY(3600deg); }
}

/* ============================================================
   chess.css - Estilos EduGames (Padrão Dominó / Plataforma)
   Mobile-first | Educativo | Alto Contraste
   ============================================================ */

/* -- Chess Lobby --- */
.chess-lobby {
  position: relative;
  min-height: 100vh;
  background: transparent;
  /* Pega o radial-gradient do body */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

/* Checkerboard pattern overlay suave */
.chess-lobby-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.chess-lobby-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 150, 96, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 96, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.chess-lobby-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Header */
.chess-lobby-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.chess-lobby-back {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--color-text);
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  min-height: 44px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.chess-lobby-back:hover {
  background: #f8fafc;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.chess-lobby-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.chess-lobby-icon {
  font-size: 42px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 150, 96, 0.3));
}

.chess-lobby-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-accent);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.chess-lobby-sub {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 4px 0 0;
  font-weight: 700;
}

/* Connection dot */
.chess-conn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}

.chess-conn-dot--ok {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.chess-conn-dot--off {
  background: #ef4444;
}

/* Section title */
.chess-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-accent);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

/* Mode cards */
.chess-mode-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.chess-mode-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--color-text);
  text-align: center;
  min-height: 140px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.chess-mode-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 150, 96, 0.15);
}

.chess-mode-card:active {
  transform: scale(0.97);
}

.chess-mode-card--pvp:hover {
  border-color: var(--color-primary);
}

.chess-mode-card--pvc:hover {
  border-color: var(--color-secondary);
}

.chess-mode-emoji {
  font-size: 36px;
  line-height: 1;
}

.chess-mode-card strong {
  font-size: 15px;
  font-weight: 800;
}

.chess-mode-card p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.chess-mode-badge {
  background: var(--color-bg);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.chess-mode-badge--gray {
  background: #f1f5f9;
  color: #64748b;
}

/* Action panel */
.chess-action-panel {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chess-action-desc {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Code input */
.chess-code-input {
  background: #f8fafc;
  border: 2px solid #cbd5e1;
  color: var(--color-accent);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 16px;
  width: 100%;
  box-sizing: border-box;
  min-height: 72px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.chess-code-input:focus {
  border-color: var(--color-primary);
  background: white;
}

/* Primary button */
.chess-primary-btn {
  background: var(--color-primary);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  min-height: 56px;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(0, 150, 96, 0.25);
  letter-spacing: 0.02em;
}

.chess-primary-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 96, 0.35);
}

.chess-primary-btn:active {
  transform: scale(0.97);
}

.chess-primary-btn:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Error */
.chess-error {
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  background: #fef2f2;
  border: 2px solid #fecaca;
  padding: 10px 14px;
  border-radius: 12px;
}

/* AI level selector */
.chess-ai-levels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chess-ai-level-btn {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  min-height: 48px;
}

.chess-ai-level-btn strong {
  font-size: 14px;
  font-weight: 800;
}

.chess-ai-level-btn span {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.chess-ai-level-btn:hover {
  border-color: var(--color-primary);
  background: #f8fafc;
}

.chess-ai-level-btn--active {
  background: var(--color-bg);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.chess-ai-level-btn--active strong {
  color: var(--color-accent);
}

.chess-ai-level-btn--active span {
  color: var(--color-primary);
}

/* Lobby footer */
.chess-lobby-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 8px;
}

/* Time Selector */
.chess-time-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 40px;
}

.chess-time-btn:hover {
  background: #f8fafc;
  color: var(--color-primary);
  border-color: #cbd5e1;
}

.chess-time-btn--active {
  background: var(--color-bg);
  border-color: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-primary);
}

/* -- Chess Screen (in-game) --- */
/* Layout Principal: Sem Scroll Global */
.chess-screen {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 8px;
  overflow: hidden;
  /* Proíbe scroll na página toda */
}

/* Theme switcher fixo no topo */
.chess-theme-switcher {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
  z-index: 10;
  flex-shrink: 0;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.chess-theme-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 36px;
}

.chess-theme-btn:hover {
  background: #f8fafc;
  color: var(--color-primary);
  border-color: #cbd5e1;
}

.chess-theme-btn--active {
  background: var(--color-bg);
  border-color: var(--color-primary);
  color: var(--color-accent);
}

/* Layout Split */
.chess-layout {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  /* Permite que filhos encolham e usem scroll interno */
}

.chess-board-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 0;
  perspective: 1500px;
  perspective-origin: center;
}

.chess-board-wrapper {
  position: relative;
  /* Garante que o tabuleiro nunca ultrapasse a largura ou a altura disponível */
  width: min(96vw, 65vh);
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Temas da borda e notações com efeito 3D */
.theme-wood {
  background: linear-gradient(135deg, #4e342e 0%, #3e2723 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 6px solid #1b100e;
  /* Espessura 3D */
  border-right: 3px solid #2d1b18;
  /* Sombra lateral */
}

.theme-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 6px solid #020617;
  /* Espessura 3D */
  border-right: 3px solid #0f172a;
  /* Sombra lateral */
}

/* Flex row no meio (Y - Board - Y) */
.chess-board-middle {
  display: flex;
  flex-direction: row;
  flex: 1;
}

/* Notação vertical (1 a 8) */
.chess-notation-y {
  display: flex;
  flex-direction: column;
  width: 14px;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.chess-notation-y span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Notação horizontal (A a H) */
.chess-notation-x {
  display: flex;
  flex-direction: row;
  height: 14px;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 10px;
  text-transform: none;
  margin: 0 14px;
  /* Empurra para o lado de forma a alinhar com o centro, igual a largura do Y */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.chess-notation-x span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Container interno do tabuleiro em si (com rebaixo) */
.chess-board-inner {
  flex: 1;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.5),
    /* Rebaixo */
    0 1px 1px rgba(255, 255, 255, 0.1);
  /* Brilho na borda interna */
}

/* ── Modos de Vista (2D vs 3D) ────────────────────────── */
.view-3d {
  perspective: 1500px;
  overflow: visible !important;
}

.view-3d.chess-board-wrapper {
  background-image: url('/assets/chess/board-3d.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 55% center;
  transform: none;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1.5 / 1;
  width: 100%;
  max-width: 900px;
}

/* LIMPEZA RADICAL - REMOVE A "BORDA FEIA" EM QUALQUER CIRCUNSTÂNCIA */
.view-3d div,
.view-3d .chess-board-inner,
.view-3d #chess-main-board,
.view-3d [data-boardid] {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-image: none !important;
}

/* Achatamento do grid lógico para casar com a perspectiva da imagem */
.view-3d .chess-board-inner {
  padding: 16% 25% 23% 17% !important;
  /* Padding assimétrico para centralizar na madeira */
  box-sizing: border-box;
  background: transparent !important;
  transform-style: preserve-3d;
  overflow: visible !important;
}

/* REMOÇÃO RADICAL DE NOTAÇÕES E RECURSOS VISUAIS EXTRAS */
.view-3d [data-board-notation],
.view-3d .board-notation,
.view-3d text,
.view-3d .chess-notation-x,
.view-3d .chess-notation-y {
  display: none !important;
}

.view-3d [data-square] {
  position: relative !important;
  overflow: visible !important;
}

/* Peças com Volume 3D Real (Imagens Customizadas) */
.view-3d [data-piece] {
  transform-origin: center bottom;

  display: flex;
  justify-content: center;
  align-items: center;

  /* Permite que a peça suba além do limite da casa se necessário (devido ao scale) */
  overflow: visible !important;

  transition: all 0.3s ease;
}

/* Ajuste das imagens internas das peças */
.view-3d [data-piece] img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* A sombra e o scale são controlados via props no ChessBoard.jsx */
}

/* Ajuste das notações para não ficarem achatadas */
.view-3d .chess-notation-x,
.view-3d .chess-notation-y {
  transform: translateZ(5px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ── Peças e Efeitos ────────────────────────────────────────── */
[data-piece] {
  filter:
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.6)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3)) !important;
  transition: all 0.3s ease;
}

/* Efeito ao arrastar (levantar a peça) */
[data-piece][style*="cursor: grabbing"],
[data-piece]:active {
  transform: scale(1.1) translateY(-25px) translateZ(50px) !important;
  filter:
    drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) !important;
  z-index: 999;
}

/* Divisória no switcher */
.chess-theme-divider {
  width: 2px;
  height: 24px;
  background: #e2e8f0;
  margin: 0 8px;
  align-self: center;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.chess-sidebar {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* ── Chess Timers ────────────────────────────────────────────── */
.chess-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.chess-timer {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #1e293b;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  padding: 2px 10px;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
}

.chess-timer.active {
  background: #1e293b;
  color: white;
  border-color: #334155;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chess-timer.low {
  color: #ef4444;
  border-color: #fecaca;
}

.chess-timer.active.low {
  background: #ef4444;
  color: white;
  border-color: #b91c1c;
  animation: timer-pulse 1s infinite alternate;
}

@keyframes timer-pulse {
  from { box-shadow: 0 0 0 rgba(239, 68, 68, 0); }
  to { box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
}

/* Player badges */
.chess-players {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chess-vs {
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: 0.2em;
  padding: 4px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.chess-vs::before,
.chess-vs::after {
  content: "";
  height: 1px;
  background: #f1f5f9;
  flex: 1;
}

.chess-player-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px 16px;
  position: relative;
  transition: all 0.3s;
}

.chess-player-badge.chess-player-active {
  border-color: var(--color-primary);
  background: var(--color-bg);
  box-shadow: 0 4px 15px rgba(0, 150, 96, 0.1);
}

.chess-player-piece {
  font-size: 24px;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chess-player-piece--white {
  color: #f8fafc;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chess-player-piece--black {
  color: #1e293b;
  background: #f8fafc;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chess-player-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.chess-player-color {
  font-size: 10px;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chess-player-name {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chess-player-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: chess-pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes chess-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Status banners */
.chess-status-banner {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  border: 2px solid transparent;
  margin: 4px 0;
}

.chess-status-waiting {
  background: #fef9c3;
  color: #b45309;
  border-color: #fde047;
}

.chess-status-myturn {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 150, 96, 0.2);
}

.chess-status-wait {
  background: #f1f5f9;
  color: #64748b;
  border-color: #e2e8f0;
}

/* Room code display */
.chess-room-code {
  background: #f8fafc;
  border: 2px dashed var(--color-primary);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chess-room-code span {
  font-size: 11px;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chess-room-code strong {
  font-size: 24px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  font-family: monospace;
  font-weight: 900;
}

/* Game over banner */
.chess-gameover-banner {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  animation: banner-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes banner-pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.chess-gameover-win {
  border-color: #eab308;
  background: linear-gradient(145deg, #ffffff 0%, #fffbeb 100%);
}

.chess-gameover-loss {
  border-color: #ef4444;
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
}

.chess-gameover-draw {
  border-color: #64748b;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.chess-gameover-result {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
  position: relative;
  z-index: 10;
}

.chess-gameover-win .chess-gameover-result { color: #854d0e; }
.chess-gameover-loss .chess-gameover-result { color: #b91c1c; }
.chess-gameover-draw .chess-gameover-result { color: #334155; }

.chess-gameover-reason {
  font-size: 13px;
  color: #64748b;
  font-weight: 800;
  position: relative;
  z-index: 10;
}

/* Animações de Partículas */
.sidebar-win-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px; /* Cobre os badges dos jogadores e o banner */
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

.sidebar-particle {
  position: absolute;
  top: -50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: particle-fall linear forwards;
}

@keyframes particle-fall {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(20px) rotate(30deg) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(450px) rotate(720deg) scale(0.8);
    opacity: 0;
  }
}

/* Draw offer */
.chess-draw-offer {
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.chess-draw-offer p {
  color: #d97706;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
}

.chess-draw-actions {
  display: flex;
  gap: 8px;
}

.chess-history {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 auto; /* Permite encolher se necessário */
  display: flex;
  flex-direction: column;
  min-height: 80px; /* Reduzido para permitir o encolhimento */
  max-height: 25vh; /* Limita a altura máxima baseada na tela para garantir botões visíveis */
  overflow: hidden;
  margin: 12px 0;
}

.chess-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chess-history-count {
  background: var(--color-primary);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}

.chess-history-list {
  overflow-y: auto;
  flex: 1;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
}

.chess-log-item {
  display: flex;
  flex-direction: column;
  background: white;
  border-left: 5px solid transparent;
  border-radius: 8px 12px 12px 8px;
  padding: 14px 16px;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 16px;
}

.chess-log-item--white {
  border-left-color: var(--color-secondary);
}

.chess-log-item--black {
  border-left-color: var(--color-primary);
}

.chess-log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 900;
}

.chess-log-text {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.4;
}

.chess-log-san {
  font-family: monospace;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 6px;
  color: #64748b;
  font-weight: 800;
}

.chess-history-empty {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

/* Buttons */
.chess-btn {
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  padding: 10px 14px;
  min-height: 48px;
  transition: all 0.2s;
  width: 100%;
}

.chess-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.chess-btn-start {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 150, 96, 0.2);
}

.chess-btn-start:hover {
  background: var(--color-accent);
}

.chess-btn-draw {
  background: var(--color-secondary);
  color: #854d0e;
  box-shadow: 0 4px 12px rgba(255, 206, 0, 0.3);
}

.chess-btn-draw:hover {
  background: #eab308;
}

.chess-btn-resign {
  background: #ef4444;
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.chess-btn-resign:hover {
  background: #dc2626;
}

.chess-btn-rematch {
  background: #769656;
  color: white;
}
.chess-btn-rematch:hover {
  background: #6a874d;
}

.chess-btn-disabled {
  background: #f1f1f1;
  color: #aaa;
  cursor: not-allowed;
}

.chess-btn-back {
  background: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  margin-top: 4px;
}

.chess-btn-back:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--color-text);
}

.chess-btn-accept {
  background: var(--color-primary);
  color: white;
  flex: 1;
}

.chess-btn-decline {
  background: #ef4444;
  color: white;
  flex: 1;
}

.chess-btn:hover {
  transform: translateY(-2px);
}

.chess-btn:active {
  transform: scale(0.97);
}

/* ── Promotion modal ────────────────────────────────────────── */
.chess-promotion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.chess-promotion-modal {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  width: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.chess-promotion-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 4px;
}

.chess-promotion-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 20px;
  font-weight: 600;
}

.chess-promotion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chess-promotion-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  min-height: 80px;
}

.chess-promotion-btn:hover {
  background: var(--color-bg);
  border-color: var(--color-primary);
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 150, 96, 0.1);
}

.chess-promotion-symbol {
  font-size: 36px;
  line-height: 1;
}

.chess-promotion-label {
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 800;
}

/* ── Mobile Specifics (HUD & Bottom Sheet) ─────────────── */
.chess-mobile-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 0 0 8px 0;
  width: 100%;
  box-sizing: border-box;
}

.chess-mobile-hud.top-hud {
  margin-bottom: 8px;
}

.chess-mobile-hud.bottom-hud {
  margin-top: 8px;
  margin-bottom: 0;
}

.chess-hud-player {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chess-hud-avatar {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
}
.chess-hud-avatar--white {
  color: #1e293b;
}
.chess-hud-avatar--black {
  color: #f8fafc;
  background: #1e293b;
}

.chess-hud-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chess-hud-timer {
  transform: scale(0.9);
}

.chess-menu-btn {
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  color: var(--color-accent);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

/* Mobile Bottom Sheet Styles */
@media (max-width: 767px) {
  .chess-sidebar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
  }
  
  .chess-sidebar-container.open {
    transform: translateY(0);
  }
  
  .chess-sidebar {
    padding: 24px 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Esconder o player hud duplicado na sidebar no mobile */
  .chess-sidebar .chess-players {
    display: none;
  }

  .chess-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .chess-menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* -- Responsive: Desktop --- */
@media (min-width: 768px) {
  .chess-screen {
    padding: 32px 48px;
  }

  .chess-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Centraliza o conjunto verticalmente */
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    min-height: 0;
    position: relative;
  }

  .chess-board-area {
    flex: 0 0 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    /* O tabuleiro define a altura do .chess-layout */
  }

  .chess-board-wrapper {
    width: min(100%, 75vh);
    aspect-ratio: 1 / 1;
    max-width: none;
  }

  /* Container da sidebar que segue a altura do pai (layout) */
  .chess-sidebar-container {
    flex: 1;
    align-self: stretch;
    /* Estica para ter a altura do tabuleiro */
    position: relative;
    /* Serve de âncora para a sidebar absoluta */
    min-width: 0;
  }

  .chess-sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    scrollbar-width: thin;
  }

  @media (min-width: 1280px) {
    .chess-board-area {
      flex: 0 0 80%;
    }

    .chess-board-wrapper {
      width: min(100%, 80vh);
    }
  }

  .chess-lobby-title {
    font-size: 36px;
  }

  .chess-section-title {
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .chess-board-wrapper {
    max-width: 900px;
  }
}

@media (min-width: 1024px) {
  .chess-screen {
    padding: 32px;
  }
}

/* -- Captured Pieces (Lateral Esquerda) --- */
.chess-captured-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
}

.chess-captured-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: transparent; /* Removido o fundo branco */
  padding: 8px 0;
  width: 100%;
  min-height: 50px;
}

.chess-captured-spacer {
  flex: 1;
}

.chess-captured-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chess-captured-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.chess-captured-file {
  display: flex;
  flex-wrap: wrap;
  gap: -4px;
}

.chess-captured-img {
  width: 24px;
  height: auto;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
  margin-right: -10px; /* Peças sobrepostas na horizontal */
  opacity: 0.95;
  transition: all 0.2s;
}

.chess-captured-img:hover {
  opacity: 1;
  transform: translateY(-2px);
  z-index: 2;
}

/* Animações */
@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.animate-pop-in {
  animation: pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* Desktop Responsivo */
@media (min-width: 768px) {
  .chess-captured-container {
    flex: 0 0 80px; /* Ligeiramente mais largo para comportar 2 fileiras */
    align-self: stretch;
    position: relative;
    margin-bottom: 0;
  }

  .chess-captured-area {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 0;
  }

  .chess-captured-group {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .chess-captured-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .chess-captured-img {
    width: 32px;
    margin-right: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .chess-board-area {
    flex: 1; /* Tabuleiro ocupa o meio */
  }

  .chess-sidebar {
    /* Mantém a largura ideal da sidebar direita */
    flex: 0 0 320px;
    width: 320px;
    position: relative;
  }

  .chess-sidebar-container {
    flex: 0 0 320px;
  }

  .chess-captured-container {
    flex: 0 0 90px; /* Esquerda pequena mas suficiente para 2 colunas */
  }

  .chess-captured-img {
    width: 38px;
    margin-bottom: 0;
  }
}


/* ── Batalha dos Peões — Estilos ──────────────────────────────────────────── */

:root {
  --peao-light:    #f0d9b5;
  --peao-dark:     #b58863;
  --peao-select:   rgba(0, 150, 96, 0.75);
  --peao-valid:    rgba(0, 150, 96, 0.35);
  --peao-last:     rgba(155, 199, 0, 0.45);
  --peao-capture:  rgba(220, 50, 50, 0.55);
  --peao-primary:  #009660;
  --peao-gold:     #FFCE00;
}

/* ─── Lobby ────────────────────────────────────────────────────────────────── */
.peao-lobby {
  position: relative;
  min-height: 100vh;
  background: transparent;
  /* Pega o radial-gradient do body */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.peao-lobby-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.peao-lobby-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 150, 96, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 96, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.peao-lobby-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Header */
.peao-lobby-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.peao-lobby-back {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--color-text);
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  min-height: 44px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.peao-lobby-back:hover {
  background: #f8fafc;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.peao-lobby-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.peao-lobby-icon {
  font-size: 42px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 150, 96, 0.3));
}

.peao-lobby-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-accent);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.peao-lobby-sub {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 4px 0 0;
  font-weight: 700;
}

/* Connection dot */
.peao-conn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}

.peao-conn-dot--ok {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.peao-conn-dot--off {
  background: #ef4444;
}

/* Section title */
.peao-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-accent);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

/* Mode cards */
.peao-mode-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.peao-mode-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--color-text);
  text-align: center;
  min-height: 140px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.peao-mode-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 150, 96, 0.15);
}

.peao-mode-card:active {
  transform: scale(0.97);
}

.peao-mode-emoji {
  font-size: 36px;
  line-height: 1;
}

.peao-mode-card strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
}

.peao-mode-card p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.peao-mode-badge {
  background: var(--color-bg);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  border: none;
}

.peao-mode-badge--gray {
  background: #f1f5f9;
  color: #64748b;
  border: none;
}

/* Action panel */
.peao-action-panel {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.peao-input {
  background: #f8fafc;
  border: 2px solid #cbd5e1;
  color: var(--color-accent);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 16px;
  width: 100%;
  box-sizing: border-box;
  min-height: 72px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.peao-input:focus {
  border-color: var(--color-primary);
  background: white;
}

.peao-input::-moz-placeholder {
  color: #94a3b8;
  letter-spacing: normal;
  font-size: 18px;
}

.peao-input::placeholder {
  color: #94a3b8;
  letter-spacing: normal;
  font-size: 18px;
}

.peao-btn {
  background: var(--color-primary);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  min-height: 56px;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(0, 150, 96, 0.25);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.peao-btn:hover:not(:disabled) {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 96, 0.35);
}

.peao-btn:active:not(:disabled) {
  transform: scale(0.97);
}

.peao-btn:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}

.peao-btn--primary {
  background: var(--color-primary);
}

.peao-btn--secondary {
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  box-shadow: none;
}

.peao-btn--secondary:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--color-primary);
  box-shadow: none;
  transform: translateY(-2px);
}

.peao-error {
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  background: #fef2f2;
  border: 2px solid #fecaca;
  padding: 10px 14px;
  border-radius: 12px;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.peao-lobby-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 8px;
  margin-top: auto;
}

/* ─── Tabuleiro ──────────────────────────────────────────────────────────────── */
.peao-game-wrapper {
  min-height: 100dvh;
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.peao-board-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.25rem;
  align-items: center;
}

.peao-notation-y {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 24px;
}
.peao-notation-y span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.peao-notation-x {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 12px;
  text-transform: none;
  margin: 0 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 24px;
}
.peao-notation-x span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.peao-board {
  display: grid;
  grid-template-columns: repeat(8, var(--sq));
  grid-template-rows:    repeat(8, var(--sq));
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  --sq: clamp(40px, 10vw, 72px);
}

.peao-sq {
  width: var(--sq);
  height: var(--sq);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: filter 0.1s;
  font-size: calc(var(--sq) * 0.72);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.peao-sq:hover:not(.peao-sq--empty-no-select) { filter: brightness(1.1); }

.peao-sq--light { background: var(--peao-light); }
.peao-sq--dark  { background: var(--peao-dark);  }
.peao-sq--selected::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--peao-select);
}
.peao-sq--valid-move::after {
  content: '';
  position: absolute;
  width: 30%; height: 30%;
  border-radius: 50%;
  background: var(--peao-valid);
  box-shadow: 0 0 0 3px var(--peao-valid);
}
.peao-sq--valid-capture::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--peao-capture);
  border-radius: 2px;
}
.peao-sq--last-move { background-color: var(--peao-last) !important; }

.peao-piece {
  width: 78%;
  height: 78%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  transition: transform 0.1s;
}
.peao-sq--selected .peao-piece { transform: scale(1.08); }

/* ─── Info bar ───────────────────────────────────────────────────────────────── */
.peao-info-bar {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.peao-player-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
}

.peao-player-badge--active {
  border-color: var(--peao-primary);
  background: rgba(0, 150, 96, 0.15);
  box-shadow: 0 0 12px rgba(0, 150, 96, 0.3);
}

.peao-turn-indicator {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ─── Result overlay ─────────────────────────────────────────────────────────── */
.peao-result-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: peao-fade-in 0.3s ease;
}
@keyframes peao-fade-in { from { opacity: 0; } to { opacity: 1; } }

.peao-result-card {
  background: white;
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.peao-result-card.win  { border-top: 6px solid var(--peao-primary); }
.peao-result-card.loss { border-top: 6px solid #ef4444; }
.peao-result-card.draw { border-top: 6px solid #94a3b8; }

/* ─── AI levels ──────────────────────────────────────────────────────────────── */
.peao-ai-levels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.peao-ai-level-btn {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  min-height: 48px;
}
.peao-ai-level-btn strong {
  font-size: 14px;
  font-weight: 800;
}
.peao-ai-level-btn span {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}
.peao-ai-level-btn:hover {
  border-color: var(--color-primary);
  background: #f8fafc;
  color: var(--color-text);
}
.peao-ai-level-btn--active {
  background: var(--color-bg);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
  color: var(--color-accent);
}
.peao-ai-level-btn--active strong {
  color: var(--color-accent);
}
.peao-ai-level-btn--active span {
  color: var(--color-primary);
}

/* ─── Layout Split (chess-like) ────────────────────────────────────────────── */
.peao-screen {
  min-height: 100dvh;
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  box-sizing: border-box;
  position: relative;
}

.peao-theme-switcher {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
  z-index: 10;
  flex-shrink: 0;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.peao-theme-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 36px;
}

.peao-theme-btn:hover {
  background: #f8fafc;
  color: var(--color-primary);
  border-color: #cbd5e1;
}

.peao-theme-btn--active {
  background: var(--color-bg);
  border-color: var(--color-primary);
  color: var(--color-accent);
}

.peao-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.peao-board-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 0;
}

.peao-board-wrapper {
  position: relative;
  width: min(85vw, 75vh);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.peao-theme-wood {
  background: linear-gradient(135deg, #4e342e 0%, #3e2723 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 10px solid #1b100e;
  border-right: 4px solid #2d1b18;
  --sq-light: #f0d9b5;
  --sq-dark: #b58863;
}

.peao-theme-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  border-left: 2px solid rgba(255, 255, 255, 0.05);
  border-bottom: 10px solid #020617;
  border-right: 4px solid #0f172a;
  --sq-light: #8ba6c0;
  --sq-dark: #1e3a5f;
}

.peao-board-middle {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: stretch;
}

.peao-board-inner {
  flex: 1;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(255, 255, 255, 0.1);
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.peao-board-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  width: 100%;
  height: 100%;
}

.peao-board-sq {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: filter 0.1s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.peao-board-sq:hover { filter: brightness(1.1); }

.peao-board-sq--light { background: var(--sq-light); }
.peao-board-sq--dark  { background: var(--sq-dark);  }

.peao-board-sq--selected::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 150, 96, 0.6);
  z-index: 1;
}

.peao-board-sq--valid-move::after {
  content: '';
  position: absolute;
  width: 30%; height: 30%;
  border-radius: 50%;
  background: rgba(0, 150, 96, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 150, 96, 0.35);
  z-index: 1;
}

.peao-board-sq--valid-capture::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(220, 50, 50, 0.55);
  border-radius: 2px;
  z-index: 1;
}

.peao-board-sq--last-move { background-color: rgba(155, 199, 0, 0.41) !important; }

.peao-board-piece {
  width: 78%;
  height: 78%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
  transition: transform 0.1s;
}

.peao-board-sq--selected .peao-board-piece { transform: scale(1.08); }

/* ─── Sidebar ──────────────────────────────────────────────────────────────── */
.peao-sidebar {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.peao-sidebar-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.peao-sidebar-timer {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #1e293b;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  padding: 2px 10px;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
}

.peao-sidebar-timer.active {
  background: #1e293b;
  color: white;
  border-color: #334155;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.peao-sidebar-timer.low {
  color: #ef4444;
  border-color: #fecaca;
}

.peao-sidebar-timer.active.low {
  background: #ef4444;
  color: white;
  border-color: #b91c1c;
  animation: peao-timer-pulse 1s infinite alternate;
}

@keyframes peao-timer-pulse {
  from { box-shadow: 0 0 0 rgba(239, 68, 68, 0); }
  to { box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
}

.peao-sidebar-players {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.peao-sidebar-vs {
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: 0.2em;
  padding: 4px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.peao-sidebar-vs::before,
.peao-sidebar-vs::after {
  content: "";
  height: 1px;
  background: #f1f5f9;
  flex: 1;
}

.peao-sidebar-player-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px 16px;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  box-sizing: border-box;
}

.peao-sidebar-player-badge.peao-sidebar-player-active {
  border-color: #009660;
  background: rgba(0, 150, 96, 0.05);
  box-shadow: 0 4px 15px rgba(0, 150, 96, 0.1);
}

.peao-sidebar-player-piece {
  font-size: 24px;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.peao-sidebar-player-piece--white {
  color: #f8fafc;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.peao-sidebar-player-piece--black {
  color: #1e293b;
  background: #f8fafc;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.peao-sidebar-player-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.peao-sidebar-player-color {
  font-size: 10px;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.peao-sidebar-player-name {
  font-size: 14px;
  color: #1e293b;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.peao-sidebar-player-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #009660;
  animation: peao-pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes peao-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.peao-sidebar-status-banner {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  border: 2px solid transparent;
  margin: 4px 0;
}

.peao-sidebar-status-waiting {
  background: #fef9c3;
  color: #b45309;
  border-color: #fde047;
}

.peao-sidebar-status-myturn {
  background: #009660;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 150, 96, 0.2);
}

.peao-sidebar-status-wait {
  background: #f1f5f9;
  color: #64748b;
  border-color: #e2e8f0;
}

.peao-sidebar-room-code {
  background: #f8fafc;
  border: 2px dashed #009660;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.peao-sidebar-room-code span {
  font-size: 11px;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.peao-sidebar-room-code strong {
  font-size: 24px;
  color: #0f172a;
  letter-spacing: 0.2em;
  font-family: monospace;
  font-weight: 900;
}

.peao-sidebar-gameover-banner {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  animation: peao-banner-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes peao-banner-pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.peao-sidebar-gameover-win {
  border-color: #eab308;
  background: linear-gradient(145deg, #ffffff 0%, #fffbeb 100%);
}

.peao-sidebar-gameover-loss {
  border-color: #ef4444;
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
}

.peao-sidebar-gameover-draw {
  border-color: #64748b;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.peao-sidebar-gameover-result {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
  position: relative;
  z-index: 10;
}

.peao-sidebar-gameover-win .peao-sidebar-gameover-result { color: #854d0e; }
.peao-sidebar-gameover-loss .peao-sidebar-gameover-result { color: #b91c1c; }
.peao-sidebar-gameover-draw .peao-sidebar-gameover-result { color: #334155; }

.peao-sidebar-gameover-reason {
  font-size: 13px;
  color: #64748b;
  font-weight: 800;
  position: relative;
  z-index: 10;
}

.peao-sidebar-win-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

.peao-sidebar-particle {
  position: absolute;
  top: -50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: peao-particle-fall linear forwards;
}

@keyframes peao-particle-fall {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(20px) rotate(30deg) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(450px) rotate(720deg) scale(0.8);
    opacity: 0;
  }
}

.peao-sidebar-history {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 80px;
  max-height: 25vh;
  overflow: hidden;
  margin: 12px 0;
}

.peao-sidebar-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.peao-sidebar-history-count {
  background: #009660;
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}

.peao-sidebar-history-list {
  overflow-y: auto;
  flex: 1;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #009660 transparent;
}

.peao-sidebar-log-item {
  display: flex;
  flex-direction: column;
  background: white;
  border-left: 5px solid transparent;
  border-radius: 8px 12px 12px 8px;
  padding: 14px 16px;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 16px;
}

.peao-sidebar-log-item--white {
  border-left-color: #b58863;
}

.peao-sidebar-log-item--black {
  border-left-color: #009660;
}

.peao-sidebar-log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 900;
}

.peao-sidebar-log-text {
  font-size: 13px;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.4;
}

.peao-sidebar-log-san {
  font-family: monospace;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 6px;
  color: #64748b;
  font-weight: 800;
}

.peao-sidebar-history-empty {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.peao-sidebar-btn {
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  padding: 10px 14px;
  min-height: 48px;
  transition: all 0.2s;
  width: 100%;
}

.peao-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.peao-sidebar-btn:hover {
  transform: translateY(-2px);
}

.peao-sidebar-btn:active {
  transform: scale(0.97);
}

.peao-sidebar-btn-resign {
  background: #ef4444;
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.peao-sidebar-btn-resign:hover {
  background: #dc2626;
}

.peao-sidebar-btn-draw {
  background: #ffce00;
  color: #854d0e;
  box-shadow: 0 4px 12px rgba(255, 206, 0, 0.3);
}

.peao-sidebar-btn-draw:hover {
  background: #eab308;
}

.peao-sidebar-draw-offer {
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  margin: 8px 0;
}

.peao-sidebar-draw-offer p {
  color: #d97706;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
}

.peao-sidebar-draw-actions {
  display: flex;
  gap: 8px;
}

.peao-sidebar-btn-accept {
  background: #009660;
  color: white;
  flex: 1;
}

.peao-sidebar-btn-decline {
  background: #ef4444;
  color: white;
  flex: 1;
}

.peao-sidebar-btn-rematch {
  background: #009660;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 150, 96, 0.2);
}

.peao-sidebar-btn-rematch:hover {
  background: #007a4e;
}

.peao-sidebar-btn-disabled {
  background: #f1f1f1;
  color: #aaa;
  cursor: not-allowed;
}

.peao-sidebar-btn-back {
  background: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  margin-top: 4px;
}

.peao-sidebar-btn-back:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}

/* Responsive Desktop */
@media (min-width: 768px) {
  .peao-screen {
    padding: 32px 48px;
  }

  .peao-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    min-height: 0;
    position: relative;
  }

  .peao-board-area {
    flex: 0 0 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
  }

  .peao-board-wrapper {
    width: min(100%, 75vh);
    aspect-ratio: 1 / 1;
    max-width: none;
  }

  .peao-sidebar-container {
    flex: 1;
    align-self: stretch;
    position: relative;
    min-width: 0;
  }

  .peao-sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    scrollbar-width: thin;
  }
}

@media (min-width: 1280px) {
  .peao-board-area {
    flex: 1;
  }

  .peao-board-wrapper {
    max-width: 900px;
  }

  .peao-sidebar {
    flex: 0 0 320px;
    width: 320px;
    position: relative;
  }

  .peao-sidebar-container {
    flex: 0 0 320px;
  }
}

@media (min-width: 1024px) {
  .peao-screen {
    padding: 32px;
  }
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.pointer-events-none {
  pointer-events: none;
}
.invisible {
  visibility: hidden;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-bottom-1 {
  bottom: -0.25rem;
}
.-bottom-10 {
  bottom: -2.5rem;
}
.-bottom-2 {
  bottom: -0.5rem;
}
.-bottom-20 {
  bottom: -5rem;
}
.-bottom-4 {
  bottom: -1rem;
}
.-left-10 {
  left: -2.5rem;
}
.-right-1 {
  right: -0.25rem;
}
.-right-10 {
  right: -2.5rem;
}
.-right-2 {
  right: -0.5rem;
}
.-right-20 {
  right: -5rem;
}
.-right-3 {
  right: -0.75rem;
}
.-top-10 {
  top: -2.5rem;
}
.-top-2 {
  top: -0.5rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-0\.5 {
  bottom: 0.125rem;
}
.bottom-1 {
  bottom: 0.25rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-full {
  bottom: 100%;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.left-2 {
  left: 0.5rem;
}
.left-4 {
  left: 1rem;
}
.left-6 {
  left: 1.5rem;
}
.right-0 {
  right: 0px;
}
.right-0\.5 {
  right: 0.125rem;
}
.right-1 {
  right: 0.25rem;
}
.right-2 {
  right: 0.5rem;
}
.right-4 {
  right: 1rem;
}
.right-6 {
  right: 1.5rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-2 {
  top: 0.5rem;
}
.top-28 {
  top: 7rem;
}
.top-4 {
  top: 1rem;
}
.top-6 {
  top: 1.5rem;
}
.-z-10 {
  z-index: -10;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[110\] {
  z-index: 110;
}
.z-\[120\] {
  z-index: 120;
}
.z-\[130\] {
  z-index: 130;
}
.z-\[150\] {
  z-index: 150;
}
.z-\[200\] {
  z-index: 200;
}
.z-\[210\] {
  z-index: 210;
}
.z-\[250\] {
  z-index: 250;
}
.z-\[300\] {
  z-index: 300;
}
.z-\[400\] {
  z-index: 400;
}
.z-\[500\] {
  z-index: 500;
}
.z-\[60\] {
  z-index: 60;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-full {
  grid-column: 1 / -1;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.-mr-16 {
  margin-right: -4rem;
}
.-mr-20 {
  margin-right: -5rem;
}
.-mt-16 {
  margin-top: -4rem;
}
.-mt-20 {
  margin-top: -5rem;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-1\.5 {
  margin-bottom: 0.375rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-\[-10px\] {
  margin-bottom: -10px;
}
.mb-\[-12px\] {
  margin-bottom: -12px;
}
.mb-\[-15px\] {
  margin-bottom: -15px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-64 {
  height: 16rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-96 {
  height: 24rem;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[340px\] {
  height: 340px;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-\[100vh\] {
  max-height: 100vh;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}
.max-h-\[92vh\] {
  max-height: 92vh;
}
.max-h-\[98\%\] {
  max-height: 98%;
}
.max-h-full {
  max-height: 100%;
}
.\!min-h-\[32px\] {
  min-height: 32px !important;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-\[100px\] {
  min-height: 100px;
}
.min-h-\[120px\] {
  min-height: 120px;
}
.min-h-\[200px\] {
  min-height: 200px;
}
.min-h-\[60vh\] {
  min-height: 60vh;
}
.min-h-\[80px\] {
  min-height: 80px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1\.5 {
  width: 0.375rem;
}
.w-1\/2 {
  width: 50%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-96 {
  width: 24rem;
}
.w-\[110px\] {
  width: 110px;
}
.w-\[80\%\] {
  width: 80%;
}
.w-\[85\%\] {
  width: 85%;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-px {
  width: 1px;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[100px\] {
  min-width: 100px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[240px\] {
  min-width: 240px;
}
.min-w-\[600px\] {
  min-width: 600px;
}
.\!max-w-\[120px\] {
  max-width: 120px !important;
}
.\!max-w-\[140px\] {
  max-width: 140px !important;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[110px\] {
  max-width: 110px;
}
.max-w-\[120px\] {
  max-width: 120px;
}
.max-w-\[140px\] {
  max-width: 140px;
}
.max-w-\[200px\] {
  max-width: 200px;
}
.max-w-\[250px\] {
  max-width: 250px;
}
.max-w-\[26rem\] {
  max-width: 26rem;
}
.max-w-\[340px\] {
  max-width: 340px;
}
.max-w-\[550px\] {
  max-width: 550px;
}
.max-w-\[60px\] {
  max-width: 60px;
}
.max-w-\[80px\] {
  max-width: 80px;
}
.max-w-\[90px\] {
  max-width: 90px;
}
.max-w-\[98\%\] {
  max-width: 98%;
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-\[2\] {
  flex: 2;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.border-collapse {
  border-collapse: collapse;
}
.origin-bottom {
  transform-origin: bottom;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-4 {
  --tw-translate-x: -1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-0\.5 {
  --tw-translate-y: -0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-10 {
  --tw-translate-y: -2.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-2 {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-20 {
  --tw-translate-y: -5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-4 {
  --tw-translate-y: -1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-\[2px\] {
  --tw-translate-y: -2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/3 {
  --tw-translate-x: 33.333333%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1\/3 {
  --tw-translate-y: 33.333333%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-full {
  --tw-translate-y: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-0 {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-75 {
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\.02\] {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes bounce {

  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}
@keyframes ping {

  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.touch-pan-x {
  --tw-pan-x: pan-x;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.resize-none {
  resize: none;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.\!items-start {
  align-items: flex-start !important;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-0 {
  gap: 0px;
}
.gap-0\.5 {
  gap: 0.125rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.self-start {
  align-self: flex-start;
}
.self-center {
  align-self: center;
}
.self-stretch {
  align-self: stretch;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[1\.25rem\] {
  border-radius: 1.25rem;
}
.rounded-\[1\.2rem\] {
  border-radius: 1.2rem;
}
.rounded-\[1\.5rem\] {
  border-radius: 1.5rem;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[1rem\] {
  border-radius: 1rem;
}
.rounded-\[2\.5rem\] {
  border-radius: 2.5rem;
}
.rounded-\[2rem\] {
  border-radius: 2rem;
}
.rounded-\[3\.5rem\] {
  border-radius: 3.5rem;
}
.rounded-\[3rem\] {
  border-radius: 3rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.rounded-t-\[2rem\] {
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.rounded-bl-\[0\.2rem\] {
  border-bottom-left-radius: 0.2rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-\[10px\] {
  border-width: 10px;
}
.border-\[6px\] {
  border-width: 6px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-0 {
  border-bottom-width: 0px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-4 {
  border-bottom-width: 4px;
}
.border-b-8 {
  border-bottom-width: 8px;
}
.border-b-\[10px\] {
  border-bottom-width: 10px;
}
.border-b-\[12px\] {
  border-bottom-width: 12px;
}
.border-b-\[3px\] {
  border-bottom-width: 3px;
}
.border-b-\[8px\] {
  border-bottom-width: 8px;
}
.border-l-2 {
  border-left-width: 2px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-l-8 {
  border-left-width: 8px;
}
.border-r-2 {
  border-right-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-t-4 {
  border-top-width: 4px;
}
.border-dashed {
  border-style: dashed;
}
.border-none {
  border-style: none;
}
.border-\[\#009660\] {
  --tw-border-opacity: 1;
  border-color: rgb(0 150 96 / var(--tw-border-opacity, 1));
}
.border-\[\#009660\]\/20 {
  border-color: rgb(0 150 96 / 0.2);
}
.border-\[\#FFCE00\] {
  --tw-border-opacity: 1;
  border-color: rgb(255 206 0 / var(--tw-border-opacity, 1));
}
.border-\[\#FFCE00\]\/30 {
  border-color: rgb(255 206 0 / 0.3);
}
.border-amber-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
}
.border-amber-200 {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}
.border-amber-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.border-amber-500 {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.border-amber-700 {
  --tw-border-opacity: 1;
  border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
}
.border-black\/10 {
  border-color: rgb(0 0 0 / 0.1);
}
.border-blue-100 {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.border-blue-700 {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}
.border-emerald-100 {
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}
.border-emerald-100\/50 {
  border-color: rgb(209 250 229 / 0.5);
}
.border-emerald-200 {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}
.border-emerald-200\/50 {
  border-color: rgb(167 243 208 / 0.5);
}
.border-emerald-300 {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}
.border-emerald-400 {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.border-emerald-400\/30 {
  border-color: rgb(52 211 153 / 0.3);
}
.border-emerald-50 {
  --tw-border-opacity: 1;
  border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
}
.border-emerald-500 {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}
.border-emerald-600 {
  --tw-border-opacity: 1;
  border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}
.border-emerald-700 {
  --tw-border-opacity: 1;
  border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
}
.border-emerald-900\/10 {
  border-color: rgb(6 78 59 / 0.1);
}
.border-emerald-900\/40 {
  border-color: rgb(6 78 59 / 0.4);
}
.border-emerald-900\/5 {
  border-color: rgb(6 78 59 / 0.05);
}
.border-emerald-950\/20 {
  border-color: rgb(2 44 34 / 0.2);
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-indigo-700 {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.border-orange-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.border-purple-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}
.border-red-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.border-slate-100 {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-slate-900 {
  --tw-border-opacity: 1;
  border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
}
.border-slate-950 {
  --tw-border-opacity: 1;
  border-color: rgb(2 6 23 / var(--tw-border-opacity, 1));
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.border-white\/5 {
  border-color: rgb(255 255 255 / 0.05);
}
.border-white\/50 {
  border-color: rgb(255 255 255 / 0.5);
}
.border-yellow-600 {
  --tw-border-opacity: 1;
  border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
}
.border-yellow-700 {
  --tw-border-opacity: 1;
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
}
.border-t-\[\#009660\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(0 150 96 / var(--tw-border-opacity, 1));
}
.border-t-\[\#769656\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(118 150 86 / var(--tw-border-opacity, 1));
}
.border-t-\[\#f1c40f\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(241 196 15 / var(--tw-border-opacity, 1));
}
.border-t-emerald-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-\[\#009660\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 150 96 / var(--tw-bg-opacity, 1));
}
.bg-\[\#009660\]\/10 {
  background-color: rgb(0 150 96 / 0.1);
}
.bg-\[\#1a1a1a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 26 / var(--tw-bg-opacity, 1));
}
.bg-\[\#222\] {
  --tw-bg-opacity: 1;
  background-color: rgb(34 34 34 / var(--tw-bg-opacity, 1));
}
.bg-\[\#339AF0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(51 154 240 / var(--tw-bg-opacity, 1));
}
.bg-\[\#6c63ff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(108 99 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F0FDF4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FF6B6B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 107 107 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFCE00\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 206 0 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFCE00\]\/10 {
  background-color: rgb(255 206 0 / 0.1);
}
.bg-\[\#FFCE00\]\/20 {
  background-color: rgb(255 206 0 / 0.2);
}
.bg-\[\#f1c40f\] {
  --tw-bg-opacity: 1;
  background-color: rgb(241 196 15 / var(--tw-bg-opacity, 1));
}
.bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-amber-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.bg-amber-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.bg-amber-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.bg-black\/0 {
  background-color: rgb(0 0 0 / 0);
}
.bg-black\/10 {
  background-color: rgb(0 0 0 / 0.1);
}
.bg-black\/15 {
  background-color: rgb(0 0 0 / 0.15);
}
.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}
.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}
.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}
.bg-black\/70 {
  background-color: rgb(0 0 0 / 0.7);
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-100\/50 {
  background-color: rgb(219 234 254 / 0.5);
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-emerald-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}
.bg-emerald-100\/50 {
  background-color: rgb(209 250 229 / 0.5);
}
.bg-emerald-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}
.bg-emerald-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
}
.bg-emerald-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}
.bg-emerald-50\/30 {
  background-color: rgb(236 253 245 / 0.3);
}
.bg-emerald-50\/50 {
  background-color: rgb(236 253 245 / 0.5);
}
.bg-emerald-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}
.bg-emerald-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.bg-emerald-700\/50 {
  background-color: rgb(4 120 87 / 0.5);
}
.bg-emerald-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
}
.bg-emerald-900\/10 {
  background-color: rgb(6 78 59 / 0.1);
}
.bg-emerald-900\/20 {
  background-color: rgb(6 78 59 / 0.2);
}
.bg-emerald-900\/40 {
  background-color: rgb(6 78 59 / 0.4);
}
.bg-emerald-950\/60 {
  background-color: rgb(2 44 34 / 0.6);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-indigo-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.bg-indigo-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.bg-indigo-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.bg-purple-100\/50 {
  background-color: rgb(243 232 255 / 0.5);
}
.bg-purple-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.bg-red-400\/20 {
  background-color: rgb(248 113 113 / 0.2);
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-slate-100\/80 {
  background-color: rgb(241 245 249 / 0.8);
}
.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-slate-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.bg-slate-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.bg-slate-900\/40 {
  background-color: rgb(15 23 42 / 0.4);
}
.bg-slate-900\/60 {
  background-color: rgb(15 23 42 / 0.6);
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/0 {
  background-color: rgb(255 255 255 / 0);
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}
.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}
.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}
.bg-white\/95 {
  background-color: rgb(255 255 255 / 0.95);
}
.bg-yellow-100\/50 {
  background-color: rgb(254 249 195 / 0.5);
}
.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-\[url\(\'https\:\/\/www\.transparenttextures\.com\/patterns\/felt\.png\'\)\] {
  background-image: url('https://www.transparenttextures.com/patterns/felt.png');
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#009660\] {
  --tw-gradient-from: #009660 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 150 96 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#1a1a1a\] {
  --tw-gradient-from: #1a1a1a var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(26 26 26 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#2c3e50\] {
  --tw-gradient-from: #2c3e50 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(44 62 80 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-200 {
  --tw-gradient-from: #fde68a var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(253 230 138 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/20 {
  --tw-gradient-from: rgb(0 0 0 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-50 {
  --tw-gradient-from: #ecfdf5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 253 245 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-200 {
  --tw-gradient-from: #e5e7eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(229 231 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-200 {
  --tw-gradient-from: #e2e8f0 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(226 232 240 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white {
  --tw-gradient-from: #fff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-200 {
  --tw-gradient-from: #fef08a var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(254 240 138 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-400\/20 {
  --tw-gradient-from: rgb(250 204 21 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 204 21 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#000000\] {
  --tw-gradient-to: #000000 var(--tw-gradient-to-position);
}
.to-\[\#007b4f\] {
  --tw-gradient-to: #007b4f var(--tw-gradient-to-position);
}
.to-\[\#0a0a0a\] {
  --tw-gradient-to: #0a0a0a var(--tw-gradient-to-position);
}
.to-amber-100 {
  --tw-gradient-to: #fef3c7 var(--tw-gradient-to-position);
}
.to-gray-100 {
  --tw-gradient-to: #f3f4f6 var(--tw-gradient-to-position);
}
.to-gray-50 {
  --tw-gradient-to: #f9fafb var(--tw-gradient-to-position);
}
.to-slate-100 {
  --tw-gradient-to: #f1f5f9 var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.to-white {
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}
.to-yellow-50 {
  --tw-gradient-to: #fefce8 var(--tw-gradient-to-position);
}
.fill-current {
  fill: currentColor;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0\.5 {
  padding: 0.125rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-16 {
  padding: 4rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-3\.5 {
  padding: 0.875rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-7 {
  padding: 1.75rem;
}
.p-8 {
  padding: 2rem;
}
.\!px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-1\.5 {
  padding-bottom: 0.375rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-0 {
  padding-left: 0px;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-\[45px\] {
  font-size: 45px;
}
.text-\[7px\] {
  font-size: 7px;
}
.text-\[8px\] {
  font-size: 8px;
}
.text-\[8rem\] {
  font-size: 8rem;
}
.text-\[9px\] {
  font-size: 9px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.normal-case {
  text-transform: none;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-snug {
  line-height: 1.375;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[0\.25em\] {
  letter-spacing: 0.25em;
}
.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}
.tracking-\[0\.4em\] {
  letter-spacing: 0.4em;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-\[\#009660\] {
  --tw-text-opacity: 1;
  color: rgb(0 150 96 / var(--tw-text-opacity, 1));
}
.text-\[\#1A1A1A\] {
  --tw-text-opacity: 1;
  color: rgb(26 26 26 / var(--tw-text-opacity, 1));
}
.text-\[\#769656\] {
  --tw-text-opacity: 1;
  color: rgb(118 150 86 / var(--tw-text-opacity, 1));
}
.text-\[\#FFCE00\] {
  --tw-text-opacity: 1;
  color: rgb(255 206 0 / var(--tw-text-opacity, 1));
}
.text-\[\#f1c40f\] {
  --tw-text-opacity: 1;
  color: rgb(241 196 15 / var(--tw-text-opacity, 1));
}
.text-amber-500 {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-amber-600 {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-amber-700 {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.text-amber-700\/50 {
  color: rgb(180 83 9 / 0.5);
}
.text-amber-700\/60 {
  color: rgb(180 83 9 / 0.6);
}
.text-amber-800 {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.text-amber-900 {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.text-amber-950 {
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-700\/60 {
  color: rgb(29 78 216 / 0.6);
}
.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-emerald-100 {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / var(--tw-text-opacity, 1));
}
.text-emerald-100\/30 {
  color: rgb(209 250 229 / 0.3);
}
.text-emerald-100\/40 {
  color: rgb(209 250 229 / 0.4);
}
.text-emerald-100\/80 {
  color: rgb(209 250 229 / 0.8);
}
.text-emerald-200 {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}
.text-emerald-300 {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.text-emerald-50 {
  --tw-text-opacity: 1;
  color: rgb(236 253 245 / var(--tw-text-opacity, 1));
}
.text-emerald-600 {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.text-emerald-700 {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.text-emerald-800 {
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.text-emerald-800\/50 {
  color: rgb(6 95 70 / 0.5);
}
.text-emerald-800\/60 {
  color: rgb(6 95 70 / 0.6);
}
.text-emerald-800\/70 {
  color: rgb(6 95 70 / 0.7);
}
.text-emerald-900 {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.text-emerald-900\/30 {
  color: rgb(6 78 59 / 0.3);
}
.text-emerald-900\/40 {
  color: rgb(6 78 59 / 0.4);
}
.text-emerald-900\/50 {
  color: rgb(6 78 59 / 0.5);
}
.text-emerald-900\/60 {
  color: rgb(6 78 59 / 0.6);
}
.text-emerald-900\/70 {
  color: rgb(6 78 59 / 0.7);
}
.text-emerald-900\/80 {
  color: rgb(6 78 59 / 0.8);
}
.text-emerald-950 {
  --tw-text-opacity: 1;
  color: rgb(2 44 34 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-indigo-700 {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-purple-600 {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-purple-700 {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-purple-800\/60 {
  color: rgb(107 33 168 / 0.6);
}
.text-purple-900 {
  --tw-text-opacity: 1;
  color: rgb(88 28 135 / var(--tw-text-opacity, 1));
}
.text-purple-900\/60 {
  color: rgb(88 28 135 / 0.6);
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-500\/70 {
  color: rgb(239 68 68 / 0.7);
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-red-900 {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}
.text-slate-200 {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.text-slate-300 {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/20 {
  color: rgb(255 255 255 / 0.2);
}
.text-white\/50 {
  color: rgb(255 255 255 / 0.5);
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.text-yellow-900 {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.placeholder-emerald-900\/20::-moz-placeholder {
  color: rgb(6 78 59 / 0.2);
}
.placeholder-emerald-900\/20::placeholder {
  color: rgb(6 78 59 / 0.2);
}
.placeholder-white\/20::-moz-placeholder {
  color: rgb(255 255 255 / 0.2);
}
.placeholder-white\/20::placeholder {
  color: rgb(255 255 255 / 0.2);
}
.accent-\[\#009660\] {
  accent-color: #009660;
}
.opacity-0 {
  opacity: 0;
}
.opacity-10 {
  opacity: 0.1;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-55 {
  opacity: 0.55;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-90 {
  opacity: 0.9;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_-10px_30px_rgba\(0\2c 0\2c 0\2c 0\.05\)\] {
  --tw-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  --tw-shadow-colored: 0 -10px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_-10px_50px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-shadow: 0 -10px 50px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 -10px 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_-10px_60px_rgba\(0\2c 0\2c 0\2c 0\.05\)\] {
  --tw-shadow: 0 -10px 60px rgba(0,0,0,0.05);
  --tw-shadow-colored: 0 -10px 60px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_10px_rgba\(16\2c 185\2c 129\2c 0\.5\)\] {
  --tw-shadow: 0 0 10px rgba(16,185,129,0.5);
  --tw-shadow-colored: 0 0 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_20px_rgba\(241\2c 196\2c 15\2c 0\.3\)\] {
  --tw-shadow: 0 0 20px rgba(241,196,15,0.3);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_40px_rgba\(250\2c 204\2c 21\2c 0\.6\)\] {
  --tw-shadow: 0 0 40px rgba(250,204,21,0.6);
  --tw-shadow-colored: 0 0 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_50px_rgba\(0\2c 0\2c 0\2c 0\.5\)\] {
  --tw-shadow: 0 0 50px rgba(0,0,0,0.5);
  --tw-shadow-colored: 0 0 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_50px_rgba\(0\2c 0\2c 0\2c 0\.8\)\] {
  --tw-shadow: 0 0 50px rgba(0,0,0,0.8);
  --tw-shadow-colored: 0 0 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_8px_\#10b981\] {
  --tw-shadow: 0 0 8px #10b981;
  --tw-shadow-colored: 0 0 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_20px_rgba\(0\2c 0\2c 0\2c 0\.03\)\] {
  --tw-shadow: 0 10px 20px rgba(0,0,0,0.03);
  --tw-shadow-colored: 0 10px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_30px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-shadow: 0 10px 30px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_30px_rgba\(0\2c 0\2c 0\2c 0\.15\)\] {
  --tw-shadow: 0 10px 30px rgba(0,0,0,0.15);
  --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_30px_rgba\(0\2c 150\2c 96\2c 0\.05\)\] {
  --tw-shadow: 0 10px 30px rgba(0,150,96,0.05);
  --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_30px_rgba\(0\2c 150\2c 96\2c 0\.1\)\] {
  --tw-shadow: 0 10px 30px rgba(0,150,96,0.1);
  --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_30px_rgba\(0\2c 150\2c 96\2c 0\.2\)\] {
  --tw-shadow: 0 10px 30px rgba(0,150,96,0.2);
  --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_40px_rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
  --tw-shadow: 0 10px 40px rgba(0,0,0,0.3);
  --tw-shadow-colored: 0 10px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_15px_40px_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-shadow: 0 15px 40px rgba(0,0,0,0.2);
  --tw-shadow-colored: 0 15px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_40px_rgba\(255\2c 206\2c 0\2c 0\.4\)\] {
  --tw-shadow: 0 20px 40px rgba(255,206,0,0.4);
  --tw-shadow-colored: 0 20px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_50px_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-shadow: 0 20px 50px rgba(0,0,0,0.2);
  --tw-shadow-colored: 0 20px 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_50px_rgba\(0\2c 150\2c 96\2c 0\.05\)\] {
  --tw-shadow: 0 20px 50px rgba(0,150,96,0.05);
  --tw-shadow-colored: 0 20px 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_50px_rgba\(0\2c 150\2c 96\2c 0\.15\)\] {
  --tw-shadow: 0 20px 50px rgba(0,150,96,0.15);
  --tw-shadow-colored: 0 20px 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_60px_rgba\(0\2c 0\2c 0\2c 0\.06\)\] {
  --tw-shadow: 0 20px 60px rgba(0,0,0,0.06);
  --tw-shadow-colored: 0 20px 60px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_25px_80px_rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
  --tw-shadow: 0 25px 80px rgba(0,0,0,0.3);
  --tw-shadow-colored: 0 25px 80px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_40px_100px_rgba\(0\2c 0\2c 0\2c 0\.4\)\] {
  --tw-shadow: 0 40px 100px rgba(0,0,0,0.4);
  --tw-shadow-colored: 0 40px 100px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_40px_100px_rgba\(0\2c 0\2c 0\2c 0\.5\)\] {
  --tw-shadow: 0 40px 100px rgba(0,0,0,0.5);
  --tw-shadow-colored: 0 40px 100px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_40px_100px_rgba\(0\2c 150\2c 96\2c 0\.2\)\] {
  --tw-shadow: 0 40px 100px rgba(0,150,96,0.2);
  --tw-shadow-colored: 0 40px 100px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#006d46\] {
  --tw-shadow: 0 4px 0 #006d46;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#00764D\] {
  --tw-shadow: 0 4px 0 #00764D;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#009660\] {
  --tw-shadow: 0 4px 0 #009660;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#1e3a8a\] {
  --tw-shadow: 0 4px 0 #1e3a8a;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#991b1b\] {
  --tw-shadow: 0 4px 0 #991b1b;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#b91c1c\] {
  --tw-shadow: 0 4px 0 #b91c1c;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#d1a900\] {
  --tw-shadow: 0 4px 0 #d1a900;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_0_\#fda4af\] {
  --tw-shadow: 0 4px 0 #fda4af;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_4px_24px_rgba\(0\2c 0\2c 0\2c 0\.07\)\] {
  --tw-shadow: 0 4px 24px rgba(0,0,0,0.07);
  --tw-shadow-colored: 0 4px 24px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_5px_0_\#047857\] {
  --tw-shadow: 0 5px 0 #047857;
  --tw-shadow-colored: 0 5px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_5px_0_\#d97706\] {
  --tw-shadow: 0 5px 0 #d97706;
  --tw-shadow-colored: 0 5px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#004d32\] {
  --tw-shadow: 0 6px 0 #004d32;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#004d33\] {
  --tw-shadow: 0 6px 0 #004d33;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#006d46\] {
  --tw-shadow: 0 6px 0 #006d46;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#00764D\] {
  --tw-shadow: 0 6px 0 #00764D;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#1864ab\] {
  --tw-shadow: 0 6px 0 #1864ab;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#3730a3\] {
  --tw-shadow: 0 6px 0 #3730a3;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#991b1b\] {
  --tw-shadow: 0 6px 0 #991b1b;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#c92a2a\] {
  --tw-shadow: 0 6px 0 #c92a2a;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#d1a900\] {
  --tw-shadow: 0 6px 0 #d1a900;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#d97706\] {
  --tw-shadow: 0 6px 0 #d97706;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_0_\#e5e7eb\] {
  --tw-shadow: 0 6px 0 #e5e7eb;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_20px_rgba\(0\2c 0\2c 0\2c 0\.28\)\] {
  --tw-shadow: 0 6px 20px rgba(0,0,0,0.28);
  --tw-shadow-colored: 0 6px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_8px_0_\#d1a900\] {
  --tw-shadow: 0 8px 0 #d1a900;
  --tw-shadow-colored: 0 8px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_8px_0_\#e5e7eb\] {
  --tw-shadow: 0 8px 0 #e5e7eb;
  --tw-shadow-colored: 0 8px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_8px_20px_rgba\(0\2c 0\2c 0\2c 0\.15\)\] {
  --tw-shadow: 0 8px 20px rgba(0,0,0,0.15);
  --tw-shadow-colored: 0 8px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_8px_25px_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-shadow: 0 8px 25px rgba(0,0,0,0.2);
  --tw-shadow-colored: 0 8px 25px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[4px_0_15px_-4px_rgba\(0\2c 150\2c 96\2c 0\.1\)\] {
  --tw-shadow: 4px 0 15px -4px rgba(0,150,96,0.1);
  --tw-shadow-colored: 4px 0 15px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-emerald-600\/10 {
  --tw-shadow-color: rgb(5 150 105 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-600\/20 {
  --tw-shadow-color: rgb(5 150 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-500\/20 {
  --tw-shadow-color: rgb(239 68 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-8 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-\[\#FFCE00\] {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 206 0 / var(--tw-ring-opacity, 1));
}
.ring-emerald-400\/50 {
  --tw-ring-color: rgb(52 211 153 / 0.5);
}
.ring-white\/50 {
  --tw-ring-color: rgb(255 255 255 / 0.5);
}
.ring-yellow-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
}
.ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[120px\] {
  --tw-blur: blur(120px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[140px\] {
  --tw-blur: blur(140px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-md {
  --tw-blur: blur(12px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-xl {
  --tw-blur: blur(24px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.brightness-150 {
  --tw-brightness: brightness(1.5);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-2xl {
  --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-\[0_10px_20px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-drop-shadow: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-\[0_5px_0_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-drop-shadow: drop-shadow(0 5px 0 rgba(0,0,0,0.2));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-sm {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-xl {
  --tw-drop-shadow: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale-\[50\%\] {
  --tw-grayscale: grayscale(50%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.sepia {
  --tw-sepia: sepia(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-\[1px\] {
  --tw-backdrop-blur: blur(1px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
  /* Campina Grande Educational Palette */
  --color-primary: #009660;   /* Verde Municipal */
  --color-secondary: #FFCE00; /* Amarelo Pimentão */
  --color-accent: #00764D;    /* Verde Escuro */
  --color-text: #1A1A1A;
  --color-bg: #F0FDF4;        /* Verde suave para imersão */

  font-family: 'Outfit', 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color: var(--color-text);
  background-color: var(--color-bg);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-smoothing: grayscale;
}

body {
  margin: 0;
  display: flex;
  min-width: 320px;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #FFFFFF 0%, #F0FDF4 100%);
}

#root {
  width: 100%;
}

.child-friendly-shadow {
  box-shadow: 0 10px 40px rgba(0, 150, 96, 0.15);
}

.text-stroke {
  -webkit-text-stroke: 1.5px white;
}

@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(-5%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 3s infinite;
}

@keyframes blink-hard {
  0%, 100% { background-color: #ef4444; transform: scale(1.05); }
  50% { background-color: #b91c1c; transform: scale(1); }
}

.animate-blink-hard {
  animation: blink-hard 0.6s infinite;
}

/* Animations for Game Over effects */
@keyframes confetti-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes rain-fall {
  0% { transform: translateY(-20px); opacity: 0.6; }
  100% { transform: translateY(100vh); opacity: 0.2; }
}

.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  animation: confetti-fall 4s linear forwards;
  z-index: 101;
}

/* Modal isolation rules */
body.modal-open {
  overflow: hidden;
}

.modal-open #room-code-display,
.modal-open #avatar-guide-container {
  display: none !important;
}

.rain {
  position: absolute;
  width: 2px;
  height: 20px;
  background: #cbd5e1;
  border-radius: 1px;
  animation: rain-fall 1.5s linear infinite;
  z-index: 101;
}

.placeholder\:text-emerald-200::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}

.placeholder\:text-emerald-200::placeholder {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}

.placeholder\:text-emerald-900\/20::-moz-placeholder {
  color: rgb(6 78 59 / 0.2);
}

.placeholder\:text-emerald-900\/20::placeholder {
  color: rgb(6 78 59 / 0.2);
}

.placeholder\:text-emerald-900\/70::-moz-placeholder {
  color: rgb(6 78 59 / 0.7);
}

.placeholder\:text-emerald-900\/70::placeholder {
  color: rgb(6 78 59 / 0.7);
}

.last\:border-0:last-child {
  border-width: 0px;
}

.hover\:z-50:hover {
  z-index: 50;
}

.hover\:translate-y-1:hover {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:translate-y-\[-2px\]:hover {
  --tw-translate-y: -2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.02\]:hover {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.03\]:hover {
  --tw-scale-x: 1.03;
  --tw-scale-y: 1.03;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.05\]:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-\[\#009660\]\/30:hover {
  border-color: rgb(0 150 96 / 0.3);
}

.hover\:border-\[\#769656\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(118 150 86 / var(--tw-border-opacity, 1));
}

.hover\:border-emerald-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}

.hover\:border-emerald-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}

.hover\:border-emerald-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}

.hover\:border-emerald-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}

.hover\:border-gray-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.hover\:border-red-100:hover {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.hover\:border-white\/10:hover {
  border-color: rgb(255 255 255 / 0.1);
}

.hover\:border-yellow-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#009660\]\/20:hover {
  background-color: rgb(0 150 96 / 0.2);
}

.hover\:bg-\[\#00a86b\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 168 107 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#FFCE00\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 206 0 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#ffe050\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 224 80 / var(--tw-bg-opacity, 1));
}

.hover\:bg-amber-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-black\/30:hover {
  background-color: rgb(0 0 0 / 0.3);
}

.hover\:bg-black\/40:hover {
  background-color: rgb(0 0 0 / 0.4);
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-emerald-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}

.hover\:bg-emerald-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}

.hover\:bg-emerald-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}

.hover\:bg-emerald-50\/50:hover {
  background-color: rgb(236 253 245 / 0.5);
}

.hover\:bg-emerald-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}

.hover\:bg-emerald-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}

.hover\:bg-white\/20:hover {
  background-color: rgb(255 255 255 / 0.2);
}

.hover\:bg-white\/50:hover {
  background-color: rgb(255 255 255 / 0.5);
}

.hover\:bg-white\/90:hover {
  background-color: rgb(255 255 255 / 0.9);
}

.hover\:bg-yellow-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}

.hover\:text-\[\#009660\]:hover {
  --tw-text-opacity: 1;
  color: rgb(0 150 96 / var(--tw-text-opacity, 1));
}

.hover\:text-emerald-600:hover {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}

.hover\:text-emerald-700:hover {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}

.hover\:text-emerald-900:hover {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.hover\:text-red-400:hover {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.hover\:text-red-500:hover {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.hover\:text-slate-600:hover {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:text-white\/60:hover {
  color: rgb(255 255 255 / 0.6);
}

.hover\:text-yellow-700:hover {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:shadow-\[0_20px_50px_rgba\(0\2c 150\2c 96\2c 0\.1\)\]:hover {
  --tw-shadow: 0 20px 50px rgba(0,150,96,0.1);
  --tw-shadow-colored: 0 20px 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-\[0_20px_50px_rgba\(0\2c 150\2c 96\2c 0\.12\)\]:hover {
  --tw-shadow: 0 20px 50px rgba(0,150,96,0.12);
  --tw-shadow-colored: 0 20px 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-\[0_20px_50px_rgba\(0\2c 150\2c 96\2c 0\.15\)\]:hover {
  --tw-shadow: 0 20px 50px rgba(0,150,96,0.15);
  --tw-shadow-colored: 0 20px 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-\[0_3px_0_\#d1a900\]:hover {
  --tw-shadow: 0 3px 0 #d1a900;
  --tw-shadow-colored: 0 3px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-\[0_4px_0_\#d1a900\]:hover {
  --tw-shadow: 0 4px 0 #d1a900;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-none:hover {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:brightness-105:hover {
  --tw-brightness: brightness(1.05);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.hover\:brightness-110:hover {
  --tw-brightness: brightness(1.1);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.hover\:grayscale-0:hover {
  --tw-grayscale: grayscale(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.focus\:border-\[\#009660\]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(0 150 96 / var(--tw-border-opacity, 1));
}

.focus\:border-\[\#FFCE00\]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 206 0 / var(--tw-border-opacity, 1));
}

.focus\:border-emerald-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}

.focus\:border-emerald-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}

.focus\:border-emerald-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}

.focus\:bg-white:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-\[\#FFCE00\]\/20:focus {
  --tw-ring-color: rgb(255 206 0 / 0.2);
}

.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-\[\#009660\]:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 150 96 / var(--tw-ring-opacity, 1));
}

.active\:translate-y-0:active {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:translate-y-0\.5:active {
  --tw-translate-y: 0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:translate-y-1:active {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:translate-y-2:active {
  --tw-translate-y: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:translate-y-\[4px\]:active {
  --tw-translate-y: 4px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:scale-90:active {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:scale-95:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:scale-\[0\.98\]:active {
  --tw-scale-x: 0.98;
  --tw-scale-y: 0.98;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:shadow-\[0_3px_0_\#d1a900\]:active {
  --tw-shadow: 0 3px 0 #d1a900;
  --tw-shadow-colored: 0 3px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.active\:shadow-\[0_4px_0_\#d1a900\]:active {
  --tw-shadow: 0 4px 0 #d1a900;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.active\:shadow-\[0_4px_0_\#e5e7eb\]:active {
  --tw-shadow: 0 4px 0 #e5e7eb;
  --tw-shadow-colored: 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.active\:shadow-none:active {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.disabled\:cursor-default:disabled {
  cursor: default;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:opacity-70:disabled {
  opacity: 0.7;
}

.disabled\:opacity-90:disabled {
  opacity: 0.9;
}

.disabled\:active\:translate-y-0:active:disabled {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.disabled\:active\:shadow-\[0_6px_0_\#d1a900\]:active:disabled {
  --tw-shadow: 0 6px 0 #d1a900;
  --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:-translate-x-1 {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:rotate-12 {
  --tw-rotate: 12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-125 {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes bounce {

  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.group:hover .group-hover\:animate-bounce {
  animation: bounce 1s infinite;
}

.group:hover .group-hover\:bg-\[\#009660\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 150 96 / var(--tw-bg-opacity, 1));
}

.group:hover .group-hover\:bg-\[\#FFCE00\]\/10 {
  background-color: rgb(255 206 0 / 0.1);
}

.group:hover .group-hover\:bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}

.group:hover .group-hover\:bg-emerald-50\/50 {
  background-color: rgb(236 253 245 / 0.5);
}

.group:hover .group-hover\:text-\[\#009660\] {
  --tw-text-opacity: 1;
  color: rgb(0 150 96 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:underline {
  text-decoration-line: underline;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:opacity-20 {
  opacity: 0.2;
}

.group:hover .group-hover\:opacity-30 {
  opacity: 0.3;
}

@media (max-width: 480px) {

  .max-\[480px\]\:flex {
    display: flex;
  }
}

@media (min-width: 640px) {

  .sm\:relative {
    position: relative;
  }

  .sm\:-bottom-2 {
    bottom: -0.5rem;
  }

  .sm\:left-6 {
    left: 1.5rem;
  }

  .sm\:left-auto {
    left: auto;
  }

  .sm\:right-0 {
    right: 0px;
  }

  .sm\:right-2 {
    right: 0.5rem;
  }

  .sm\:right-6 {
    right: 1.5rem;
  }

  .sm\:right-8 {
    right: 2rem;
  }

  .sm\:top-0 {
    top: 0px;
  }

  .sm\:top-2 {
    top: 0.5rem;
  }

  .sm\:top-6 {
    top: 1.5rem;
  }

  .sm\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:mt-24 {
    margin-top: 6rem;
  }

  .sm\:mt-28 {
    margin-top: 7rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline {
    display: inline;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-14 {
    height: 3.5rem;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:h-2\.5 {
    height: 0.625rem;
  }

  .sm\:h-20 {
    height: 5rem;
  }

  .sm\:h-24 {
    height: 6rem;
  }

  .sm\:h-28 {
    height: 7rem;
  }

  .sm\:h-32 {
    height: 8rem;
  }

  .sm\:h-40 {
    height: 10rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-7 {
    height: 1.75rem;
  }

  .sm\:h-8 {
    height: 2rem;
  }

  .sm\:h-9 {
    height: 2.25rem;
  }

  .sm\:h-auto {
    height: auto;
  }

  .sm\:max-h-\[90vh\] {
    max-height: 90vh;
  }

  .sm\:min-h-\[240px\] {
    min-height: 240px;
  }

  .sm\:w-10 {
    width: 2.5rem;
  }

  .sm\:w-16 {
    width: 4rem;
  }

  .sm\:w-2\.5 {
    width: 0.625rem;
  }

  .sm\:w-20 {
    width: 5rem;
  }

  .sm\:w-24 {
    width: 6rem;
  }

  .sm\:w-28 {
    width: 7rem;
  }

  .sm\:w-40 {
    width: 10rem;
  }

  .sm\:w-5 {
    width: 1.25rem;
  }

  .sm\:w-56 {
    width: 14rem;
  }

  .sm\:w-\[170px\] {
    width: 170px;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:\!max-w-\[180px\] {
    max-width: 180px !important;
  }

  .sm\:max-w-\[100px\] {
    max-width: 100px;
  }

  .sm\:max-w-\[300px\] {
    max-width: 300px;
  }

  .sm\:max-w-none {
    max-width: none;
  }

  .sm\:flex-none {
    flex: none;
  }

  .sm\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:items-end {
    align-items: flex-end;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-end {
    justify-content: flex-end;
  }

  .sm\:justify-center {
    justify-content: center;
  }

  .sm\:gap-1 {
    gap: 0.25rem;
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-3 {
    gap: 0.75rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:overflow-hidden {
    overflow: hidden;
  }

  .sm\:rounded-3xl {
    border-radius: 1.5rem;
  }

  .sm\:rounded-\[1\.5rem\] {
    border-radius: 1.5rem;
  }

  .sm\:rounded-\[3rem\] {
    border-radius: 3rem;
  }

  .sm\:rounded-bl-\[1\.2rem\] {
    border-bottom-left-radius: 1.2rem;
  }

  .sm\:rounded-br-\[0\.2rem\] {
    border-bottom-right-radius: 0.2rem;
  }

  .sm\:border-\[12px\] {
    border-width: 12px;
  }

  .sm\:border-\[3px\] {
    border-width: 3px;
  }

  .sm\:border-b-2 {
    border-bottom-width: 2px;
  }

  .sm\:border-b-\[10px\] {
    border-bottom-width: 10px;
  }

  .sm\:border-b-\[20px\] {
    border-bottom-width: 20px;
  }

  .sm\:border-b-\[5px\] {
    border-bottom-width: 5px;
  }

  .sm\:border-t-2 {
    border-top-width: 2px;
  }

  .sm\:border-t-4 {
    border-top-width: 4px;
  }

  .sm\:border-dashed {
    border-style: dashed;
  }

  .sm\:border-emerald-100 {
    --tw-border-opacity: 1;
    border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
  }

  .sm\:border-emerald-400\/20 {
    border-color: rgb(52 211 153 / 0.2);
  }

  .sm\:border-emerald-900\/10 {
    border-color: rgb(6 78 59 / 0.1);
  }

  .sm\:border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }

  .sm\:bg-\[\#009660\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 150 96 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-emerald-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:p-12 {
    padding: 3rem;
  }

  .sm\:p-3 {
    padding: 0.75rem;
  }

  .sm\:p-3\.5 {
    padding: 0.875rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

  .sm\:p-9 {
    padding: 2.25rem;
  }

  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }

  .sm\:pt-10 {
    padding-top: 2.5rem;
  }

  .sm\:pt-16 {
    padding-top: 4rem;
  }

  .sm\:pt-2 {
    padding-top: 0.5rem;
  }

  .sm\:pt-3 {
    padding-top: 0.75rem;
  }

  .sm\:pt-8 {
    padding-top: 2rem;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .sm\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .sm\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .sm\:text-\[10px\] {
    font-size: 10px;
  }

  .sm\:text-\[11px\] {
    font-size: 11px;
  }

  .sm\:text-\[55px\] {
    font-size: 55px;
  }

  .sm\:text-\[9px\] {
    font-size: 9px;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .sm\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .sm\:not-italic {
    font-style: normal;
  }

  .sm\:leading-tight {
    line-height: 1.25;
  }

  .sm\:text-\[\#009660\] {
    --tw-text-opacity: 1;
    color: rgb(0 150 96 / var(--tw-text-opacity, 1));
  }

  .sm\:text-emerald-900\/70 {
    color: rgb(6 78 59 / 0.7);
  }

  .sm\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }

  .sm\:placeholder-emerald-900\/30::-moz-placeholder {
    color: rgb(6 78 59 / 0.3);
  }

  .sm\:placeholder-emerald-900\/30::placeholder {
    color: rgb(6 78 59 / 0.3);
  }

  .sm\:opacity-0 {
    opacity: 0;
  }

  .sm\:shadow-\[0_25px_80px_rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
    --tw-shadow: 0 25px 80px rgba(0,0,0,0.3);
    --tw-shadow-colored: 0 25px 80px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:shadow-\[0_6px_0_\#006d46\] {
    --tw-shadow: 0 6px 0 #006d46;
    --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:shadow-\[0_6px_0_\#d1a900\] {
    --tw-shadow: 0 6px 0 #d1a900;
    --tw-shadow-colored: 0 6px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:hover\:bg-\[\#00a86b\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(0 168 107 / var(--tw-bg-opacity, 1));
  }

  .sm\:focus\:border-\[\#009660\]:focus {
    --tw-border-opacity: 1;
    border-color: rgb(0 150 96 / var(--tw-border-opacity, 1));
  }

  .sm\:focus\:ring-0:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .group:hover .sm\:group-hover\:opacity-100 {
    opacity: 1;
  }
}

@media (min-width: 768px) {

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:w-80 {
    width: 20rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:pl-16 {
    padding-left: 4rem;
  }

  .md\:pl-20 {
    padding-left: 5rem;
  }

  .md\:pl-40 {
    padding-left: 10rem;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media (min-width: 1024px) {

  .lg\:static {
    position: static;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-10 {
    height: 2.5rem;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:max-w-4xl {
    max-width: 56rem;
  }

  .lg\:max-w-5xl {
    max-width: 64rem;
  }

  .lg\:max-w-\[480px\] {
    max-width: 480px;
  }

  .lg\:translate-x-0 {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:p-12 {
    padding: 3rem;
  }

  .lg\:p-16 {
    padding: 4rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:pl-72 {
    padding-left: 18rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {

  .xl\:max-w-6xl {
    max-width: 72rem;
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:p-16 {
    padding: 4rem;
  }

  .xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1536px) {

  .\32xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}