/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0f0e17;
  --surface:   #1a1928;
  --surface2:  #232238;
  --primary:   #ff6b6b;
  --primary2:  #ff8e53;
  --accent:    #ffd93d;
  --accent2:   #6bcb77;
  --purple:    #c77dff;
  --blue:      #4d96ff;
  --text:      #fffffe;
  --text-soft: #a7a5c0;
  --border:    rgba(255,255,255,0.08);
  --radius:    20px;
  --font-head: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ===== BACKGROUND BLOBS ===== */
.bg-blobs {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.blob1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; left: -150px;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob2 {
  width: 500px; height: 500px;
  background: var(--purple);
  bottom: -150px; right: -100px;
  animation: blobFloat 15s ease-in-out infinite reverse;
}
.blob3 {
  width: 400px; height: 400px;
  background: var(--accent);
  top: 40%; left: 40%;
  animation: blobFloat 10s ease-in-out infinite 3s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,30px) scale(0.95); }
}

/* ===== CONFETTI ===== */
.confetti-container {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}
.confetti-piece {
  position: absolute; top: -20px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ===== HEADER ===== */
header {
  flex-shrink: 0;
  position: relative;
  z-index: 200;
  background: rgba(15,14,23,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-title {
  display: flex; align-items: center; gap: 0.85rem;
}
.wheel-icon {
  font-size: 2.4rem;
  animation: spinSlow 8s linear infinite;
  display: block;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.header-sub {
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.1rem;
}

/* ===== SETTINGS GEAR ===== */
.settings-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 300;
}
.btn-gear {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.4s;
  color: var(--text);
}
.btn-gear:hover { background: rgba(255,255,255,0.13); }
.btn-gear.open  { transform: rotate(60deg); }

.settings-dropdown {
  position: fixed;
  background: var(--surface);
  border-radius: 18px;
  padding: 0.5rem;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1.5px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 9999;
}
.settings-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.settings-item {
  display: flex; align-items: center; gap: 0.85rem;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: none; background: none;
  border-radius: 12px;
  cursor: pointer; text-align: left;
  transition: background 0.15s;
}
.settings-item:hover { background: rgba(255,255,255,0.06); }
.settings-item.danger:hover { background: rgba(255,80,80,0.12); }
.si-icon { font-size: 1.3rem; flex-shrink: 0; }
.si-label { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: var(--text); }
.si-desc  { font-size: 0.75rem; color: var(--text-soft); margin-top: 1px; }
.settings-item.danger .si-label { color: #ff6b6b; }
.settings-divider { height: 1px; background: var(--border); margin: 0.3rem 0.5rem; }

.si-toggle {
  width: 38px; height: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.15);
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.2s;
}
.si-toggle::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.si-toggle.on { background: var(--accent2); }
.si-toggle.on::after { transform: translateX(16px); }

/* ===== MAIN LAYOUT ===== */
.app-main {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* ===== WHEEL SECTION ===== */
.wheel-section {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 40px rgba(255,107,107,0.25));
}
#wheelCanvas {
  display: block;
  border-radius: 50%;
  max-width: min(500px, calc(100vh - 180px));
  max-height: min(500px, calc(100vh - 180px));
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.8rem;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255,217,61,0.7), 0 2px 8px rgba(0,0,0,0.5);
  z-index: 10;
  line-height: 1;
  animation: pointerPulse 2s ease-in-out infinite;
}
@keyframes pointerPulse {
  0%,100% { filter: drop-shadow(0 0 6px rgba(255,217,61,0.6)); }
  50%      { filter: drop-shadow(0 0 18px rgba(255,217,61,0.9)); }
}
.wheel-center-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: 5px solid var(--bg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.4), 0 8px 30px rgba(255,107,107,0.5);
  transition: transform 0.15s, box-shadow 0.15s;
  z-index: 10;
}
.wheel-center-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 6px rgba(255,107,107,0.3), 0 12px 40px rgba(255,107,107,0.6);
}
.wheel-center-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}
.wheel-center-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.spin-label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ===== NAMES PANEL ===== */
.names-panel {
  width: 650px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between;
}
.panel-title {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 600;
  color: var(--text);
}
.name-count {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 20px;
  padding: 0.15rem 0.65rem;
  min-width: 28px;
  text-align: center;
}

/* PANEL CONTENT - TWO COLUMNS */
.panel-content {
  display: flex;
  gap: 1rem;
  min-height: 0;
  flex: 1;
}
.panel-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
  position: relative;
}
.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.column-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* ADD ROW */
.add-row {
  display: flex; gap: 0.5rem;
}
.add-row input {
  flex: 1;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.add-row input::placeholder { color: var(--text-soft); }
.add-row input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.2);
}
.btn-add {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(255,107,107,0.4);
  flex-shrink: 0;
}
.btn-add:hover { transform: scale(1.08); }
.btn-add:active { transform: scale(0.95); }

.btn-import {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(77,150,255,0.4);
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.btn-import:hover { transform: scale(1.08); }
.btn-import:active { transform: scale(0.95); }

.error-msg { color: var(--primary); font-size: 0.8rem; font-weight: 600; min-height: 1em; }

/* NAMES LIST */
.names-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding-right: 0.2rem;
}
.names-list::-webkit-scrollbar { width: 4px; }
.names-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* DRAG & DROP STYLES */
.panel-column.drag-over {
  background: rgba(77,150,255,0.1);
  border: 2px dashed rgba(77,150,255,0.7);
  border-radius: 10px;
  transition: all 0.2s;
  z-index: 5;
}
.panel-column.drag-over::before {
  content: '📂 Sleep je bestand hierheen';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blue);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  pointer-events: none;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 2px solid rgba(77,150,255,0.3);
}
.panel-column.drag-over::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(77,150,255,0.05);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.name-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  background: var(--surface2);
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  animation: slideIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.name-item:hover {
  border-color: var(--border);
}
.name-item.winner-highlight {
  border-color: var(--accent);
  background: rgba(255,217,61,0.1);
  box-shadow: 0 0 0 2px rgba(255,217,61,0.2);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* CHOSEN LIST */
.chosen-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding-right: 0.2rem;
}
.chosen-list::-webkit-scrollbar { width: 4px; }
.chosen-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.chosen-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255,217,61,0.1);
  border: 1.5px solid rgba(255,217,61,0.3);
  border-radius: 10px;
  animation: slideIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.number-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-reset-chosen {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}
.btn-reset-chosen:hover {
  background: rgba(255,107,107,0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(20deg);
}
.btn-reset-chosen:active { transform: scale(0.9) rotate(20deg); }

.name-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}
.name-text {
  flex: 1;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-remove {
  background: none; border: none;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.2s, background 0.15s;
  color: var(--text-soft);
  flex-shrink: 0;
}
.name-item:hover .btn-remove { opacity: 1; }
.btn-remove:hover { background: rgba(255,80,80,0.15); color: var(--primary); }

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.75rem;
  color: var(--text-soft);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.5;
}
.empty-icon { font-size: 2.5rem; opacity: 0.5; }

/* ===== WINNER OVERLAY ===== */
.winner-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.winner-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.winner-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 2px solid rgba(255,217,61,0.3);
  box-shadow: 0 0 80px rgba(255,217,61,0.2), 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
  min-width: 320px;
}
.winner-overlay.active .winner-card {
  transform: scale(1) translateY(0);
}
.wc-emoji {
  font-size: 4rem;
  line-height: 1;
  animation: popBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) both 0.1s;
}
@keyframes popBounce {
  from { transform: scale(0) rotate(-20deg); }
  to   { transform: scale(1) rotate(0deg); }
}
.wc-subtitle {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.wc-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255,217,61,0.5);
  margin: 0.5rem 0 1.5rem;
  animation: nameReveal 0.5s cubic-bezier(0.34,1.56,0.64,1) both 0.2s;
}
@keyframes nameReveal {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.btn-continue {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: none;
  border-radius: 14px;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(255,107,107,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,107,0.55);
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  width: min(440px, 92vw);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  border: 1.5px solid var(--border);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text);
}
.modal-text { font-size: 0.88rem; color: var(--text-soft); line-height: 1.5; }
.modal-text strong { color: var(--text); }
.modal-buttons { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 0.25rem; }

.btn-cancel {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body); font-weight: 600;
  cursor: pointer;
  color: var(--text-soft);
  transition: background 0.15s;
}
.btn-cancel:hover { background: rgba(255,255,255,0.08); }

.btn-save {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: none; border-radius: 10px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body); font-weight: 700;
  color: #fff; cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,107,107,0.3);
  transition: transform 0.15s;
}
.btn-save:hover { transform: translateY(-1px); }

/* DANGER MODAL */
.modal-danger { text-align: center; }
.danger-icon { font-size: 3rem; line-height: 1; }
.modal-danger h3 { font-size: 1.4rem; }
.btn-danger {
  background: linear-gradient(135deg, #e84040, #c0392b);
  border: none; border-radius: 10px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body); font-weight: 700;
  color: #fff; cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,64,64,0.3);
  transition: transform 0.15s;
}
.btn-danger:hover { transform: translateY(-1px); }

/* WARNING MODAL */
.modal-warning { text-align: center; }
.warning-icon { font-size: 3rem; line-height: 1; }
.modal-warning h3 { font-size: 1.4rem; }
.btn-warning {
  background: linear-gradient(135deg, #ffd93d, #f39c12);
  border: none; border-radius: 10px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body); font-weight: 700;
  color: #1a1928; cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,217,61,0.3);
  transition: transform 0.15s;
}
.btn-warning:hover { transform: translateY(-1px); }

/* DROP ZONE */
.drop-zone {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--surface2);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.drop-zone.drag-over {
  border-color: var(--primary);
  background: rgba(255,107,107,0.08);
}
.drop-zone-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.drop-icon  { font-size: 2.2rem; line-height: 1; }
.drop-label { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text); }
.drop-sub   { font-size: 0.78rem; color: var(--text-soft); }
.drop-types { font-size: 0.72rem; color: var(--text-soft); margin-top: 0.25rem; }

/* CSV EXAMPLE */
.csv-example {
  background: #0d0c18;
  color: #6bcb77;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(107,203,119,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  html, body { overflow: auto; height: auto; }
  .app-main { flex-direction: column; overflow: visible; padding: 1rem; }
  .names-panel { width: 100%; }
  .wheel-section { padding: 1rem 0; }
}
