:root {
  --green-900: #173a2a;
  --green-700: #2f6b4f;
  --green-500: #3f8f5f;
  --green-300: #9ccf9c;
  --cream: #faf9f4;
  --ink: #26362d;
  --ink-soft: #65746b;
  --link: #2f7c9f;
  --shadow: 0 12px 32px rgba(20, 45, 30, 0.16);
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Geist", system-ui, sans-serif;
  color: var(--ink);
  background: #bfe3ff;
}

.app {
  display: flex;
  width: 100%;
  height: 100%;
}

.viewport {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #bfe3ff;
}

#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%3E%3Ccircle%20cx='16'%20cy='16'%20r='12'%20fill='rgba(255,255,255,0.4)'/%3E%3Ccircle%20cx='16'%20cy='16'%20r='12'%20fill='none'%20stroke='%232f6b4f'%20stroke-width='1.5'%20opacity='0.85'/%3E%3Cpath%20d='M16%2023%20L16%2015'%20stroke='%235b3a1e'%20stroke-width='2'%20stroke-linecap='round'/%3E%3Cpath%20d='M16%2015%20C12%2015%2010%2011%2010%209%20C14%209%2016%2012%2016%2015'%20fill='%233f8f5f'/%3E%3Cpath%20d='M16%2015%20C20%2015%2022%2011%2022%209%20C18%209%2016%2012%2016%2015'%20fill='%232f6b4f'/%3E%3C/svg%3E") 16 20, crosshair;
}

.hud {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.hud.top-left {
  top: 18px;
  left: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.brand-mark {
  color: var(--green-500);
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
}

.hint {
  position: absolute;
  z-index: 10;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(34, 51, 42, 0.85);
  color: #eef7ea;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

.sidebar {
  width: 26%;
  min-width: 280px;
  max-width: 460px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #f2f8ee 0%, var(--cream) 240px);
  border-left: 1px solid #e6ecdf;
  padding: 22px 20px 26px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-stats {
  display: flex;
  gap: 10px;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e6ecdf;
  padding: 10px 12px;
  border-radius: 13px;
  box-shadow: 0 4px 10px rgba(20, 45, 30, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(20, 45, 30, 0.1);
}

.stat-icon {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num {
  font-weight: 800;
  font-size: 19px;
  color: var(--green-700);
  line-height: 1.1;
}

.stat-label {
  font-size: 10px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.live-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--green-500);
  padding: 3px 8px;
  border-radius: 999px;
}

.live-sep {
  width: 1px;
  height: 16px;
  background: rgba(38, 54, 45, 0.16);
}

.live-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-700);
}

.live-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 143, 95, 0.55); }
  50% { box-shadow: 0 0 0 7px rgba(63, 143, 95, 0); }
}

.hud.bottom-left {
  bottom: 22px;
  left: 22px;
}

.grove-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.grove-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.grove-icon {
  font-size: 15px;
  line-height: 1;
}

.grove-num {
  font-weight: 800;
  font-size: 15px;
  color: var(--green-700);
}

.grove-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
}

.grove-sep {
  width: 1px;
  height: 18px;
  background: rgba(38, 54, 45, 0.16);
}

.lb-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2px 10px;
}

.lb-header span:first-child {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink);
}

.lb-header-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
}

.leaderboard {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.lb-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 6px 12px;
  transition: transform 0.15s ease;
}

.lb-item:hover {
  transform: translateX(2px);
}

.lb-clickable {
  cursor: pointer;
}

.lb-item.top {
  border-width: 2px;
  padding-top: 11px;
}

.lb-item.rank-1 {
  border-color: #e6c14f;
}

.lb-item.rank-2 {
  border-color: #b9c0c9;
}

.lb-item.rank-3 {
  border-color: #cd8c5a;
}

.lb-item.top + .lb-item.top {
  margin-top: 6px;
}

.lb-dot {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.lb-favicon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 6px;
}

.lb-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lb-url {
  display: block;
  min-width: 0;
  font-weight: 700;
  font-size: 14.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.lb-url {
  color: var(--ink);
  text-decoration: none;
}

.lb-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.lb-meta {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
}

.lb-clicks {
  color: #d24a2b;
  font-weight: 800;
}

.lb-item.elder {
  background: linear-gradient(135deg, #fff3cd, #ffe39a);
  border-color: #e6b93f;
  box-shadow: 0 8px 20px rgba(200, 150, 30, 0.22);
  padding-top: 11px;
}

.lb-item.elder:hover {
  border-color: #d9a92a;
  box-shadow: 0 10px 24px rgba(200, 150, 30, 0.3);
}

.lb-elder-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.lb-bid {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: #5a3d08;
  background: linear-gradient(135deg, #f0c14b, #d99a1b);
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(217, 154, 27, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.lb-bid:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(217, 154, 27, 0.4);
}

.lb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 30px 20px;
  border: 1.5px dashed #cfddc6;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.lb-empty-icon {
  font-size: 34px;
  line-height: 1;
}

.lb-empty-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}

.lb-empty-text {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 220px;
}

.lb-empty-cta {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(47, 107, 79, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lb-empty-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(47, 107, 79, 0.38);
}

.tooltip {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  background: rgba(34, 51, 42, 0.92);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transform: translate(14px, 14px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}

.tt-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  max-width: 240px;
}

.tt-title {
  font-weight: 700;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tt-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(20, 40, 28, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fade 0.2s ease;
}

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

.modal {
  background: var(--cream);
  width: 100%;
  max-width: 440px;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  animation: pop 0.22s ease;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

@keyframes pop {
  from { transform: translateY(14px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.modal-head h2 {
  font-size: 22px;
  font-weight: 800;
}

.close {
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--ink-soft);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.modal-sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 18px;
}

.tree-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.tree-option {
  border: 2px solid #e4e9e0;
  background: #fff;
  border-radius: 16px;
  padding: 14px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.tree-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20, 45, 30, 0.12);
}

.tree-option.selected {
  border-color: var(--green-500);
  background: #f0f9ec;
  box-shadow: 0 0 0 3px rgba(69, 160, 73, 0.18);
}

.tree-option .emoji {
  font-size: 30px;
  line-height: 1;
}

.tree-option .name {
  font-weight: 700;
  font-size: 14px;
}

.tree-option .price {
  font-size: 13px;
  color: var(--green-700);
  font-weight: 700;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field > span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
}

.field input {
  border: 2px solid #e4e9e0;
  border-radius: 12px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border 0.15s ease;
}

.field input:focus {
  border-color: var(--green-500);
}

.qty-big {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.qty-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.qty-value {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--green-700);
  text-align: center;
}

.qty-label {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.qty-presets {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

.qty-preset {
  border: 1px solid #e4e9e0;
  background: #fff;
  border-radius: 8px;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-soft);
}

.qty-preset:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}

.qty-preset.active {
  border-color: var(--green-700);
  background: var(--green-700);
  color: #fff;
}

.impact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eef7ec;
  border: 1px solid #d5e8cf;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 14px;
}

.impact-icon {
  font-size: 18px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 6px 0 16px;
}

.price {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-700);
}

.details {
  background: #f6f6f1;
  border: 1px solid #ecece2;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.details-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.details .field {
  margin-bottom: 0;
}

.details-row .color-field {
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-row .link-field {
  flex: 1;
  min-width: 0;
}

.details .field > span em {
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.link-details {
  margin-top: 0;
}

.link-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.link-head-icon {
  font-size: 18px;
  line-height: 1;
}

.link-head-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-head-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.link-head-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink-soft);
}

.link-head-sub {
  font-size: 11px;
  color: var(--ink-soft);
}

.link-head .color-field {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.color-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
}

.link-details .field {
  margin-bottom: 12px;
}

.link-details .field:last-child {
  margin-bottom: 0;
}

.field textarea {
  border: 2px solid #e4e9e0;
  border-radius: 12px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  resize: vertical;
  transition: border 0.15s ease;
}

.field textarea:focus {
  border-color: var(--green-500);
}

.custom-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  border: 0;
  padding: 0;
  pointer-events: none;
}

.color-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #e4e9e0;
  cursor: pointer;
  padding: 0;
  background: var(--green-500);
  box-shadow: inset 0 0 0 2px #fff;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  animation: color-pulse 2.4s ease-in-out infinite;
}

.color-circle:hover {
  transform: scale(1.08);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 3px rgba(63, 143, 95, 0.25);
}

@keyframes color-pulse {
  0%, 100% { box-shadow: inset 0 0 0 2px #fff, 0 0 0 0 rgba(63, 143, 95, 0.35); }
  50% { box-shadow: inset 0 0 0 2px #fff, 0 0 0 5px rgba(63, 143, 95, 0); }
}

.plant-modal .modal-actions .btn.primary {
  flex: 1;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn.primary {
  background: var(--green-500);
  color: #fff;
}

.btn.primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--ink-soft);
}

.btn.ghost:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.card-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.chip {
  font-size: 20px;
  letter-spacing: -2px;
}

.card-number {
  font-weight: 700;
  letter-spacing: 1px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0f9ec;
  border: 2px solid #dbeed3;
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 16px;
  transition: background 0.15s ease;
}

.link-card:hover {
  background: #e6f4df;
}

.link-icon {
  font-size: 18px;
}

.link-favicon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: block;
}

.field input[type="color"] {
  height: 44px;
  padding: 5px;
  cursor: pointer;
  background: #fff;
}

.link-url {
  flex: 1;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--link);
}

.link-go {
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.success-modal {
  text-align: center;
}

.share-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(20, 45, 30, 0.15);
  margin-bottom: 14px;
}

.share-card img {
  display: block;
  width: 100%;
  height: auto;
}

.share-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.share-actions .btn {
  flex: 1;
}

.success-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.3s ease;
}

.toast {
  position: fixed;
  z-index: 40;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(34, 51, 42, 0.95);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  animation: pop 0.25s ease;
}

.elder-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff8e1, #ffedbf);
  border: 1px solid #f0d58a;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 6px 14px rgba(180, 140, 40, 0.1);
}

.elder-icon {
  font-size: 22px;
}

.elder-text {
  font-weight: 700;
  font-size: 13px;
  color: #7a5b1e;
}

.elder-text a {
  color: var(--link);
  text-decoration: none;
}

.elder-text a:hover {
  text-decoration: underline;
}

.impact-note {
  font-size: 12px;
  color: var(--green-700);
  line-height: 1.45;
  background: #eef7ec;
  border: 1px solid #d5e8cf;
  border-radius: 12px;
  padding: 11px 13px;
  margin-top: auto;
}

.claim-note {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  color: #b98b2a;
  font-weight: 700;
}

@media (max-width: 760px) {
  .app { flex-direction: column; }
  .viewport { flex: 1; }
  .sidebar {
    width: 100%;
    height: 40%;
    flex-shrink: 0;
    border-left: none;
    border-top: 1px solid #e6ecdf;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .lb-header { width: 100%; }
  .leaderboard { width: 100%; }
}
