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

:root {
  --bg-deep: #0c0e1a;
  --bg-base: #111324;
  --bg-card: #171a2e;
  --bg-raised: #1d2140;
  --bg-hover: #242850;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --text-primary: #eef0ff;
  --text-secondary: #8b90b0;
  --text-muted: #565a78;
  --gold: #f0c040;
  --gold-dim: #c09020;
  --gold-glow: rgba(240, 192, 64, 0.15);
  --accent-blue: #4a8cf0;
  --accent-red: #f05050;
  --accent-green: #40c870;
  --sq-light: #e6ddc6;
  --sq-dark: #8fa06a;
  --sq-light-alt: #f0e8d0;
  --sq-dark-alt: #98a872;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(240, 192, 64, 0.08);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 140, 240, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 192, 64, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#app {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 20px;
}

/* ─── HEADER ─── */
header {
  text-align: center;
  margin-bottom: 32px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

header h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

header h1 .accent {
  background: linear-gradient(135deg, var(--gold), #ffd866);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ─── LAYOUT ─── */
#game-container {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
}

#chess-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#side-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 440px;
  min-width: 380px;
}

/* ─── PLAYER INFO ─── */
.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  min-width: 488px;
  justify-content: space-between;
  transition: all var(--transition);
}

.player-info.active-player {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.1);
}

.player-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.player-dot.white {
  background: #f5f5f0;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.player-dot.black {
  background: #2a2a2e;
  border: 2px solid #666;
}

.player-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.captured-pieces {
  font-size: 1.2rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* ─── CHESS BOARD ─── */
#board-wrapper {
  position: relative;
}

#board {
  display: grid;
  grid-template-columns: repeat(8, 60px);
  grid-template-rows: repeat(8, 60px);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border: 2px solid rgba(240, 192, 64, 0.25);
}

#file-labels {
  display: grid;
  grid-template-columns: repeat(8, 60px);
  padding-top: 4px;
}

#file-labels span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

#rank-labels {
  position: fixed;
  display: none;
}

.square {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.square.light {
  background: var(--sq-light);
}

.square.dark {
  background: var(--sq-dark);
}

.square:hover {
  filter: brightness(1.06);
}

.square.selected {
  background: #f0d84a !important;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.15);
}

.square.move-target {
  position: relative;
  cursor: pointer;
}

.square.move-target::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  transition: transform 0.15s ease;
}

.square.move-target:hover::after {
  transform: scale(1.3);
}

.square.capture-target {
  background: rgba(240, 70, 55, 0.5) !important;
  box-shadow: inset 0 0 0 3px rgba(240, 70, 55, 0.65);
  animation: captureGlow 1.2s ease-in-out infinite;
}

@keyframes captureGlow {
  0%, 100% { box-shadow: inset 0 0 0 3px rgba(240, 70, 55, 0.65); }
  50% { box-shadow: inset 0 0 0 3px rgba(240, 70, 55, 0.9), inset 0 0 12px rgba(240, 70, 55, 0.3); }
}

.square.last-move.light {
  background: #d4dc6a !important;
}

.square.last-move.dark {
  background: #a0b040 !important;
}

.square.check {
  background: radial-gradient(ellipse at center, #ff2020 0%, rgba(255, 30, 30, 0.55) 35%, transparent 68%) !important;
  animation: checkPulse 1s ease-in-out infinite;
}

@keyframes checkPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.square.bonus-highlight {
  box-shadow: inset 0 0 0 2px var(--gold), inset 0 0 12px rgba(240, 192, 64, 0.2);
}

.piece {
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

/* ─── STATUS & ACTION BAR ─── */
#status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-width: 488px;
}

#turn-indicator {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}

#turn-indicator.in-check {
  border-color: var(--accent-red);
  color: var(--accent-red);
  box-shadow: 0 0 16px rgba(240, 80, 80, 0.15);
}

#move-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: 0 0 16px rgba(240, 192, 64, 0.1);
}

#move-counter.hidden {
  display: none;
}

.move-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.move-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: 'JetBrains Mono', monospace;
}

#action-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.ui-btn {
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.ui-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.ui-btn.accent {
  background: linear-gradient(135deg, var(--gold), #e8b020);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.ui-btn.accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
}

.ui-btn.hidden,
.hidden {
  display: none !important;
}

/* ─── POKER PANEL ─── */
#poker-section {
  transition: all 0.3s ease;
}

#poker-panel {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-header {
  text-align: center;
  margin-bottom: 18px;
  position: relative;
}

.panel-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.showdown-spark {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
}

#poker-matchup {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.poker-player {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.poker-player.active-poker {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.12);
}

.poker-player.attacker {
  border-color: rgba(74, 140, 240, 0.3);
}

.poker-player.defender {
  border-color: rgba(240, 80, 80, 0.3);
}

.poker-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.position-tag {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.position-tag.ip {
  background: rgba(64, 200, 112, 0.15);
  color: #60e090;
  border: 1px solid rgba(64, 200, 112, 0.2);
}

.position-tag.oop {
  background: rgba(240, 80, 80, 0.15);
  color: #f08888;
  border: 1px solid rgba(240, 80, 80, 0.2);
}

.poker-piece-display {
  font-size: 2.6rem;
  margin: 2px 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.range-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.stack-display {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}

.poker-vs {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  align-self: center;
  padding-top: 36px;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(240, 192, 64, 0.3);
}

.poker-cards {
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 54px;
}

/* ─── CARDS ─── */
.card {
  width: 40px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  font-family: 'JetBrains Mono', monospace;
}

.card:hover {
  transform: translateY(-2px);
}

.card.face-down {
  background: linear-gradient(135deg, #2a3a6a, #1a2550);
  color: transparent;
  border: 1px solid rgba(74, 100, 180, 0.3);
}

.card.face-down::after {
  content: '?';
  color: rgba(74, 100, 180, 0.5);
  font-size: 1.2rem;
  font-weight: 800;
}

.card.face-up {
  background: linear-gradient(180deg, #ffffff, #f2f0ea);
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card.red {
  color: #cc2020;
}

.card.black {
  color: #1a1a1a;
}

.card.reveal {
  animation: cardReveal 0.4s ease;
}

@keyframes cardReveal {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ─── COMMUNITY CARDS ─── */
#community-cards {
  text-align: center;
  margin-bottom: 14px;
  padding: 14px;
  background: #0a2a10;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(40, 120, 50, 0.3);
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.2);
}

.street-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(100, 180, 100, 0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

#board-cards {
  min-height: 56px;
}

/* ─── POKER ACTIONS ─── */
#poker-actions {
  margin-top: 12px;
}

#pot-display {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2px;
  font-family: 'JetBrains Mono', monospace;
}

#poker-street-label {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

#action-buttons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.poker-btn {
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', system-ui, sans-serif;
}

.poker-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

.poker-btn:active {
  transform: translateY(0);
}

.poker-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
}

.poker-btn.fold {
  background: rgba(200, 60, 60, 0.2);
  color: #f08080;
  border: 1px solid rgba(200, 60, 60, 0.3);
}
.poker-btn.check {
  background: rgba(60, 180, 80, 0.2);
  color: #70e090;
  border: 1px solid rgba(60, 180, 80, 0.3);
}
.poker-btn.call {
  background: rgba(60, 120, 200, 0.2);
  color: #80b8f0;
  border: 1px solid rgba(60, 120, 200, 0.3);
}
.poker-btn.bet {
  background: rgba(200, 160, 40, 0.2);
  color: #e0c060;
  border: 1px solid rgba(200, 160, 40, 0.3);
}
.poker-btn.raise {
  background: rgba(220, 130, 40, 0.2);
  color: #e0a060;
  border: 1px solid rgba(220, 130, 40, 0.3);
}
.poker-btn.allin {
  background: rgba(200, 50, 120, 0.2);
  color: #f080c0;
  border: 1px solid rgba(200, 50, 120, 0.3);
}
.poker-btn.confirm {
  background: rgba(60, 180, 80, 0.25);
  color: #70e090;
  border: 1px solid rgba(60, 180, 80, 0.3);
}
.poker-btn.continue {
  background: linear-gradient(135deg, var(--gold), #e0a020);
  color: var(--bg-deep);
  font-size: 0.9rem;
  padding: 10px 28px;
  margin-top: 10px;
  border: none;
  box-shadow: 0 4px 16px rgba(240, 192, 64, 0.2);
}

.poker-btn.continue:hover {
  box-shadow: 0 6px 24px rgba(240, 192, 64, 0.3);
}

#bet-slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

#bet-slider {
  flex: 1;
  accent-color: var(--gold);
  height: 4px;
}

#bet-value {
  font-weight: 700;
  min-width: 40px;
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}

/* ─── POKER RESULT ─── */
#poker-result {
  text-align: center;
  padding: 16px;
  margin-top: 12px;
  background: var(--bg-raised);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

#result-text {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

#result-text.capture-success {
  color: var(--accent-green);
  text-shadow: 0 0 20px rgba(64, 200, 112, 0.3);
}

#result-text.capture-fail {
  color: var(--accent-red);
  text-shadow: 0 0 20px rgba(240, 80, 80, 0.3);
}

#result-hands {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

#bonus-move-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 6px;
  padding: 6px 12px;
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(240, 192, 64, 0.2);
  animation: bonusPulse 1.5s ease-in-out infinite;
}

@keyframes bonusPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ─── POKER LOG ─── */
#poker-log {
  margin-top: 12px;
  max-height: 110px;
  overflow-y: auto;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

#poker-log::-webkit-scrollbar {
  width: 4px;
}

#poker-log::-webkit-scrollbar-track {
  background: transparent;
}

#poker-log::-webkit-scrollbar-thumb {
  background: var(--bg-hover);
  border-radius: 2px;
}

#log-entries div {
  padding: 2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* ─── GAME LOG ─── */
#game-log {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

#game-log::-webkit-scrollbar {
  width: 4px;
}

#game-log::-webkit-scrollbar-track {
  background: transparent;
}

#game-log::-webkit-scrollbar-thumb {
  background: var(--bg-hover);
  border-radius: 2px;
}

#game-log h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#game-log-entries {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

#game-log-entries div {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

#game-log-entries div:last-child {
  border-bottom: none;
}

#game-log-entries .bonus-log {
  color: var(--gold);
  font-weight: 600;
}

#game-log-entries .capture-log {
  color: var(--accent-red);
}

#game-log-entries .success-log {
  color: var(--accent-green);
}

/* ─── CHECKMATE OVERLAY ─── */
#checkmate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#checkmate-overlay .content {
  text-align: center;
  padding: 48px 56px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(240, 192, 64, 0.15), var(--shadow-card);
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#checkmate-overlay h2 {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ffd866);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

#checkmate-overlay p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

#checkmate-overlay button {
  padding: 12px 36px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--gold), #e0a020);
  color: var(--bg-deep);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
}

#checkmate-overlay button:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 24px rgba(240, 192, 64, 0.3);
}

/* ─── ANIMATIONS ─── */
.ai-thinking {
  text-align: center;
  padding: 12px;
  color: var(--gold);
  font-style: italic;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes moveFlash {
  0% { box-shadow: inset 0 0 0 2px var(--gold); }
  100% { box-shadow: none; }
}

.move-flash {
  animation: moveFlash 0.6s ease;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  #game-container {
    flex-direction: column;
    align-items: center;
  }

  #side-panel {
    width: 100%;
    max-width: 500px;
    min-width: auto;
  }

  .player-info {
    min-width: auto;
    width: 100%;
    max-width: 488px;
  }

  #status-bar {
    min-width: auto;
    max-width: 488px;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  #board {
    grid-template-columns: repeat(8, 44px);
    grid-template-rows: repeat(8, 44px);
  }

  .square {
    width: 44px;
    height: 44px;
    font-size: 1.9rem;
  }

  #file-labels {
    grid-template-columns: repeat(8, 44px);
  }

  header h1 {
    font-size: 1.6rem;
  }
}
