:root {
  color-scheme: dark;
  --bg: #020309;
  --panel: rgba(8, 10, 22, 0.84);
  --panel-strong: rgba(5, 7, 16, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.45);
  --muted-strong: rgba(255, 255, 255, 0.66);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Helvetica Neue",
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

#app {
  width: 100vw;
  height: 100vh;
}

.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 280ms ease;
}

.app-shell,
.galaxy-shell,
.admin-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.galaxy-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(35, 43, 97, 0.3), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(14, 17, 43, 0.8), rgba(2, 3, 9, 1) 70%);
  user-select: none;
}

.galaxy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.galaxy-canvas.is-grabbing {
  cursor: grabbing;
}

.hud-actions {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hud-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-soft);
  color: rgba(255, 255, 255, 0.86);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.hud-button--small {
  min-height: 40px;
  padding: 0 14px;
}

.hud-button--reset {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
}

.hud-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
}

.hud-button__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  font-size: 15px;
}

.hud-button__text {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.sky-title {
  position: fixed;
  left: 50%;
  top: 10px;
  z-index: 20;
  transform: translateX(-50%);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

.loading-pill {
  position: fixed;
  left: 50%;
  top: 34px;
  z-index: 20;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(7, 10, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  backdrop-filter: blur(18px);
}

.loading-pill[hidden] {
  display: none;
}

.loading-spinner {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.8);
  animation: spin 0.7s linear infinite;
}

.loading-pill__text {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.star-count {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 20;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.layer-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}

.modal-backdrop,
.overlay-backdrop,
.wish-backdrop,
.about-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.modal-panel,
.wish-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(95vh, 820px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(3, 5, 14, 0.92);
  box-shadow: var(--shadow);
  scrollbar-width: thin;
}

.modal-panel {
  padding: 26px 18px 26px;
}

.wish-panel {
  width: min(100%, 420px);
  padding: 26px 26px 30px;
  text-align: center;
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  animation: wishCardIn 280ms ease forwards;
}

.about-panel {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 24px 24px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(3, 5, 14, 0.92);
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.about-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.about-line + .about-line {
  margin-top: 14px;
}

.close-button {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.42);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
}

.progress-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}

.progress-step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.progress-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.progress-dot.is-complete {
  background: rgba(255, 255, 255, 0.42);
}

.progress-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stage {
  padding: 18px 2px 0;
}

.stage-heading {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.94);
}

.stage-subheading {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.error-banner {
  margin: 18px auto 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 103, 103, 0.35);
  background: rgba(255, 89, 89, 0.16);
  color: rgba(255, 205, 205, 0.9);
  font-size: 13px;
  text-align: center;
}

.draw-board {
  margin: 18px auto 0;
  width: min(100%, 300px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.draw-canvas {
  width: 100%;
  aspect-ratio: 1;
  cursor: crosshair;
  touch-action: none;
}

.palette-row {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.color-chip {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.color-chip:not(.is-selected) {
  opacity: 0.54;
}

.color-chip:hover {
  opacity: 0.84;
}

.color-chip.is-selected {
  transform: scale(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.64),
    0 0 0 4px rgba(0, 0, 0, 0.44),
    0 0 20px color-mix(in srgb, currentColor 35%, transparent);
}

.slider-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.field-label-inline,
.field-label {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.range-input {
  width: 100%;
  accent-color: #ffffff;
}

.brush-preview {
  border-radius: 999px;
  opacity: 0.82;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.46);
}

.button-ghost:hover:not(:disabled) {
  color: rgba(255, 255, 255, 0.74);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.button-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.button-danger {
  border: 1px solid rgba(255, 87, 87, 0.3);
  background: rgba(255, 87, 87, 0.16);
  color: rgba(255, 208, 208, 0.92);
}

.icon-button {
  width: 40px;
  min-width: 40px;
  padding: 0;
}

.star-preview-wrap {
  display: flex;
  justify-content: center;
  padding: 12px 0 2px;
}

.star-preview {
  width: 82px;
  height: 82px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: previewPulse 2.2s ease-in-out infinite;
}

.form-section {
  margin-top: 16px;
}

.field-label {
  display: block;
  margin-bottom: 10px;
}

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

.text-input,
.textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.text-input {
  height: 46px;
  padding: 0 14px;
}

.textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}

.text-input::placeholder,
.textarea::placeholder {
  color: rgba(255, 255, 255, 0.24);
}

.text-input:focus,
.textarea:focus {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.char-count {
  margin-top: 6px;
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.24);
}

.slingshot-area {
  position: relative;
  margin-top: 16px;
  width: 100%;
  --charge-scale: 1;
  --charge-glow: 0.22;
  min-height: 320px;
  height: 52vh;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(8, 11, 27, 0.7) 40%, rgba(0, 0, 0, 0.98)),
    radial-gradient(circle at 50% 35%, rgba(51, 60, 122, 0.22), transparent 50%);
  cursor: pointer;
  touch-action: none;
}

.launch-charge-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(108, 120, 255, calc(var(--charge-glow) * 0.42)), transparent 42%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, calc(var(--charge-glow) * 0.12)), transparent 58%);
  transform: scale(var(--charge-scale));
  transform-origin: center;
  transition:
    transform 140ms ease,
    opacity 140ms ease,
    filter 140ms ease;
  will-change: transform, filter;
}

.launch-sparkfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(var(--charge-scale));
  transform-origin: center;
  transition:
    transform 140ms ease,
    filter 140ms ease,
    opacity 140ms ease;
  will-change: transform, filter;
}

.slingshot-area.is-charged .launch-charge-bg,
.slingshot-area.is-charged .launch-sparkfield {
  animation: chargedShake 0.11s linear infinite;
  filter: brightness(calc(1 + var(--charge-glow)));
}

.launch-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: twinkle 2s ease-in-out infinite alternate;
}

.launch-star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: filter 120ms ease;
}

.power-pill {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 5, 16, 0.72);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  pointer-events: none;
}

.launch-instructions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  text-align: center;
  pointer-events: none;
}

.launch-instructions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 20px;
  font-weight: 500;
}

.scroll-indicator {
  width: 34px;
  height: 52px;
  margin: 14px auto 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 9px;
}

.scroll-indicator__dot {
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  animation: bounce 1.2s ease-in-out infinite;
}

.overlay-backdrop {
  background: #000;
  backdrop-filter: none;
  padding: 0;
}

.launch-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 39, 82, 0.2), transparent 34%),
    #000;
  isolation: isolate;
}

.launch-overlay__scene {
  position: absolute;
  inset: 0;
}

.launch-overlay__scene.is-shaking {
  animation: screenShake 0.06s ease-in-out infinite;
}

.launch-overlay__sky {
  position: absolute;
  inset: 0;
}

.launch-overlay__streak {
  position: absolute;
  width: 2px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(210, 226, 255, 0.45), rgba(255, 255, 255, 0.94));
  filter: blur(0.4px) drop-shadow(0 0 4px rgba(255, 255, 255, 0.85));
}

.launch-overlay__star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation:
    overlayGrow 2.5s ease-out forwards,
    overlayShake 0.08s ease-in-out infinite;
}

.launch-overlay__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 8%, rgba(0, 0, 0, 0.14) 34%, rgba(0, 0, 0, 0.62) 100%);
}

.launch-overlay__footer {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.wish-star {
  width: 68px;
  height: 68px;
  margin: 4px auto 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: float 2.4s ease-in-out infinite;
}

.wish-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.7;
}

.wish-meta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-shell {
  overflow: auto;
  background:
    radial-gradient(circle at 50% 10%, rgba(40, 55, 120, 0.24), transparent 25%),
    linear-gradient(180deg, rgba(5, 8, 18, 1), rgba(2, 4, 10, 1));
}

.admin-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 18px 48px;
}

.admin-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

.admin-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 9, 22, 0.88);
  box-shadow: var(--shadow);
  padding: 26px;
}

.admin-login {
  max-width: 420px;
  margin: 10vh auto 0;
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-row:first-of-type {
  border-top: 0;
}

.admin-row__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.admin-row__img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

.admin-row__body {
  min-width: 0;
}

.admin-row__title {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.94);
}

.admin-row__wish,
.admin-row__meta {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.admin-row__wish {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pager {
  display: flex;
  align-items: center;
  gap: 10px;
}

.empty-state {
  color: rgba(255, 255, 255, 0.48);
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes previewPulse {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.2;
    transform: scale(0.85);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.18);
  }
}

@keyframes screenShake {
  0% {
    transform: translate(-2px, -2px);
  }
  25% {
    transform: translate(2px, -1px);
  }
  50% {
    transform: translate(-1px, 2px);
  }
  75% {
    transform: translate(2px, 2px);
  }
  100% {
    transform: translate(-2px, -2px);
  }
}

@keyframes chargedShake {
  0% {
    transform: translate(-2px, -2px) scale(var(--charge-scale));
  }
  25% {
    transform: translate(2px, -1px) scale(calc(var(--charge-scale) + 0.015));
  }
  50% {
    transform: translate(-1px, 2px) scale(calc(var(--charge-scale) + 0.03));
  }
  75% {
    transform: translate(2px, 1px) scale(calc(var(--charge-scale) + 0.015));
  }
  100% {
    transform: translate(-2px, -2px) scale(var(--charge-scale));
  }
}

@keyframes overlayGrow {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.28);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes overlayShake {
  0% {
    margin-left: -4px;
    margin-top: -3px;
  }
  25% {
    margin-left: 4px;
    margin-top: 2px;
  }
  50% {
    margin-left: -3px;
    margin-top: 4px;
  }
  75% {
    margin-left: 3px;
    margin-top: -4px;
  }
  100% {
    margin-left: -4px;
    margin-top: -3px;
  }
}

@keyframes wishCardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .hud-button {
    padding: 0 14px;
  }

  .hud-button__text {
    display: none;
  }

  .hud-button--small .hud-button__text {
    display: inline;
  }

  .hud-actions {
    gap: 8px;
  }

  .hud-button--reset {
    right: 12px;
    bottom: 12px;
  }

  .sky-title {
    top: 8px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .loading-pill {
    top: 30px;
  }

  .modal-panel {
    width: min(100%, calc(100vw - 16px));
    padding: 24px 14px 22px;
    border-radius: 22px;
  }

  .wish-panel {
    width: min(100%, calc(100vw - 24px));
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .slingshot-area {
    min-height: 300px;
    height: 50vh;
  }

  .launch-star {
    width: 150px;
    height: 150px;
  }

  .launch-instructions p {
    font-size: 16px;
  }

  .launch-overlay__footer {
    bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .power-pill {
    padding: 8px 15px;
    font-size: 15px;
  }

  .admin-wrap {
    padding-top: 20px;
  }

  .admin-row {
    align-items: flex-start;
  }

  .admin-row__left {
    align-items: flex-start;
  }
}
