/* ─────────────────────────────────────────────────────────────────────────────
   lotto.css — Lô Tô Việt Online
   Mobile-first, Vietnamese flair
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Root wrapper ─────────────────────────────────────────────────────────── */
#lotto-app {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 80px;
  font-family: inherit;
}

.lotto-lobby,
.lotto-game {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lotto-section {
  background: var(--card-bg, #fff);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}

.lotto-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary, #888);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 10px;
}

/* ── Lobby header ─────────────────────────────────────────────────────────── */
.lotto-lobby-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.lotto-room-id {
  font-size: 15px;
  letter-spacing: 1px;
}
.lotto-share-btns {
  display: flex;
  gap: 6px;
  align-items: center;
}
.btn-copy-link {
  background: var(--card-bg2, #f2f2f7);
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-primary, #111);
  transition: background .15s;
}
.btn-copy-link:hover { background: var(--border-color, #e0e0e0); }
.btn-qr {
  background: #c0002a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn-qr:hover { background: #a80022; transform: translateY(-1px); }

.btn-exit-game {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1.5px solid #ccc;
  background: transparent;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.btn-exit-game:hover {
  background: #ff3b30;
  border-color: #ff3b30;
  color: #fff;
}
html.dark .btn-exit-game {
  border-color: #555;
  color: #aaa;
}
html.dark .btn-exit-game:hover {
  background: #c0002a;
  border-color: #c0002a;
  color: #fff;
}

/* ── Players list ─────────────────────────────────────────────────────────── */
.lotto-players-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lotto-player-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--card-bg2, #f2f2f7);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 13px;
}
.badge-host {
  background: #0071E3;
  color: #fff;
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
}
.badge-caller {
  background: #FF9500;
  color: #fff;
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
}
.badge-card {
  background: #34C759;
  color: #fff;
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
}
.badge-nocard {
  background: var(--border-color, #e0e0e0);
  color: var(--text-secondary, #888);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
}

/* ── Win condition radios ─────────────────────────────────────────────────── */
.lotto-win-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lotto-radio {
  border: 2px solid var(--border-color, #e0e0e0);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lotto-radio input { display: none; }
.lotto-radio.active {
  border-color: #0071E3;
  background: rgba(0,113,227,.08);
  color: #0071E3;
  font-weight: 600;
}

/* ── Caller area ──────────────────────────────────────────────────────────── */
.lotto-caller-badge {
  background: rgba(255,149,0,.12);
  color: #c77800;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 14px;
}
.lotto-hint {
  font-size: 12px;
  color: var(--text-secondary, #888);
  margin: 0 0 8px;
}
.lotto-player-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color, #f0f0f0);
  font-size: 14px;
}
.lotto-player-row:last-child { border-bottom: none; }

/* ── Card grid (lobby) ────────────────────────────────────────────────────── */
.lotto-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
@media (max-width: 400px) {
  .lotto-card-grid { grid-template-columns: repeat(5, 1fr); }
}

.lotto-card-thumb {
  background: var(--card-bg2, #f2f2f7);
  border-radius: 8px;
  padding: 6px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .12s, background .12s, transform .1s;
  user-select: none;
}
.lotto-card-thumb:hover:not(.taken) {
  border-color: #0071E3;
  transform: translateY(-1px);
}
.lotto-card-thumb.taken {
  opacity: .38;
  cursor: not-allowed;
}
.lotto-card-thumb.my-card {
  border-color: #34C759;
  background: rgba(52,199,89,.1);
  color: #1a7a34;
}

/* ── Card preview / table — Tân Tân style ────────────────────────────────── */
.lotto-mycard-section {
  padding: 10px 0 0 !important;  /* bỏ padding ngang để card full width */
  overflow: hidden;
}

.lotto-card-wrap {
  width: 100%;
  margin: 0 auto;
  border: 3px solid #a8001e;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

.lotto-card-header {
  background: #a8001e;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 0;
  text-transform: uppercase;
}

/* Grid 9 cột — aspect-ratio hoạt động chính xác trên div */
.lotto-card-grid-body {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.5px;
  background: #fff;   /* màu gap = trắng → đường kẻ trắng mỏng */
  padding: 1.5px;
}

.lotto-cell {
  aspect-ratio: 1 / 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ~10% chiều rộng mỗi cell (card chiếm ~100vw - 16px padding) ÷ 9 cột */
  font-size: clamp(12px, calc((100vw - 16px) / 9 * 0.44), 22px);
  font-weight: 900;
  font-family: 'Arial Black', Arial, sans-serif;
  line-height: 1;
  color: #111;
  cursor: default;
  transition: background .1s, transform .1s;
  position: relative;
  overflow: hidden;
}

/* Ô có số — đỏ Tân Tân, chữ đen */
.lotto-cell:not(.empty) {
  background: #e8274b;
  color: #111;
}
/* Ô trống — trắng */
.lotto-cell.empty {
  background: #fff;
}
/* Số vừa quay — cam, bấm được */
.lotto-cell.drawn-available {
  background: #ff9500;
  color: #111;
  cursor: pointer;
  animation: lotto-pulse .4s ease;
}
.lotto-cell.drawn-available:hover {
  background: #e07800;
  transform: scale(1.06);
}
/* Đã đánh — xanh lá */
.lotto-cell.marked {
  background: #1a8a2e;
  color: #fff;
}
.lotto-cell.marked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
}
@keyframes lotto-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ── Start hint ───────────────────────────────────────────────────────────── */
.lotto-start-hint {
  font-size: 12px;
  color: var(--text-secondary, #888);
  margin: 6px 0 0;
  text-align: center;
}

/* ── Game header ──────────────────────────────────────────────────────────── */
.lotto-game-header {
  background: var(--card-bg, #fff);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.lotto-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary, #888);
  margin-bottom: 6px;
}
.lotto-caller-info {
  font-size: 14px;
  color: #c77800;
}

/* ── Current number display ───────────────────────────────────────────────── */
.lotto-drawn-display {
  background: linear-gradient(135deg, #0071E3 0%, #005cbf 100%);
  border-radius: 16px;
  padding: 24px 16px 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,113,227,.3);
}
.lotto-current-number {
  font-size: clamp(56px, 18vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.lotto-current-number.pop {
  animation: lotto-pop .35s ease;
}
@keyframes lotto-pop {
  0%   { transform: scale(.7); opacity: .5; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Hiệu ứng số đang quay — xáo liên tục */
.lotto-current-number.spinning {
  animation: lotto-spin-blur .08s steps(1) infinite;
  color: #ffe066;
  text-shadow: 0 0 24px rgba(255,224,102,.7), 0 2px 8px rgba(0,0,0,.3);
}
@keyframes lotto-spin-blur {
  0%   { transform: scale(1)    translateY(0); }
  25%  { transform: scale(1.06) translateY(-4px); }
  50%  { transform: scale(.96)  translateY(4px); }
  75%  { transform: scale(1.04) translateY(-2px); }
  100% { transform: scale(1)    translateY(0); }
}

/* Flash cuối khi ra số thật */
.lotto-current-number.reveal {
  animation: lotto-reveal .55s cubic-bezier(.22,1.6,.36,1);
  color: #fff;
}
@keyframes lotto-reveal {
  0%   { transform: scale(.4) rotate(-8deg); opacity: 0; }
  50%  { transform: scale(1.3) rotate(3deg); opacity: 1; }
  75%  { transform: scale(.95) rotate(-1deg); }
  100% { transform: scale(1)   rotate(0deg); }
}

/* Vòng sáng pulse xung quanh display khi reveal */
.lotto-drawn-display.pulse {
  animation: lotto-pulse-bg .6s ease;
}
@keyframes lotto-pulse-bg {
  0%   { box-shadow: 0 4px 20px rgba(0,113,227,.3); }
  40%  { box-shadow: 0 0 0 14px rgba(255,224,102,.35), 0 4px 40px rgba(0,113,227,.5); }
  100% { box-shadow: 0 4px 20px rgba(0,113,227,.3); }
}

.lotto-drawn-subtitle {
  font-size: 13px;
  opacity: .8;
  margin-top: 6px;
}

/* ── Number board — collapsible ───────────────────────────────────────────── */
.lotto-board-section { padding: 0 !important; overflow: hidden; }

.lotto-board-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary, #888);
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  user-select: none;
}
.lotto-board-toggle:hover { background: var(--card-bg2, #f7f7f7); }
.lotto-board-toggle-arrow {
  font-size: 11px;
  color: var(--text-secondary, #aaa);
  transition: transform .2s;
}

.lotto-number-board {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  padding: 0 12px 12px;
}
.lotto-nb-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(10px, 2.5vw, 14px);
  font-weight: 600;
  border-radius: 6px;
  background: var(--card-bg2, #f2f2f7);
  color: var(--text-secondary, #aaa);
  transition: background .2s, color .2s, transform .15s;
}
.lotto-nb-cell.drawn {
  background: #FF3B30;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(255,59,48,.3);
}

/* ── Card in game ─────────────────────────────────────────────────────────── */
/* Section title trong màn game gọn hơn */
.lotto-mycard-section .lotto-section-title {
  margin-bottom: 8px;
  font-size: 12px;
  padding: 0 12px;  /* tiêu đề có padding ngang, card thì không */
}

.lotto-card-id {
  font-size: 12px;
  color: var(--text-secondary, #888);
  font-weight: 400;
}

/* ── Action row ───────────────────────────────────────────────────────────── */
.lotto-action-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 8px;
}
.lotto-btn-draw {
  min-width: 160px;
  font-size: 16px;
  padding: 14px 24px;
}
.lotto-btn-claim {
  min-width: 180px;
  font-size: 16px;
  padding: 14px 24px;
  background: #34C759;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: background .15s, transform .1s;
}
.lotto-btn-claim:hover { background: #28a745; transform: translateY(-1px); }

/* ── Win overlay ──────────────────────────────────────────────────────────── */
.lotto-win-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lotto-fade-in .3s ease;
}
@keyframes lotto-fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.lotto-win-card {
  background: var(--card-bg, #fff);
  border-radius: 20px;
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: lotto-pop .4s ease;
}
.lotto-win-emoji { font-size: 64px; margin-bottom: 10px; }
.lotto-win-name  { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.lotto-win-cond  { font-size: 15px; color: var(--text-secondary, #888); margin-bottom: 20px; }

/* ── Caller request toast ─────────────────────────────────────────────────── */
.lotto-caller-request-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 8000;
  font-size: 14px;
  border: 1px solid var(--border-color, #e0e0e0);
}

/* ── Generic toast ────────────────────────────────────────────────────────── */
.lotto-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  z-index: 9000;
  white-space: nowrap;
  animation: lotto-toast-in .2s ease, lotto-toast-out .3s ease 2.7s forwards;
  pointer-events: none;
}
.lotto-toast-info  { background: rgba(50,50,60,.88); }
.lotto-toast-error { background: rgba(200,30,30,.9); }
@keyframes lotto-toast-in  { from { opacity:0; transform:translateX(-50%) translateY(10px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
@keyframes lotto-toast-out { from { opacity:1; } to { opacity:0; } }

/* ── Small buttons ────────────────────────────────────────────────────────── */
.btn-small {
  background: #0071E3;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.btn-small:hover { background: #005cbf; }
.btn-secondary {
  background: var(--card-bg2, #f2f2f7);
  color: var(--text-primary, #111);
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.btn-secondary:hover { background: var(--border-color, #e0e0e0); }

/* ── Dark mode support ────────────────────────────────────────────────────── */
html.dark .lotto-section,
html.dark .lotto-game-header {
  background: var(--card-bg, #1c1c1e);
  box-shadow: 0 1px 6px rgba(0,0,0,.25);
}
/* ── Dark mode — toàn bộ text & số rõ ràng ───────────────────────────────── */
html.dark .lotto-card-thumb { background: #2c2c2e; color: #eee; }
html.dark .lotto-card-thumb.my-card { color: #5eda82; }

/* Bản Tân Tân dark mode — giữ màu đỏ, tăng độ sáng chữ số */
html.dark .lotto-card-wrap { border-color: #ff3a5c; }
html.dark .lotto-card-header { background: #8a0018; color: #fff; }
html.dark .lotto-card-grid-body { background: #1c1c1e; }
html.dark .lotto-cell:not(.empty) { background: #c0002a; color: #fff; }
html.dark .lotto-cell.empty { background: #2c2c2e; }
html.dark .lotto-cell.drawn-available { background: #e07800; color: #111; }
html.dark .lotto-cell.marked { background: #1a6b28; color: #fff; }

/* Bảng số 1-90 dark mode — số chưa quay nhìn rõ */
html.dark .lotto-nb-cell { background: #2c2c2e; color: #ccc; }
html.dark .lotto-nb-cell.drawn {
  background: #d63030;
  color: #fff;
  box-shadow: 0 2px 6px rgba(200,0,0,.4);
}

/* Text các vùng khác */
html.dark .lotto-section-title { color: #aaa; }
html.dark .lotto-info-row { color: #bbb; }
html.dark .lotto-caller-info { color: #ffb733; }
html.dark .lotto-caller-badge { background: rgba(255,183,0,.15); color: #ffb733; }
html.dark .lotto-drawn-subtitle { color: rgba(255,255,255,.75); }
html.dark .lotto-room-id { color: #eee; }
html.dark .lotto-hint { color: #888; }
html.dark .lotto-start-hint { color: #888; }
html.dark .lotto-player-badge { background: #2c2c2e; color: #eee; }
html.dark .lotto-player-row { border-color: #3a3a3c; color: #eee; }
html.dark .lotto-board-toggle { color: #aaa; }

html.dark .lotto-win-card { background: #1c1c1e; color: #fff; }
html.dark .lotto-win-cond { color: #aaa; }
html.dark .btn-copy-link { background: #2c2c2e; color: #fff; }
html.dark .btn-secondary { background: #2c2c2e; color: #eee; border-color: #3a3a3c; }
html.dark .lotto-caller-request-toast { background: #2c2c2e; border-color: #3a3a3c; color: #eee; }
html.dark .lotto-radio { border-color: #3a3a3c; color: #eee; }
html.dark .lotto-radio.active { background: rgba(0,113,227,.2); color: #5ac8fa; border-color: #5ac8fa; }

/* ── QR Modal ─────────────────────────────────────────────────────────────── */
.lotto-qr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lotto-fade-in .2s ease;
}
.lotto-qr-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 22px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: lotto-pop .3s ease;
  position: relative;
  max-width: 300px;
  width: 90%;
}
.lotto-qr-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-secondary, #888);
  line-height: 1;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background .15s;
}
.lotto-qr-close:hover { background: var(--card-bg2, #f2f2f7); }
.lotto-qr-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #c0002a;
}
.lotto-qr-room {
  font-size: 13px;
  color: var(--text-secondary, #888);
  margin: 0 0 14px;
  letter-spacing: .5px;
}
#lotto-qr-canvas {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
#lotto-qr-canvas img,
#lotto-qr-canvas canvas {
  border-radius: 10px;
  border: 4px solid #c0002a;
}
.lotto-qr-hint {
  font-size: 12px;
  color: var(--text-secondary, #888);
  margin: 0 0 14px;
  line-height: 1.5;
}
.lotto-qr-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lotto-qr-copy {
  width: 100%;
  justify-content: center;
  font-weight: 600;
}
.lotto-qr-share-btn {
  width: 100%;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 12px;
  letter-spacing: .2px;
}
/* Dark mode QR */
html.dark .lotto-qr-card {
  background: #1c1c1e;
  color: #fff;
}
html.dark .lotto-qr-close:hover { background: #2c2c2e; }
html.dark .lotto-qr-copy { background: #2c2c2e; color: #eee; }
html.dark .lotto-board-toggle:hover { background: #2c2c2e; }

/* ── Voice bar ────────────────────────────────────────────────────────────── */
.lotto-voice-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg, #fff);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  flex-wrap: wrap;
}

/* Nút mic — 3 trạng thái */
.voice-mic-btn {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #e8e8ed;
  color: #333;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.voice-mic-btn:hover { transform: translateY(-1px); }
.voice-mic-btn.active {
  background: #c0002a;
  color: #fff;
  animation: mic-pulse 1.5s ease-in-out infinite;
}
.voice-mic-btn.muted {
  background: #ff9500;
  color: #fff;
}
@keyframes mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,0,42,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(192,0,42,0); }
}

/* Danh sách peer đang kết nối voice */
.voice-peer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.voice-peer-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: #e8e8ed;
  color: #333;
  white-space: nowrap;
}
.voice-peer-badge.speaking {
  background: #d4f0da;
  color: #1a6b2a;
}
.voice-peer-badge.muted {
  background: #ffeeba;
  color: #7a5200;
}

/* Dark mode voice */
html.dark .lotto-voice-bar {
  background: #1c1c1e;
}
html.dark .voice-mic-btn {
  background: #2c2c2e;
  color: #eee;
}
html.dark .voice-peer-badge {
  background: #2c2c2e;
  color: #eee;
}
html.dark .voice-peer-badge.speaking {
  background: #1a3d22;
  color: #6be680;
}
html.dark .voice-peer-badge.muted {
  background: #3d2e00;
  color: #ffd060;
}
