﻿:root {
  --bg: #0f1115;
  --text: #f5f7fa;
  --text-dim: #a9b1c3;
  --line: #2a3040;
  --accent: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.04), transparent 35%),
    radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.03), transparent 30%),
    var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.18;
}
.bg-orb-left { background: #2e415f; top: -120px; left: -120px; }
.bg-orb-right { background: #4d3a2a; right: -120px; bottom: -140px; }

.topbar {
  width: min(1080px, calc(100% - 40px));
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.logo { font-size: 1.45rem; font-weight: 800; letter-spacing: 0.08em; }
.subdomain { color: var(--text-dim); font-size: 0.92rem; }

.auth-widget {
  border: 1px solid var(--line);
  background: rgba(15, 18, 25, 0.92);
  border-radius: 12px;
  padding: 8px;
  min-width: 300px;
  display: grid;
  gap: 8px;
}

.auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.auth-status {
  color: #d8e3f6;
  font-size: 0.84rem;
  font-weight: 600;
}

.auth-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.tg-login-slot {
  min-height: 34px;
  display: flex;
  align-items: center;
}

.auth-btn {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.85rem;
}

.password-login {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.password-login[hidden] {
  display: none !important;
}

.auth-btn[hidden] {
  display: none !important;
}

.password-login input {
  padding: 10px 12px;
}

.password-login button {
  min-height: 40px;
  padding: 0 14px;
}

.container {
  min-height: calc(100dvh - 82px);
  display: grid;
  place-items: center;
  padding:
    clamp(16px, 3vw, 28px)
    clamp(12px, 2.4vw, 20px)
    calc(44px + env(safe-area-inset-bottom));
}

.card {
  width: min(980px, 100%);
  background: linear-gradient(180deg, rgba(26, 30, 39, 0.95), rgba(18, 21, 27, 0.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: var(--shadow);
  animation: rise 0.6s ease;
}

.auth-gate {
  border: 1px solid #7b5f21;
  background: rgba(123, 95, 33, 0.14);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.auth-gate-title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffe3a6;
}

.auth-gate-text {
  margin: 0;
  color: #ecd9b7;
  font-size: 0.92rem;
}

body.auth-locked #tab-search,
body.auth-locked #tab-favorites,
body.auth-locked #tab-stats {
  opacity: 0.4;
  pointer-events: none;
}

.kicker { margin: 0; color: var(--text-dim); font-size: 0.95rem; }
h1 { margin: 10px 0 14px; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; }
.desc { margin: 0 0 22px; font-size: 1rem; color: #d8deea; }
.desc span { color: var(--accent); font-weight: 700; }

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

.title-row h1 {
  margin: 10px 0 14px;
}

.anime-soon {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #6f5a1f;
  background: rgba(120, 96, 34, 0.2);
  color: #ffe7a3;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.tabs {
  display: flex;
  width: 100%;
  gap: 8px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tab {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-dim);
  touch-action: manipulation;
  flex: 1 1 auto;
  white-space: nowrap;
}
.tab.is-active { background: rgba(255, 255, 255, 0.1); color: var(--text); border-color: #3a4358; }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.active-filters {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
}

.filter-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #dbe4f4;
  border-radius: 999px;
  padding: 6px 8px 6px 10px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chip-remove {
  border: 0;
  background: transparent;
  color: #dbe4f4;
  min-height: auto;
  padding: 0;
  width: 16px;
  height: 16px;
  line-height: 1;
  font-weight: 700;
}

input, select, button {
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

input, select {
  width: 100%;
  background: rgba(15, 17, 22, 0.95);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus {
  border-color: #5f6f8d;
  box-shadow: 0 0 0 3px rgba(95, 111, 141, 0.25);
}

button {
  padding: 0 18px;
  min-height: 48px;
  background: #e9edf5;
  color: #111319;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease;
  touch-action: manipulation;
}
button:hover { transform: translateY(-1px); }
button:active { transform: translateY(0); }
.btn-secondary { background: rgba(255, 255, 255, 0.08); color: var(--text); }

.settings {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.settings summary { cursor: pointer; color: var(--text-dim); font-size: 0.95rem; }
.settings-inner { margin-top: 12px; display: grid; gap: 10px; }
.settings label { color: #c8d1e1; font-size: 0.9rem; display: block; margin-bottom: 6px; }
.hint { margin: 0; color: #8f99ae; font-size: 0.85rem; }
.settings-actions {
  display: flex;
  justify-content: flex-end;
}
.settings-actions .btn-secondary {
  min-height: 40px;
  padding: 0 12px;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.player-settings {
  border-top: 1px dashed var(--line);
  margin-top: 4px;
  padding-top: 10px;
}

.player-settings > summary {
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 26px;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d6deef;
}

.checkbox-row label {
  margin: 0;
}

.status { margin: 14px 0; min-height: 1.2rem; color: #9eaac2; font-size: 0.92rem; }

.player-panel {
  border: 1px solid var(--line);
  background: rgba(14, 16, 22, 0.9);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
}

.player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.player-title {
  margin: 0;
  font-weight: 700;
}

.player-message {
  margin: 0 0 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: #d3dbea;
  background: rgba(255, 255, 255, 0.04);
}

.player-message[data-kind="error"] {
  border-color: #8b3d3d;
  color: #ffd5d5;
  background: rgba(139, 61, 61, 0.18);
}

.player-message[data-kind="info"] {
  border-color: #304561;
  color: #d3e3ff;
  background: rgba(48, 69, 97, 0.2);
}

.serial-progress {
  display: grid;
  grid-template-columns: 160px 200px auto;
  gap: 8px;
  align-items: end;
  margin-bottom: 8px;
}

.serial-progress label {
  display: block;
  margin: 0 0 4px;
  color: #c8d1e1;
  font-size: 0.82rem;
}

.serial-progress input {
  padding: 10px 12px;
}

.serial-progress .btn-secondary {
  min-height: 42px;
  padding: 0 12px;
}

.player-head .btn-secondary {
  min-height: 36px;
  padding: 0 12px;
}

.player-frame {
  width: 100%;
  min-height: 420px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  background: #000;
}

.last-view {
  border: 1px solid var(--line);
  background: rgba(14, 16, 22, 0.9);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.last-view[hidden] {
  display: none !important;
}

.last-view-text {
  margin: 0;
  color: #d8e1f1;
  font-size: 0.92rem;
}

.results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#favorites.results {
  grid-template-columns: 1fr;
}

.result-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(14, 16, 22, 0.9);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
}

.result-card-empty {
  grid-column: 1 / -1;
  grid-template-columns: 1fr !important;
}

.result-card-empty .result-body {
  width: 100%;
}

.result-card-empty .empty-state .btn-secondary {
  width: 100%;
  max-width: 260px;
}

.poster-wrap {
  width: 120px;
  min-height: 176px;
  background: #111319;
}
.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.result-body { padding: 12px; }
.result-title { margin: 0 0 6px; font-size: 1.05rem; }
.result-meta { margin: 0; color: var(--text-dim); font-size: 0.9rem; }
.result-desc {
  margin: 8px 0 0;
  color: #ced6e7;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.badges {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.badge {
  font-size: 0.75rem;
  border: 1px solid var(--line);
  color: #d6deef;
  border-radius: 999px;
  padding: 3px 8px;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.15;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.source-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  flex: 0 0 auto;
}

.source-mark .bi {
  font-size: 0.74rem;
  line-height: 1;
}

.source-mark-kp {
  color: #f6c96a;
  background: rgba(198, 138, 31, 0.2);
  border-color: rgba(198, 138, 31, 0.45);
}

.source-mark-imdb {
  color: #161616;
  background: #f5c518;
  border-color: #d4aa10;
}

.rating-na {
  border-color: #3c4354;
  color: #afb7c9;
}

.rating-bad {
  border-color: #8b3d3d;
  color: #ffbcbc;
  background: rgba(139, 61, 61, 0.12);
}

.rating-mid {
  border-color: #8a6a2a;
  color: #ffe3a6;
  background: rgba(138, 106, 42, 0.12);
}

.rating-good {
  border-color: #2d7445;
  color: #b8f4cd;
  background: rgba(45, 116, 69, 0.12);
}

.player-health-pending {
  border-color: #304561;
  color: #d3e3ff;
  background: rgba(48, 69, 97, 0.2);
}

.player-health-ok {
  border-color: #2d7445;
  color: #b8f4cd;
  background: rgba(45, 116, 69, 0.12);
}

.player-health-error {
  border-color: #8b3d3d;
  color: #ffbcbc;
  background: rgba(139, 61, 61, 0.12);
}

.player-health-warn {
  border-color: #8a6a2a;
  color: #ffe3a6;
  background: rgba(138, 106, 42, 0.12);
}

.result-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}
.result-actions a,
.result-actions button {
  text-decoration: none;
  color: #111319;
  background: #e9edf5;
  border: 1px solid #d0d7e4;
  border-radius: 10px;
  padding: 8px 8px;
  font-weight: 700;
  font-size: 0.8rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: normal;
  line-height: 1.1;
  text-align: center;
  min-width: 0;
}

.action-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  line-height: 1.1;
}

.result-actions button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.result-actions .alt { background: transparent; color: var(--text); border-color: var(--line); }

.action-icon {
  font-size: 0.9rem;
  line-height: 1;
  flex: 0 0 auto;
}

.rating-popover {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  display: none;
}

.rating-popover.is-open {
  display: block;
}

.rating-popover-title {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: #cfd8e8;
}

.rating-scale {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 6px;
}

.rating-chip,
.rating-clear {
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  padding: 0 6px;
}

.rating-chip.is-active {
  border-color: #2d7445;
  background: rgba(45, 116, 69, 0.24);
  color: #d2f3df;
}

.rating-clear {
  grid-column: span 2;
  background: rgba(139, 61, 61, 0.18);
  border-color: #8b3d3d;
  color: #ffd4d4;
}
.empty-state {
  display: grid;
  gap: 10px;
}

.empty-state p {
  margin: 0;
  color: #d5deef;
}

.toast-center {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 8px;
  z-index: 9999;
  width: min(360px, calc(100% - 24px));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: #dbe4f4;
  background: rgba(23, 28, 38, 0.96);
  box-shadow: var(--shadow);
}

.toast[data-kind="success"] {
  border-color: #2d7445;
  background: rgba(25, 68, 41, 0.95);
}

.toast[data-kind="error"] {
  border-color: #8b3d3d;
  background: rgba(87, 34, 34, 0.95);
}

.skeleton-card {
  position: relative;
  overflow: hidden;
}

.skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: shimmer 1.4s infinite;
}

.skeleton-box {
  background: rgba(255, 255, 255, 0.06);
}

.skeleton-line {
  height: 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.skeleton-pill {
  display: inline-flex;
  min-height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: transparent;
}

.skeleton-btn {
  display: inline-flex;
  min-height: 40px;
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.w-95 { width: 95%; }
.w-85 { width: 85%; }
.w-70 { width: 70%; }
.w-55 { width: 55%; }

.load-more-wrap {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.stat-item {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(14, 16, 22, 0.9);
  border-radius: 14px;
  padding: 12px;
}
.stat-label { margin: 0; color: var(--text-dim); font-size: 0.9rem; }
.stat-value { margin: 4px 0 0; font-size: 1.5rem; font-weight: 800; }
.stats-meta { margin: 14px 0; color: #c8d1e1; font-size: 0.93rem; }
.stats-meta p { margin: 4px 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

@media (max-width: 900px) {
  .topbar {
    width: calc(100% - 24px);
    margin-top: 14px;
    align-items: stretch;
  }
  .subdomain {
    width: 100%;
    order: 3;
    font-size: 0.84rem;
  }
  .auth-widget {
    width: 100%;
    min-width: 0;
  }
  .auth-actions {
    grid-template-columns: 1fr 1fr;
  }
  .auth-actions > .auth-btn {
    width: 100%;
  }
  .card { border-radius: 16px; padding: 18px; }
  input, select, button { font-size: 16px; }
  .filters-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .player-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .results { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 96px 1fr; }
  .poster-wrap { width: 96px; min-height: 146px; }
  .badges { grid-template-columns: 1fr 1fr; }
  .result-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1280px) {
  .badges {
    grid-template-columns: 1fr 1fr;
  }
  .result-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .logo { font-size: 1.2rem; }
  .subdomain { font-size: 0.82rem; word-break: break-word; }
  .title-row {
    align-items: flex-start;
    gap: 8px;
  }
  .title-row h1 {
    margin: 8px 0 0;
  }
  .auth-widget { padding: 10px; }
  .auth-actions { grid-template-columns: 1fr; }
  .auth-btn {
    width: 100%;
    min-height: 42px;
  }
  .password-login {
    grid-template-columns: 1fr;
  }
  .password-login button {
    width: 100%;
  }
  h1 { font-size: 1.6rem; }
  .anime-soon {
    margin-top: 0;
    font-size: 0.78rem;
    align-self: flex-start;
    padding: 4px 10px;
  }
  .desc { font-size: 0.95rem; }
  .search-form { grid-template-columns: 1fr; }
  .search-form > button { width: 100%; }
  .load-more-wrap > button { width: 100%; }
  .stats-grid, .filters-grid { grid-template-columns: 1fr; }
  .player-grid { grid-template-columns: 1fr; }
  .tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    flex-wrap: nowrap;
    position: static;
    backdrop-filter: none;
  }
  .tab {
    flex: 1 1 auto;
    min-height: 42px;
    min-width: 0;
    padding: 0 8px;
    font-size: 0.9rem;
  }
  .result-card { grid-template-columns: 84px 1fr; }
  .result-card-empty { grid-template-columns: 1fr !important; }
  .poster-wrap { width: 84px; min-height: 126px; }
  .result-body { padding: 10px; }
  .result-actions a, .result-actions button { width: 100%; min-height: 42px; }
  .result-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .action-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }
  .rating-scale {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .rating-clear {
    grid-column: span 6;
  }
  .badges { grid-template-columns: 1fr 1fr; }
  .badge {
    font-size: 0.78rem;
    padding: 5px 8px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }
  .checkbox-row { margin-top: 0; }
  .settings-actions { justify-content: stretch; }
  .settings-actions .btn-secondary { width: 100%; }
  .player-head { flex-direction: column; align-items: stretch; }
  .player-head .btn-secondary { width: 100%; }
  .serial-progress { grid-template-columns: 1fr; }
  .serial-progress .btn-secondary { width: 100%; }
  .player-frame { min-height: 220px; }
  .last-view { flex-direction: column; align-items: stretch; }
  .last-view .btn-secondary { width: 100%; }
  .toast-center { right: 10px; left: 10px; width: auto; }
}

@media (max-width: 560px) {
  .result-card {
    grid-template-columns: 1fr;
  }
  .result-card-empty {
    grid-template-columns: 1fr !important;
  }
  .poster-wrap {
    width: 100%;
    min-height: 210px;
    max-height: 260px;
  }
  .poster {
    object-position: center top;
  }
}

@media (max-width: 420px) {
  .container { padding: 10px 6px 28px; }
  .card { padding: 14px; border-radius: 14px; }
  .topbar { width: calc(100% - 12px); }
  .result-card { grid-template-columns: 1fr; }
  .result-card-empty { grid-template-columns: 1fr !important; }
  .poster-wrap { width: 100%; min-height: 190px; max-height: 230px; }
  .result-title { font-size: 1rem; }
  .result-desc { font-size: 0.86rem; }
  .badges { grid-template-columns: 1fr; }
  .result-actions { grid-template-columns: 1fr 1fr; }
  .rating-scale {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .rating-clear {
    grid-column: span 5;
  }
  .player-frame { min-height: 190px; }
}

@media (hover: none) {
  button:hover { transform: none; }
}
