:root {
  --wood-deep: #2a1505;
  --wood-mid: #3d1e08;
  --wood-light: #6b3a1f;
  --wood-grain: #8b5225;
  --wood-highlight: #c4843a;
  --board-face: #c9954a;
  --board-dark: #a07030;
  --line-color: #3a1e05;
  --gold: #e8b84b;
  --gold-dim: #9a7825;
  --p1-light: #f5f0e8;
  --p1-mid: #d4cfc6;
  --p1-shadow: #8a8580;
  --p2-light: #3a5a80;
  --p2-mid: #1d3552;
  --p2-shadow: #0d1e30;
  --text-main: #f0e8d8;
  --text-dim: #a09070;
  --glow-mill: rgba(232, 184, 75, 0.7);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; user-select: none; }

body {
  background: radial-gradient(ellipse at 50% 0%, #4a2208 0%, #1a0a02 60%, #0d0501 100%);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  overflow-x: hidden;
}

/* Ambient particles */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(232,184,75,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 65%, rgba(232,184,75,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 85%, rgba(232,184,75,0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: #080300;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
.pre-logo {
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.pre-ring {
  width: 52px; height: 52px;
  border: 3px solid rgba(232,184,75,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 18px;
}
.pre-label {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0; animation: fadeUp 0.6s ease 0.6s forwards;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,2,0,0.88);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.hidden { opacity: 0; pointer-events: none; }

.modal-box {
  background: linear-gradient(160deg, #2e1508 0%, #1a0a03 100%);
  border: 1px solid rgba(232,184,75,0.35);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 480px; width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(232,184,75,0.15);
}
.modal-badge {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.3);
  border-radius: 20px; padding: 4px 14px;
  margin-bottom: 14px;
}
.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px; line-height: 1.2;
}
.modal-sub {
  font-size: 0.85rem; color: var(--text-dim); line-height: 1.6;
  margin-bottom: 22px;
}
.rules-grid {
  display: grid; gap: 10px;
  margin-bottom: 28px;
}
.rule-row {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 10px 14px;
}
.rule-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(232,184,75,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-top: 1px;
}
.rule-text { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.rule-text strong { color: var(--text-main); font-weight: 600; }

.modal-divider {
  border: none; border-top: 1px solid rgba(232,184,75,0.15);
  margin: 22px 0 18px;
}
.modal-choose {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; text-align: center;
}
.btn-row { display: flex; gap: 12px; }
.btn-primary, .btn-secondary {
  flex: 1; padding: 13px 10px;
  border-radius: 10px; cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; border: none; transition: transform 0.1s, box-shadow 0.15s;
}
.btn-primary {
  background: linear-gradient(135deg, #e8b84b 0%, #b8862b 100%);
  color: #1a0a00;
  box-shadow: 0 4px 20px rgba(232,184,75,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(232,184,75,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,184,75,0.45); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn-primary:active, .btn-secondary:active { transform: translateY(0); }

/* ── MAIN LAYOUT ── */
#app {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 16px; width: 100%;
  opacity: 0; transition: opacity 0.5s ease;
}

.game-header {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 18px;
}
.game-eyebrow {
  font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; opacity: 0.8;
}
.game-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-main);
  letter-spacing: 2px; line-height: 1;
}

/* ── STATUS BAR ── */
.status-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px; padding: 10px 22px;
  margin-bottom: 20px; min-width: 280px;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
}
.status-wrap.mill-state {
  background: rgba(232,184,75,0.12);
  border-color: rgba(232,184,75,0.4);
  animation: statusPulse 1.4s ease infinite;
}
@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,184,75,0.2); }
  50%      { box-shadow: 0 0 18px 4px rgba(232,184,75,0.15); }
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.status-dot.p1 { background: var(--p1-light); }
.status-dot.p2 { background: var(--p2-light); }
.status-dot.mill { background: var(--gold); animation: dotBlink 0.7s ease infinite alternate; }
@keyframes dotBlink { from { opacity: 0.4; } to { opacity: 1; } }
.status-text {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.3px;
  color: var(--text-main);
}

/* ── PLAY AREA ── */
.play-area {
  display: flex; align-items: center; gap: 18px;
}

/* ── RESERVE PANEL ── */
.reserve-panel {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.reserve-label {
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px;
}
.reserve-tray {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; width: 52px; padding: 10px 6px;
  display: flex; flex-direction: column-reverse; align-items: center; gap: 5px;
  min-height: 200px;
}
.mini-disc {
  width: 36px; height: 12px; border-radius: 6px;
  transition: transform 0.2s;
}
.mini-disc.p1 {
  background: linear-gradient(to right, #ffffff, #c8c4bc);
  box-shadow: 0 2px 4px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.9);
}
.mini-disc.p2 {
  background: linear-gradient(to right, #4a6a8a, #131e2c);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.reserve-count {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
}

/* ── BOARD FRAME ── */
.board-frame {
  position: relative;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(145deg, #7a4a1a 0%, #4a2808 40%, #5c3515 100%);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 2px 0 rgba(255,255,255,0.12),
    inset 0 -2px 0 rgba(0,0,0,0.4);
}
/* Wood grain accent lines */
.board-frame::before {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background:
    repeating-linear-gradient(
      88deg,
      transparent 0px, transparent 28px,
      rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 29px
    );
  pointer-events: none;
}
.board-inner {
  position: relative;
  background: linear-gradient(135deg, #d4a050 0%, #b07828 35%, #c49040 65%, #a87225 100%);
  border-radius: 8px;
  padding: 4px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4), inset 0 -1px 3px rgba(255,255,255,0.1);
}

canvas {
  display: block;
  cursor: pointer;
  border-radius: 6px;
}

/* ── BOTTOM CONTROLS ── */
.bottom-row {
  margin-top: 18px;
  display: flex; gap: 12px; align-items: center;
}
.ctrl-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px 18px;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); cursor: pointer;
  font-family: 'Cinzel', serif;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.ctrl-btn:hover { background: rgba(255,255,255,0.1); color: var(--text-main); transform: translateY(-1px); }
.ctrl-btn:active { transform: translateY(0); }

/* ── PHASE INDICATOR ── */
.phase-strip {
  display: flex; gap: 6px; margin-top: 14px;
}
.phase-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.1); transition: background 0.3s;
}
.phase-dot.active { background: var(--gold); }

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet  (≤ 768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { justify-content: flex-start; padding-top: 12px; overflow-y: auto; }

  #app { padding: 12px 10px 20px; gap: 0; }

  .game-header { margin-bottom: 10px; }
  .game-title  { font-size: 1.4rem; letter-spacing: 1px; }
  .game-eyebrow { font-size: 0.6rem; letter-spacing: 3px; }

  .status-wrap  { min-width: 0; width: 90%; padding: 8px 16px; margin-bottom: 12px; }
  .status-text  { font-size: 0.78rem; }

  .play-area    { flex-direction: column; align-items: center; gap: 10px; }

  /* Reserves go horizontal above/below the board */
  .reserve-panel { flex-direction: row; align-items: center; gap: 12px; width: 100%; justify-content: center; }
  .reserve-label { margin-bottom: 0; font-size: 0.58rem; letter-spacing: 2px; }
  .reserve-tray  { flex-direction: row; flex-wrap: wrap; width: auto; min-height: auto;
                   height: auto; max-width: 280px; padding: 6px 8px; gap: 4px; border-radius: 8px; }
  .mini-disc     { width: 10px; height: 28px; border-radius: 5px; }
  .reserve-count { font-size: 0.95rem; }

  .board-frame { padding: 12px; border-radius: 12px; }

  .phase-strip  { margin-top: 10px; }
  .phase-dot    { width: 5px; height: 5px; }

  .bottom-row   { margin-top: 12px; }
  .ctrl-btn     { padding: 7px 14px; font-size: 0.7rem; }

  /* Modal */
  .modal-box    { padding: 24px 18px; border-radius: 14px; }
  .modal-title  { font-size: 1.35rem; }
  .modal-sub    { font-size: 0.78rem; margin-bottom: 16px; }
  .rules-grid   { gap: 7px; margin-bottom: 20px; }
  .rule-row     { padding: 8px 10px; }
  .rule-icon    { width: 24px; height: 24px; font-size: 0.75rem; }
  .rule-text    { font-size: 0.74rem; }
  .btn-primary, .btn-secondary { padding: 11px 8px; font-size: 0.72rem; }

  /* Win modal */
  .win-box      { padding: 30px 22px 26px; border-radius: 16px; }
  .win-crown    { font-size: 2.4rem; }
  .win-title    { font-size: 1.55rem; }
  .win-subtitle { font-size: 0.78rem; margin-bottom: 20px; }
  .win-stats    { gap: 12px; margin-bottom: 20px; }
  .win-stat     { padding: 10px 14px; min-width: 70px; }
  .win-stat-val { font-size: 1.2rem; }
  .win-btn-main, .win-btn-sec { padding: 12px 10px; font-size: 0.72rem; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile  (≤ 480px)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  body { padding-top: 8px; }

  #app { padding: 8px 6px 16px; }

  .game-title   { font-size: 1.15rem; letter-spacing: 0.5px; }
  .game-header  { margin-bottom: 8px; }

  .status-wrap  { width: 95%; padding: 7px 12px; margin-bottom: 10px; border-radius: 20px; }
  .status-text  { font-size: 0.72rem; }
  .status-dot   { width: 6px; height: 6px; }

  .play-area    { gap: 8px; width: 100%; }

  .reserve-panel { gap: 8px; }
  .reserve-tray  { max-width: 240px; padding: 5px 6px; gap: 3px; }
  .mini-disc     { width: 8px; height: 22px; border-radius: 4px; }
  .reserve-count { font-size: 0.85rem; }
  .reserve-label { font-size: 0.55rem; }

  .board-frame { padding: 8px; border-radius: 10px; }
  .board-inner { padding: 2px; border-radius: 6px; }

  /* Phase dots */
  .phase-strip  { gap: 5px; margin-top: 8px; }
  .phase-dot    { width: 5px; height: 5px; }

  .bottom-row   { margin-top: 10px; }
  .ctrl-btn     { padding: 6px 12px; font-size: 0.65rem; letter-spacing: 1.5px; }

  /* Modal */
  .modal-box    { padding: 20px 14px; width: 95%; border-radius: 12px; }
  .modal-title  { font-size: 1.2rem; }
  .modal-badge  { font-size: 0.58rem; letter-spacing: 2.5px; }
  .modal-sub    { font-size: 0.74rem; margin-bottom: 14px; }
  .rules-grid   { gap: 6px; margin-bottom: 16px; }
  .rule-row     { padding: 7px 8px; gap: 8px; }
  .rule-icon    { width: 22px; height: 22px; font-size: 0.7rem; flex-shrink: 0; }
  .rule-text    { font-size: 0.7rem; }
  .modal-divider { margin: 14px 0 12px; }
  .modal-choose { font-size: 0.7rem; margin-bottom: 10px; }
  .btn-row      { gap: 8px; }
  .btn-primary, .btn-secondary { padding: 10px 6px; font-size: 0.68rem; letter-spacing: 0.8px; }

  /* Win modal */
  .win-box      { padding: 24px 16px 20px; width: 92%; border-radius: 14px; }
  .win-crown    { font-size: 2rem; margin-bottom: 6px; }
  .win-label    { font-size: 0.58rem; letter-spacing: 3px; margin-bottom: 6px; }
  .win-title    { font-size: 1.3rem; }
  .win-subtitle { font-size: 0.72rem; margin-bottom: 16px; }
  .win-stats    { gap: 10px; margin-bottom: 16px; }
  .win-stat     { padding: 8px 12px; min-width: 60px; border-radius: 8px; }
  .win-stat-val { font-size: 1.1rem; }
  .win-stat-lbl { font-size: 0.58rem; }
  .win-divider  { margin: 0 0 16px; }
  .win-btn-row  { gap: 8px; }
  .win-btn-main, .win-btn-sec { padding: 11px 8px; font-size: 0.68rem; letter-spacing: 0.8px; border-radius: 8px; }
  .winner-badge { width: 11px; height: 11px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Tiny phones  (≤ 360px)
════════════════════════════════════════════ */
@media (max-width: 360px) {
  .game-title   { font-size: 1rem; }
  .modal-title  { font-size: 1.05rem; }
  .win-title    { font-size: 1.1rem; }
  .btn-primary, .btn-secondary { padding: 9px 4px; font-size: 0.62rem; }
  .win-btn-main, .win-btn-sec  { padding: 9px 4px; font-size: 0.62rem; }
  .reserve-tray { max-width: 200px; }
}

/* ════════════════════════════════════════════
   TOUCH — remove hover effects on touch devices
════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover, .btn-secondary:hover,
  .win-btn-main:hover, .win-btn-sec:hover,
  .ctrl-btn:hover { transform: none; box-shadow: none; background: inherit; }
  canvas { cursor: default; touch-action: none; }
}

/* ════════════════════════════════════════════
   LANDSCAPE MOBILE — side-by-side reserves
════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  body { justify-content: flex-start; overflow-y: auto; padding: 6px 0; }
  #app { flex-direction: row; flex-wrap: wrap; justify-content: center;
         align-items: flex-start; gap: 8px; padding: 6px; }
  .game-header  { width: 100%; margin-bottom: 4px; }
  .status-wrap  { width: 100%; margin-bottom: 6px; }
  .play-area    { flex-direction: row; gap: 8px; align-items: center; }
  .reserve-panel { flex-direction: column; gap: 5px; }
  .reserve-tray  { flex-direction: column-reverse; width: 36px; height: 120px;
                   max-width: none; flex-wrap: nowrap; }
  .mini-disc     { width: 24px; height: 8px; border-radius: 4px; }
  .board-frame   { padding: 6px; }
  .phase-strip, .bottom-row { width: 100%; justify-content: center; margin-top: 4px; }
}

/* ── WIN MODAL ── */
#win-overlay {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
#win-overlay.visible { opacity: 1; pointer-events: all; }

#fireworks-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.win-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 2, 0, 0.82);
  backdrop-filter: blur(6px);
}

.win-box {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, #2e1508 0%, #1a0a03 100%);
  border: 1px solid rgba(232,184,75,0.5);
  border-radius: 20px;
  padding: 44px 38px 36px;
  max-width: 420px; width: 90%;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.8),
    0 0 60px rgba(232,184,75,0.08),
    inset 0 1px 0 rgba(232,184,75,0.2);
  animation: winPop 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes winPop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.win-crown {
  font-size: 3.2rem; line-height: 1;
  margin-bottom: 10px;
  animation: crownBounce 1s ease infinite alternate;
  display: block;
}
@keyframes crownBounce {
  from { transform: translateY(0) rotate(-5deg); }
  to   { transform: translateY(-8px) rotate(5deg); }
}

.win-label {
  font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; opacity: 0.8;
}

.win-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--text-main);
  line-height: 1.15; margin-bottom: 6px;
}

.win-subtitle {
  font-size: 0.85rem; color: var(--text-dim);
  margin-bottom: 28px; line-height: 1.5;
}

.win-stats {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 28px;
}
.win-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 12px 18px;
  min-width: 80px;
}
.win-stat-val {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); display: block;
}
.win-stat-lbl {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); display: block; margin-top: 3px;
}

.win-divider { border: none; border-top: 1px solid rgba(232,184,75,0.15); margin: 0 0 24px; }

.win-btn-row { display: flex; gap: 12px; justify-content: center; }

.win-btn-main {
  flex: 1; padding: 14px 16px;
  background: linear-gradient(135deg, #e8b84b 0%, #b8862b 100%);
  border: none; border-radius: 10px; cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; color: #1a0a00;
  box-shadow: 0 4px 20px rgba(232,184,75,0.35);
  transition: transform 0.1s, box-shadow 0.15s;
}
.win-btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,184,75,0.45); }
.win-btn-main:active { transform: translateY(0); }

.win-btn-sec {
  flex: 1; padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(232,184,75,0.3); border-radius: 10px; cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; color: var(--text-main);
  transition: background 0.2s, transform 0.1s;
}
.win-btn-sec:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.win-btn-sec:active { transform: translateY(0); }

/* Piece color badge on win title */
.winner-badge {
  display: inline-block;
  width: 14px; height: 14px; border-radius: 50%;
  vertical-align: middle; margin-right: 6px;
  position: relative; top: -2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.winner-badge.p1 { background: radial-gradient(circle at 35% 35%, #fff, #b5b0a8); }
.winner-badge.p2 { background: radial-gradient(circle at 35% 35%, #5a7ea8, #0d1820); }
