/* ============================================================
   Champions Battle — COMPONENT STYLES
   Tayyor AI Liquid Glass Design System
   ============================================================ */

/* ===== Liquid Glass Cards ===== */
.card, .glass-card {
  position: relative;
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--rim-top), var(--shadow-card);
  padding: var(--space-4);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  overflow: hidden;
}

.card:hover, .glass-card:hover {
  background: var(--glass-fill-hover);
  border-color: var(--glass-rim);
  box-shadow: 0 12px 32px rgba(6,7,14,.55), var(--rim-top);
}

.card:active, .glass-card:active {
  transform: scale(0.99);
}

.card-glow::before, .glass-card-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(79,70,229,.14) 0%, rgba(6,182,212,.08) 55%, transparent 100%);
  pointer-events: none;
}

.glass-card-sm {
  position: relative;
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--rim-top), var(--shadow-sm);
  padding: var(--space-3);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}

/* ===== Buttons (Tayyor AI Style) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-button);
  padding: 0 var(--space-5);
  height: var(--height-md);
  font-size: 14.5px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--text-on-brand);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--shadow-btn), var(--rim-top);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-sheen);
  pointer-events: none;
}

.btn-secondary {
  background: var(--glass-fill-strong);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  box-shadow: var(--rim-top);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.16);
  border-color: var(--glass-rim);
}

.btn-fav-active {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  box-shadow: 0 4px 16px rgba(245,158,11,.45), var(--rim-top) !important;
}

.back-btn.is-fav {
  background: rgba(245,158,11,.18) !important;
  border-color: rgba(245,158,11,.55) !important;
  color: #F59E0B !important;
  box-shadow: 0 0 16px rgba(245,158,11,.4), var(--rim-top) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0 var(--space-3);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--glass-fill);
}

.btn-sm {
  height: var(--height-sm);
  font-size: 13px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-md);
}

.btn-lg {
  height: var(--height-lg);
  font-size: 16px;
  font-weight: 700;
  padding: 0 var(--space-6);
  border-radius: var(--radius-xl);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

/* ===== Segmented Tabs ===== */
.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--glass-fill);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  box-shadow: var(--rim-top);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  margin-bottom: var(--space-4);
}

.tab {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.tab:hover {
  color: var(--text-primary);
}

.tab.active {
  background: var(--grad-brand);
  color: var(--text-on-brand);
  box-shadow: 0 4px 14px rgba(79,70,229,.42), var(--rim-top);
}

/* ===== Status Chips & Badges ===== */
.chip, .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.chip-default {
  background: var(--glass-fill-strong);
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
}

.chip-active {
  background: var(--grad-brand);
  color: var(--text-on-brand);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 2px 8px rgba(79,70,229,.35);
}

.chip-success {
  background: var(--success-fill);
  color: var(--success-text);
  border: 1px solid rgba(34,197,94,.28);
}

.chip-danger {
  background: var(--danger-fill);
  color: var(--danger-text);
  border: 1px solid rgba(239,68,68,.28);
}

.chip-warning {
  background: var(--warning-fill);
  color: var(--warning-text);
  border: 1px solid rgba(245,158,11,.28);
}

.chip-info {
  background: var(--info-fill);
  color: var(--info-text);
  border: 1px solid rgba(6,182,212,.28);
}

.chip-live {
  background: rgba(220,38,38,.22);
  color: #FF6B6B;
  border: 1px solid rgba(239,68,68,.45);
  box-shadow: 0 0 12px rgba(239,68,68,.3);
}

.chip-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF4D4D;
  box-shadow: 0 0 8px #FF4D4D;
  animation: pulseGlow 1.2s infinite;
}

/* ===== Search Box & Inputs ===== */
.input {
  width: 100%;
  height: var(--height-md);
  padding: 0 var(--space-4);
  background: var(--field-fill);
  border: 1px solid var(--field-border);
  border-radius: var(--radius-button);
  color: var(--text-primary);
  font-size: 14.5px;
  font-family: var(--font-sans);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.input:focus {
  outline: none;
  border-color: var(--field-focus);
  box-shadow: 0 0 0 3px rgba(99,102,241,.24);
}

.input::placeholder {
  color: var(--text-tertiary);
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-box .icon {
  position: absolute;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  pointer-events: none;
}

.search-box .input {
  padding-left: 42px;
}

/* ===== Bottom Navigation Bar ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(11,11,18,.92);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -8px 24px rgba(0,0,0,.45), var(--rim-top);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: var(--z-nav);
  padding: 6px 12px calc(8px + env(safe-area-inset-bottom, 0px));
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 0;
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
}

.nav-item.active {
  color: var(--cyan-300);
}

.nav-item.active svg {
  stroke: var(--cyan-300);
  filter: drop-shadow(0 0 8px rgba(6,182,212,.65));
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
  box-shadow: 0 0 8px rgba(6,182,212,.7);
}

/* ===== Match Cards (Compact & Elegant) ===== */
.match-card {
  position: relative;
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--rim-top), var(--shadow-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  margin-bottom: 8px;
  overflow: hidden;
}

.match-card:hover {
  background: var(--glass-fill-hover);
  border-color: var(--glass-rim);
  transform: translateY(-1px);
}

.match-card:active {
  transform: scale(0.98);
}

.match-card.is-live {
  border-color: rgba(239,68,68,.35);
  box-shadow: 0 4px 18px rgba(239,68,68,.12), var(--rim-top);
}

.match-card.is-live::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #DC2626, #EF4444, #F59E0B);
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 74px;
  text-align: center;
}

.team-crest-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--glass-fill-strong);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: var(--rim-top);
  flex-shrink: 0;
}

.team-crest-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
}

.team-monogram {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  background: var(--tint-indigo);
  letter-spacing: 0.02em;
}

.match-team .team-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.match-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--space-2);
}

.match-score {
  font-size: 19px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.match-score.is-live {
  color: var(--cyan-300);
  text-shadow: 0 0 10px rgba(6,182,212,.4);
}

.match-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 2px;
}

.match-league-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ===== Date Picker Strip ===== */
.date-picker {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-4);
  scrollbar-width: none;
}
.date-picker::-webkit-scrollbar { display: none; }

.date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  background: var(--glass-fill);
  border: 1px solid var(--border-strong);
  min-width: 48px;
  cursor: pointer;
  box-shadow: var(--rim-top);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.date-item .day-name {
  font-size: 9.5px;
  color: var(--text-tertiary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.date-item .day-num {
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-top: 2px;
}

.date-item:hover {
  background: var(--glass-fill-hover);
  border-color: var(--glass-rim);
}

.date-item.active {
  background: var(--grad-brand);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 4px 16px rgba(79,70,229,.45), var(--rim-top);
  transform: translateY(-2px);
}

.date-item.active .day-name {
  color: rgba(255,255,255,.8);
}

.date-item.active .day-num {
  color: #FFFFFF;
}

/* ===== League Chip / Card ===== */
.league-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  background: var(--glass-fill);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  min-width: 72px;
  cursor: pointer;
  box-shadow: var(--rim-top), var(--shadow-sm);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.league-chip:hover {
  background: var(--glass-fill-hover);
  border-color: var(--glass-rim);
  transform: translateY(-2px);
}

.league-chip .emblem-box, .league-chip .league-emblem-wrap {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--glass-fill-strong);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.league-chip .emblem-box img, .league-chip .league-emblem-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.league-chip .name, .league-chip .league-name {
  font-size: 10.5px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  line-height: 1.15;
  white-space: nowrap;
}

/* ===== News Cards (Compact & Elegant) ===== */
.news-card {
  position: relative;
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--rim-top), var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card:hover {
  background: var(--glass-fill-hover);
  border-color: var(--glass-rim);
  transform: translateY(-2px);
}

.news-card .news-img-wrap {
  width: 100%;
  height: 120px;
  position: relative;
  overflow: hidden;
  background: var(--ink-850);
}

.news-card .news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.news-card:hover .news-img {
  transform: scale(1.04);
}

.news-card .news-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11,11,18,.92) 100%);
}

.news-card .news-category-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(11,11,18,.8);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--cyan-300);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.news-card .news-body {
  padding: 8px 12px 10px;
}

.news-card .news-title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .news-meta {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card .news-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

/* Home Screen Compact Horizontal News Item */
.home-news-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--rim-top), var(--shadow-sm);
  margin-bottom: 8px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.home-news-row:hover {
  background: var(--glass-fill-hover);
  transform: translateY(-1px);
}

.home-news-row .thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
}

.home-news-row .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.home-news-row .title {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-row .meta {
  font-size: 10.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== Data Tables (Standings) ===== */
.data-table-wrap {
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur-filter);
  backdrop-filter: var(--glass-blur-filter);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--rim-top), var(--shadow-card);
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border-strong);
  background: rgba(255,255,255,.02);
}

.data-table th.th-team {
  text-align: left;
  padding-left: 12px;
}

.data-table td {
  font-size: 13px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: middle;
  text-align: center;
  color: var(--text-secondary);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover {
  background: var(--glass-fill-hover);
}

.data-table .td-pos {
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 12.5px;
  width: 32px;
}

.data-table .td-team {
  text-align: left;
  padding-left: 12px;
}

.data-table .team-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.data-table .team-cell .mini-crest {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.data-table .team-cell .team-name-txt {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.data-table .td-pts {
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.pos-cl { color: #67E8F9; text-shadow: 0 0 8px rgba(103,232,249,.4); }
.pos-el { color: #F59E0B; }
.pos-rel { color: #EF4444; }

/* ===== Progress Bar ===== */
.progress-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 13px;
}

.progress-bar .label {
  width: 100px;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: right;
  font-size: 12.5px;
}

.progress-bar .bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.progress-bar .fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
  box-shadow: 0 0 10px rgba(6,182,212,.4);
  transition: width var(--dur-slow) var(--ease-out);
}

.progress-bar .value {
  width: 44px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 13px;
}

/* ===== Toggle Switch ===== */
.toggle {
  position: relative;
  width: 48px;
  height: 28px;
  background: var(--field-fill);
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.4);
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.toggle.active {
  background: var(--indigo-500);
  border-color: var(--indigo-400);
  box-shadow: 0 0 12px rgba(79,70,229,.45);
}

.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  transition: transform var(--dur-base) var(--ease-out);
}

.toggle.active::after {
  transform: translateX(20px);
}
