:root {
  --color-bg: #221b2a;
  --color-overlay: rgba(32, 26, 38, 0.58);
  --color-surface: rgba(43, 35, 51, 0.9);
  --color-surface-soft: rgba(37, 30, 45, 0.82);
  --color-surface-subtle: rgba(32, 26, 39, 0.78);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-muted: rgba(255, 255, 255, 0.05);
  --color-text: #f4edf3;
  --color-text-muted: rgba(244, 237, 243, 0.75);
  --color-text-subtle: rgba(244, 237, 243, 0.52);
  --color-accent: rgb(150, 30, 40);
  --color-accent-strong: rgb(150, 30, 40);
  --color-positive: #4cd964;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.48);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.42);
  --space-2xs: 0.35rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --transition-base: 220ms ease;
  --transition-slow: 360ms ease-out;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #120d17;
  color: var(--color-text);
  min-height: 100vh;
  background-image: url("bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(140deg, rgba(30, 23, 39, 0.92), rgba(22, 17, 30, 0.55));
  z-index: 0;
  pointer-events: none;
}

body.ready {
  overflow-y: auto;
}

body.ios-modal-open {
  overflow: hidden;
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  margin: 0 auto;
  opacity: 0;
  transition: opacity var(--transition-slow);
  position: relative;
  z-index: 1;
}

body.ready main {
  opacity: 1;
}

.page {
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.page__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: center;
  align-items: center;
}

.page__header--split {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: var(--space-md);
}

.page__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.035em;
}

.page__lead {
  margin: 0;
  max-width: 620px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.page__stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.page__grid {
  display: grid;
  gap: var(--space-lg);
}

.page__grid--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  backdrop-filter: blur(10px);
}

.card--soft {
  background: var(--color-surface-soft);
  border-color: var(--color-border-muted);
  box-shadow: var(--shadow-md);
}

.card--compact {
  padding: var(--space-lg);
}

.card__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

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

.card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.actions--center {
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
}

a.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
  box-shadow: var(--shadow-sm);
}

a.button:hover,
button:hover {
  background: var(--color-accent-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

a.button:active,
button:active {
  transform: translateY(0);
}

a.button:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

button:disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(242, 233, 236, 0.4);
  cursor: not-allowed;
  box-shadow: none;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: transparent;
  color: var(--color-text);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

form {
  display: grid;
  gap: var(--space-sm);
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.form-inline input {
  flex: 1 1 240px;
}

.form-inline button {
  flex: 0 0 auto;
}

label {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(9, 9, 14, 0.82);
  color: var(--color-text);
  font-size: 1rem;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 52, 58, 0.25);
}

.action-message {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  min-height: 1.25em;
}

.action-message--error {
  color: #ff7b7b;
}

.page__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--color-text-subtle);
}

.page__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

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

.key-value {
  background: var(--color-surface-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border-muted);
}

.key-value__label {
  margin: 0 0 var(--space-2xs);
  font-size: 0.9rem;
  color: var(--color-text-subtle);
}

.key-value__value {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.form-field input[type="number"] {
  width: 100%;
}

.form-field--checkbox {
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.form-actions {
  display: flex;
  align-items: flex-end;
  gap: var(--space-sm);
}

.muted {
  color: var(--color-text-subtle);
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(32, 26, 39, 0.9);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.table-scroll table {
  min-width: 540px;
  background: transparent;
  box-shadow: none;
}

.table-scroll--skinny {
  border: 1px solid var(--color-border-muted);
  background: transparent;
  box-shadow: none;
}

.table-scroll--skinny table {
  min-width: 360px;
}

thead th {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

em {
  color: var(--color-text-subtle);
  font-style: normal;
}

.table-empty td {
  text-align: center;
  padding: var(--space-sm);
}

#feedback-form,
#add-url-form,
#problem-form {
  margin-top: var(--space-md);
}

#feedback-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

#feedback-input,
#problem-input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-text);
  resize: vertical;
}

#feedback-form button {
  align-self: flex-start;
}

#feedback-message,
#url-message,
#problem-message {
  color: var(--color-accent);
  font-weight: 600;
  min-height: 1.2em;
}

#feedback-input:focus,
#problem-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.page__section-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.game-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

details {
  border-radius: var(--radius-lg);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border-muted);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-md);
  transition:
    border-color var(--transition-base),
    transform var(--transition-base);
}

details + details {
  margin-top: var(--space-md);
}

details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  font-size: 1.08rem;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "▾";
  font-size: 0.85rem;
  color: var(--color-text-subtle);
  transition: transform var(--transition-base);
}

details[open] summary::after {
  transform: rotate(-180deg);
}

details[open] {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.game-card__body {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.game-card__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
}

.game-card__frame {
  position: relative;
  width: clamp(260px, calc(100vw - 48px), 420px);
  min-width: 0;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #050406;
  max-height: 70vh;
}

.game-card__frame--flappy {
  aspect-ratio: 5 / 7;
  max-width: min(400px, 100vw - 48px);
  max-height: min(70vh, 560px);
}

.game-card__frame--2048 {
  aspect-ratio: 3 / 4;
  max-width: min(360px, 100vw - 48px);
  max-height: min(70vh, 480px);
}

.game-card__frame--dino {
  aspect-ratio: 4 / 3;
  max-width: min(400px, 100vw - 48px);
  max-height: min(70vh, 300px);
}

.game-card__frame--tower {
  aspect-ratio: 5 / 6;
  max-width: min(400px, 100vw - 48px);
  max-height: min(70vh, 480px);
}

.game-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-card__table table {
  margin: 0;
}

.game-card__table thead th {
  background: rgba(255, 255, 255, 0.04);
}

.game-card__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.onboarding-footer {
  text-align: center;
  color: var(--color-text-subtle);
  font-size: 0.95rem;
}

#requestGame {
  animation: request-pulse 1.4s ease-in-out 0s 6 alternate;
}

#requestGame:hover {
  transform: translateY(-1px) scale(1.03);
}

@keyframes request-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-sm);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 22px rgba(201, 52, 58, 0.65);
  }
}

.stopped {
  opacity: 0.65;
}

#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  overflow: hidden;
}

.triangle {
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--color-accent);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 1.2s ease-in-out;
}

.triangle.left {
  left: 0;
}

.triangle.right {
  right: 0;
  transform: rotateY(180deg);
}

.splash-text {
  z-index: 1;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

body.ready .triangle.left {
  transform: translateX(-100%);
}

body.ready .triangle.right {
  transform: translateX(100%) rotateY(180deg);
}

.fireworks-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.fireworks-overlay.hidden {
  opacity: 0;
}

.fireworks-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ios-modal[hidden] {
  display: none;
}

.ios-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.ios-modal--visible {
  pointer-events: auto;
}

.ios-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 200ms ease;
}

.ios-modal--visible .ios-modal__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.ios-modal__sheet {
  position: relative;
  width: min(420px, calc(100% - 32px));
  margin: 16px;
  background: rgba(28, 28, 30, 0.9);
  border-radius: 20px;
  padding: 24px 20px 12px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(40px);
  transition:
    transform 250ms ease,
    opacity 250ms ease;
  opacity: 0;
  pointer-events: auto;
}

.ios-modal--visible .ios-modal__sheet {
  transform: translateY(0);
  opacity: 1;
}

.ios-modal__grip {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 16px;
}

.ios-modal__title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: #f9f9f9;
}

.ios-modal__message {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.45;
}

.ios-modal__message--success {
  color: var(--color-positive);
  font-weight: 600;
}

.ios-modal__actions {
  display: grid;
  gap: 12px;
}

.ios-modal__button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform 120ms ease,
    opacity 120ms ease;
}

.ios-modal__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ios-modal__button--primary {
  background: #007aff;
  color: #fff;
}

.ios-modal__button--ghost {
  background: rgba(118, 118, 128, 0.16);
  color: #fff;
}

.ios-modal__button:active {
  transform: scale(0.98);
}

.chart-controls {
  margin-bottom: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  background: var(--color-surface-soft);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-muted);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.chart-control {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.95rem;
}

.chart-control span {
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.chart-control select {
  padding: 0.55rem 0.75rem;
}

.chart-control_toggle {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-sm);
}

.chart-control_toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

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

.chart-stat {
  background: var(--color-surface-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border-muted);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-height: 96px;
}

.chart-stat span {
  font-size: 0.82rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chart-stat strong {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.01em;
}

.chart-stat small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.chart-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.chart-area {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-subtle);
  border: 1px solid var(--color-border-muted);
  box-shadow: var(--shadow-md);
}

.chart-area canvas {
  width: 100% !important;
  height: 100% !important;
}

.auth-page {
  align-items: center;
}

.auth-card {
  width: min(420px, 100%);
  margin: 0 auto;
}

.auth-card form {
  margin-top: var(--space-md);
}

.page--article {
  width: min(720px, 100%);
  margin: 0 auto;
  gap: var(--space-lg);
}

.page--article .card {
  gap: var(--space-lg);
}

.page--article h1,
.page--article h2 {
  margin: 0;
  color: var(--color-text);
}

.page--article h2 {
  font-size: 1.25rem;
}

.page--article p {
  margin: 0;
  color: var(--color-text-muted);
}

.page--article .step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.page--article .step + .step {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-muted);
}

.page--article img {
  display: block;
  width: min(240px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.page--article .button {
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  main {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }

  .card {
    padding: var(--space-lg);
  }

  details {
    padding: var(--space-md);
  }

  a.button,
  button {
    width: 100%;
  }

  .status-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .table-scroll--responsive {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow-x: visible;
  }

  .table-scroll--responsive table {
    min-width: 0;
  }

  .table-scroll--responsive table,
  .table-scroll--responsive thead,
  .table-scroll--responsive tbody,
  .table-scroll--responsive th,
  .table-scroll--responsive td,
  .table-scroll--responsive tr {
    display: block;
    width: 100%;
  }

  .table-scroll--responsive thead {
    display: none;
  }

  .table-scroll--responsive tbody tr {
    margin-bottom: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-muted);
    background: var(--color-surface-soft);
    box-shadow: var(--shadow-sm);
  }

  .table-scroll--responsive tbody tr:last-child {
    margin-bottom: 0;
  }

  .table-scroll--responsive tbody td {
    padding: var(--space-xs) 0;
    border-bottom: none;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-sm);
  }

  .table-scroll--responsive tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-text-muted);
  }

  .table-scroll--responsive tbody td:first-child {
    padding-top: 0;
  }

  .table-scroll--responsive tbody td:last-child {
    padding-bottom: 0;
  }

  .table-scroll--responsive tbody td[colspan] {
    display: block;
    text-align: center;
    color: var(--color-text-muted);
  }
}

/* Toggle switch for target admin */
.form-field__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.form-field--toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xs);
}

.switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 32px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: var(--transition-base);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.switch__slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-text);
  transition: var(--transition-base);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.switch input:checked + .switch__slider {
  background-color: rgba(150, 30, 40, 0.35);
  box-shadow: inset 0 0 0 1px var(--color-accent);
}

.switch input:checked + .switch__slider::before {
  transform: translateX(26px);
  background-color: var(--color-accent);
}

.switch__text {
  font-weight: 600;
  color: var(--color-text);
}
