:root {
  --shell-bg: #eef1f4;
  --panel-bg: #f7f8f9;
  --panel-edge: #cfd4da;
  --accent: #c46a4a;
  --accent-pressed: #ad5b3f;
  --text-primary: #1f2429;
  --text-muted: #5b6169;
  --label-bg: #e6e9ed;
  --label-border: #bfc5cc;
  --grid-gap: 1.4rem;
  --button-size: 110px;
  --bg-deep: #f4b285;
  --bg-shallow: #f9caa2;
  --bg-sun: rgba(255, 160, 86, 0.7);
  --bg-cool: rgba(126, 198, 210, 0.35);
  --bg-foam: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1200px 520px at 80% -10%, var(--bg-sun), transparent 60%),
    radial-gradient(800px 460px at 10% 20%, rgba(255, 241, 214, 0.55), transparent 55%),
    radial-gradient(700px 520px at 20% 90%, rgba(255, 160, 96, 0.32), transparent 60%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-shallow));
  color: var(--text-primary);
  padding: 2.75rem;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(520px 420px at 25% 35%, var(--bg-cool), transparent 70%),
    radial-gradient(620px 520px at 75% 65%, rgba(255, 168, 110, 0.5), transparent 72%),
    radial-gradient(420px 360px at 50% 80%, rgba(255, 255, 255, 0.32), transparent 70%);
  filter: blur(4px);
  animation: bg-drift 18s ease-in-out infinite;
  opacity: 0.9;
}

body::after {
  background:
    radial-gradient(closest-side at 20% 30%, var(--bg-foam), transparent 45%),
    radial-gradient(closest-side at 60% 40%, rgba(255, 255, 255, 0.5), transparent 55%),
    radial-gradient(closest-side at 80% 70%, rgba(255, 255, 255, 0.4), transparent 50%),
    repeating-radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.18) 0 6px, transparent 6px 18px);
  mix-blend-mode: screen;
  filter: blur(6px);
  opacity: 0.55;
  animation: caustics-shift 22s linear infinite;
}

@keyframes bg-drift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.01);
  }
}

@keyframes caustics-shift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-2%, 1%, 0) scale(1.01);
  }
}

@keyframes bg-warmth {
  0% {
    filter: saturate(1) hue-rotate(0deg);
  }
  50% {
    filter: saturate(1.08) hue-rotate(-6deg);
  }
  100% {
    filter: saturate(1.02) hue-rotate(3deg);
  }
}

.console-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
  width: 100%;
  flex: 1;
}

.console-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 0.5rem;
  width: 100%;
  overflow: visible;
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  overflow: visible;
}

.logo-orb {
  --logo-x: 0px;
  --logo-y: 0px;
  --logo-scale-x: 1;
  --logo-scale-y: 1;
  --logo-rot: 0deg;
  --logo-spin: 0rad;
  position: relative;
  transform: translate3d(var(--logo-x), var(--logo-y), 0)
    scaleX(var(--logo-scale-x)) scaleY(var(--logo-scale-y)) rotate(var(--logo-rot));
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: 0 18px 34px rgba(24, 28, 34, 0.2);
  display: grid;
  place-items: center;
  padding: 0;
  justify-self: center;
  cursor: grab;
  user-select: none;
  transition: box-shadow 220ms ease;
  z-index: 2;
  touch-action: none;
  will-change: transform;
  outline: none;
  appearance: none;
  overflow: visible;
}

.logo-orb:hover {
  box-shadow: 0 22px 42px rgba(24, 28, 34, 0.24), inset 0 3px 10px rgba(255, 255, 255, 0.8);
  transform: translate3d(var(--logo-x), var(--logo-y), 0)
    scaleX(calc(var(--logo-scale-x) * 1.04)) scaleY(calc(var(--logo-scale-y) * 1.04))
    rotate(var(--logo-rot));
}

.logo-orb.is-dragging {
  cursor: grabbing;
  transition: none;
  z-index: 20;
}

.logo-orb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  opacity: 0.9;
  transform: rotate(var(--logo-spin));
  filter: drop-shadow(0 6px 12px rgba(24, 28, 34, 0.22));
}

.header-title {
  margin: 0;
  font-family: 'Geo', 'Manrope', 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #951C27;
}

.master-controls {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: flex-end;
  justify-self: end;
}

.action-buttons {
  --orb-size: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 1.6rem;
  padding: 0;
}

.action-button {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  color: var(--text-muted);
  font-family: 'Space Grotesk', 'Inter', 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}

.orb {
  width: var(--orb-size);
  height: var(--orb-size);
  border-radius: 50%;
  --hue: var(--orb-hue, 190deg);
  --sat: var(--orb-sat, 50%);
  --hue2: calc(var(--hue) + 60deg);
  --sat2: calc(var(--sat) + 10%);
  --sat2-dim: calc(var(--sat2) - 15%);
  --clr: hsl(var(--hue) var(--sat) 90%);
  --clr2: var(--orb-top-color, hsl(var(--hue2) var(--sat2) 85%));
  --text: hsla(var(--hue), 70%, 10%, 0.9);
  --gradoffset: 45%;
  --gradgap: 30%;
  color: var(--text);
  background-color: var(--clr);
  background-image:
    linear-gradient(180deg, var(--clr2) var(--gradgap), transparent calc(100% - var(--gradgap)));
  background-repeat: no-repeat;
  background-position: center var(--gradoffset);
  background-size: 100% 200%;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow:
    0 -0.5em 0.5em transparent,
    0 0.5em 0.5em transparent,
    0 0.25em 0.3em -0.2em hsla(var(--hue), var(--sat), 50%, 0.46),
    0 0.25em 0.75em hsla(var(--hue), calc(var(--sat) - 10%), 40%, 0.3),
    0 10px 18px var(--orb-shadow);
  transition: transform 140ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    radial-gradient(ellipse, hsla(var(--hue), 100%, 90%, 0.8) 20%, transparent 50%),
    linear-gradient(90deg, hsl(0deg, 0%, 25%) -10%, transparent 30%, transparent 70%, hsl(0deg, 0%, 25%) 110%);
  box-shadow:
    inset 0 0.25em 0.75em hsla(0deg, 0%, 0%, 0.8),
    inset 0 -0.05em 0.2em rgba(255, 255, 255, 0.4),
    inset 0 -1px 3px hsla(var(--hue), 80%, 50%, 0.75);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: 200% 80%, cover;
  background-position: center 220%;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.orb::after {
  content: "";
  position: absolute;
  top: 6%;
  left: 10%;
  right: 10%;
  bottom: 22%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    hsla(var(--hue2), 100%, 90%, 0.9),
    hsla(var(--hue2), var(--sat2-dim), 50%, 0.75) 40%,
    transparent 80%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.orb-icon {
  width: 26%;
  height: 26%;
  border-radius: 4px;
  background: var(--orb-icon-color, rgba(255, 255, 255, 0.9));
  z-index: 1;
}

.orb-icon-plus {
  position: relative;
  background: transparent;
  border-radius: 0;
}

.orb-icon-plus::before,
.orb-icon-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  height: 18%;
  background: var(--orb-icon-color, rgba(255, 255, 255, 0.95));
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.orb-icon-plus::after {
  width: 18%;
  height: 90%;
}

.orb-icon-stop {
  border-radius: 0;
  width: 22%;
  height: 22%;
}

.orb-icon-settings {
  position: relative;
  border-radius: 50%;
  width: 34%;
  height: 34%;
  background: transparent;
  border: 2px solid var(--orb-icon-color, rgba(255, 255, 255, 0.9));
  box-sizing: border-box;
}

.orb-icon-settings::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: var(--orb-icon-color, rgba(255, 255, 255, 0.9));
  transform: translate(-50%, -50%);
  box-shadow:
    0 -170% 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9)),
    0 170% 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9)),
    -170% 0 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9)),
    170% 0 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9)),
    120% 120% 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9)),
    -120% 120% 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9)),
    -120% -120% 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9)),
    120% -120% 0 0 var(--orb-icon-color, rgba(255, 255, 255, 0.9));
}

.orb-label {
  display: block;
}

.action-button:hover .orb {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
}

.action-button:active .orb {
  transform: translateY(1px) scale(0.98);
  filter: brightness(0.98);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.22),
    inset 0 -6px 12px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 6px 12px var(--orb-shadow);
}

.action-button:focus-visible .orb {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.85),
    0 0 0 6px hsla(var(--hue), 80%, 70%, 0.35),
    0 12px 20px var(--orb-shadow);
}

.add-action {
  --orb-hue: 28deg;
  --orb-sat: 72%;
  --orb-top-color: #FFAD79;
  --orb-icon-color: #951C27;
  --orb-shadow: rgba(149, 28, 39, 0.32);
  color: #951C27;
}

.stop-action {
  --orb-hue: 8deg;
  --orb-sat: 78%;
  --hue2: 6deg;
  --sat2: 74%;
  --orb-top-color: #ff7c7c;
  --orb-icon-color: #b3182b;
  --orb-shadow: rgba(179, 24, 43, 0.32);
  color: #b3182b;
}

.settings-action {
  --orb-hue: 28deg;
  --orb-sat: 70%;
  --orb-top-color: #ffc08a;
  --orb-icon-color: #9a4d0000;
  --orb-shadow: rgba(154, 78, 0, 0.28);
  color: #9a4e00;
}

@media (max-width: 720px) {
  .action-buttons {
    --orb-size: 50px;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }

  .action-button {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
}

.console-panels {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.site-footer {
  max-width: 1200px;
  margin: auto auto 0;
  text-align: center;
  font-family: 'Geo', 'Manrope', 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: rgba(31, 36, 41, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.site-footer p {
  margin: 0;
}

.footer-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.footer-heart svg {
  width: 100%;
  height: 100%;
  fill: rgba(196, 106, 74, 0.7);
}

.panel {
  background: var(--panel-bg);
  border-radius: 6px;
  border: 1px solid var(--panel-edge);
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
}

.panel--channels {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.panel-title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--grid-gap);
}

.channel {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(200px 160px at 10% 0%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(180deg, rgba(255, 244, 234, 0.9), rgba(255, 212, 178, 0.85));
  border: 1px solid #e3b08c;
  border-radius: 15px;
  padding: 0.95rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -10px 20px rgba(255, 163, 108, 0.12),
    0 10px 18px rgba(176, 92, 46, 0.12);
  display: grid;
  gap: 0.75rem;
  align-items: center;
  transition: border-color 140ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.channel::before {
  content: "";
  position: absolute;
  inset: 6px 4px auto 4px;
  height: 38%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.channel:hover {
  border-color: #d79a74;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -12px 22px rgba(255, 148, 96, 0.18),
    0 12px 22px rgba(176, 92, 46, 0.18);
  transform: translateY(-2px);
}

.channel-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  gap: 0.5rem;
}

.channel-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  flex: 1;
  color: #7a3b1c;
}

.hotkey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff1e3, #ffd2b0);
  border: 1px solid #e1a57e;
  color: #7a3b1c;
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 4px 8px rgba(179, 98, 56, 0.18);
}

.channel .hotkey {
  display: none;
}

.hotkey:empty {
  visibility: hidden;
}

.channel-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.9), rgba(255, 215, 186, 0.85));
  border: 1px solid #e2a97f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.status-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f1b587;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.75),
    0 0 6px rgba(255, 156, 96, 0.5);
}

.play-button {
  --highlight-x: 50%;
  --highlight-y: 22%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffd8b9, #f2a46f);
  border: 1px solid #e39a6b;
  color: #6d3115;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  height: var(--button-size);
  width: 100%;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -10px 18px rgba(255, 126, 68, 0.28),
    0 12px 22px rgba(176, 92, 46, 0.2);
  transition: transform 120ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.play-button::before {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: inherit;
  background: radial-gradient(200px 140px at var(--highlight-x) var(--highlight-y), rgba(255, 255, 255, 0.6), transparent 62%);
  opacity: 0.6;
  pointer-events: none;
  transform: scale(1);
  transition: opacity 160ms ease, transform 220ms ease;
}

.play-button:hover {
  filter: brightness(1.02);
  border-color: #d98b5c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -12px 22px rgba(255, 126, 68, 0.32),
    0 14px 26px rgba(176, 92, 46, 0.28);
}

.play-button:active,
.playing .play-button {
  transform: translateY(2px) scale(0.985);
  border-color: #d88558;
  background: linear-gradient(180deg, #f7b586, #ea8d5b);
  box-shadow:
    inset 0 3px 6px rgba(168, 84, 38, 0.28),
    0 8px 14px rgba(176, 92, 46, 0.16);
  animation: press-pulse 220ms ease;
}

.play-button:active::before,
.playing .play-button::before {
  opacity: 0.45;
  transform: scale(0.97);
}

@keyframes press-pulse {
  0% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -10px 18px rgba(255, 126, 68, 0.26),
      0 12px 22px rgba(176, 92, 46, 0.2);
  }
  55% {
    box-shadow:
      inset 0 5px 10px rgba(168, 84, 38, 0.32),
      0 6px 10px rgba(176, 92, 46, 0.14);
  }
  100% {
    box-shadow:
      inset 0 3px 6px rgba(168, 84, 38, 0.28),
      0 8px 14px rgba(176, 92, 46, 0.16);
  }
}

.playing .status-led {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(196, 106, 74, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.add-form {
  display: grid;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.field span {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

input[type="text"],
input[type="url"] {
  padding: 0.75rem;
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid #c9cfd6;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

input:focus {
  outline: 2px solid rgba(196, 106, 74, 0.4);
  outline-offset: 2px;
}

.add-button {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #f2f4f6, #e1e5ea);
  color: var(--text-primary);
  border: 1px solid #c2c9d1;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 80ms ease, filter 120ms ease;
}

.add-button:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

.settings-form {
  display: grid;
  gap: 1.3rem;
  margin: 0;
}

.field--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.field--inline input {
  width: auto;
  margin-left: auto;
  transform: scale(1.1);
}

.field--stacked {
  margin: 0;
  padding: 0;
  border: none;
  display: grid;
  gap: 0.8rem;
}

.field--stacked legend {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--text-primary);
}

.choice input:disabled + span {
  opacity: 0.5;
}

.helper {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.helper-error {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 1.2em;
}

@media (max-width: 960px) {
  .console-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding: 1.75rem;
  }

  .console-shell {
    padding: 0;
  }

  .console-header {
    padding: 0;
  }

  .header-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .master-controls {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  :root {
    --button-size: 96px;
  }

  .logo-orb {
    width: 122px;
    height: 122px;
  }

  .logo-orb img {
    width: 100%;
    height: 100%;
  }

  .channel-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 20;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(233, 237, 242, 0.75);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(520px, 92vw);
  background: linear-gradient(180deg, #fbfcfd, #f1f3f6);
  border: 1px solid #cfd5dc;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.12);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.modal-close {
  background: transparent;
  border: 1px solid #c2c9d1;
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.modal-close:active {
  transform: translateY(1px);
}
