* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #07111d;
  --bg-glow: rgba(82, 113, 143, 0.13);
  --surface: #0d1825;
  --surface-2: #111f2e;
  --surface-3: #152434;
  --glass: rgba(13, 24, 37, 0.94);
  --text: #eee8df;
  --text-strong: #fffaf3;
  --muted: #9aa6b3;
  --muted-2: #6f7d8b;
  --line: rgba(154, 174, 194, 0.19);
  --line-strong: rgba(186, 203, 219, 0.3);
  --red: #ef514b;
  --red-deep: #8f1f27;
  --red-surface: rgba(136, 25, 35, 0.22);
  --gold: #e2b659;
  --gold-deep: #96702a;
  --blue: #69c9ef;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f0e7;
  --bg-glow: rgba(145, 105, 64, 0.09);
  --surface: #fffdf9;
  --surface-2: #f7f1e8;
  --surface-3: #eee6db;
  --glass: rgba(255, 253, 249, 0.95);
  --text: #292521;
  --text-strong: #161310;
  --muted: #746d66;
  --muted-2: #958d85;
  --line: rgba(74, 61, 51, 0.14);
  --line-strong: rgba(74, 61, 51, 0.25);
  --red: #a5222d;
  --red-deep: #76151d;
  --red-surface: rgba(165, 34, 45, 0.09);
  --gold: #a87518;
  --gold-deep: #7f5812;
  --blue: #2180ab;
  --shadow: 0 14px 32px rgba(64, 49, 38, 0.12);
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-width: 280px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8%, var(--bg-glow), transparent 35%),
    linear-gradient(180deg, var(--surface) 0, var(--bg) 18rem, var(--bg) 100%);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  transition: background-color 160ms ease, color 160ms ease;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}

.app-shell {
  width: min(100%, 480px);
  min-height: 100dvh;
  margin: 0 auto;
  padding:
    max(10px, env(safe-area-inset-top))
    12px
    calc(104px + env(safe-area-inset-bottom));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 54px;
  margin-bottom: 18px;
}

.identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.identity-button {
  flex: 1 1 auto;
  max-width: 58%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.avatar,
.profile-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(197, 125, 63, 0.68);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(230, 167, 91, 0.2), transparent 38%),
    linear-gradient(145deg, #4b3029, #14151b);
  color: #f4dfc6;
  font-family: var(--serif);
  box-shadow: 0 0 0 3px rgba(136, 48, 39, 0.08);
}

.avatar {
  width: 44px;
  height: 44px;
  font-size: 15px;
}

.avatar img,
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-copy {
  display: block;
  min-width: 0;
}

.identity-copy strong {
  display: block;
  overflow: hidden;
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.identity-copy span {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
}

.icon-button,
.luxury-status,
.outline-button,
.small-button,
.plain-button {
  border: 1px solid var(--line);
  background: var(--surface-2);
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
}

.icon-button:active,
.luxury-status:active,
.outline-button:active,
.small-button:active,
.telegram-button:active,
.nav-item:active {
  transform: scale(0.97);
}

.icon-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border-radius: 11px;
  color: var(--muted);
  font-size: 15px;
}

.notification-button {
  display: none;
}

.luxury-status {
  min-height: 32px;
  padding: 0 9px;
  border-color: rgba(196, 66, 55, 0.6);
  border-radius: 11px;
  color: var(--text-strong);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.luxury-status.owned {
  border-color: rgba(197, 160, 72, 0.65);
  color: var(--gold);
}

.status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.status-card strong {
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.status-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.error-card {
  justify-content: space-between;
  border-color: rgba(212, 67, 63, 0.42);
}

.spinner {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 2px solid var(--line-strong);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.heading-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.heading-line h1,
.section-heading h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--serif);
  font-weight: 400;
}

.heading-line h1 {
  font-size: clamp(30px, 9vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.day-date {
  margin: 7px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
}

.ornament {
  position: relative;
  display: block;
  width: min(28vw, 120px);
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.ornament::before {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 6px;
  height: 6px;
  background: var(--muted-2);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.outline-button {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border-color: rgba(197, 160, 72, 0.55);
  border-radius: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.outline-button.locked {
  border-color: var(--line);
  color: var(--muted);
}

.segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
}

.segment-button {
  position: relative;
  min-height: 43px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
}

.segment-button.active {
  background:
    radial-gradient(circle at 50% 115%, rgba(238, 72, 64, 0.35), transparent 42%),
    linear-gradient(100deg, rgba(96, 18, 28, 0.82), rgba(136, 29, 34, 0.45));
  color: #fff0e7;
}

html[data-theme="light"] .segment-button.active {
  color: #fff;
}

.lock-mark {
  margin-left: 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-panel,
.free-slots-panel,
.info-panel {
  margin: -4px 0 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
}

.calendar-panel label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
}

.calendar-controls {
  display: flex;
  gap: 8px;
}

.calendar-controls input {
  min-width: 0;
  flex: 1 1 auto;
  min-height: 37px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
}

.small-button,
.plain-button {
  min-height: 34px;
  padding: 0 11px;
  border-radius: 10px;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
}

.plain-button {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading strong {
  color: var(--gold);
  font-size: 13px;
}

.muted-line {
  color: var(--muted);
  font-size: 11px;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}

.slot-chip {
  padding: 7px 9px;
  border: 1px solid rgba(197, 160, 72, 0.38);
  border-radius: 9px;
  background: rgba(197, 160, 72, 0.08);
  color: var(--gold);
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 17px 2px 9px;
}

.section-heading-compact {
  margin-top: 10px;
}

.section-heading h2 {
  font-size: 24px;
  line-height: 1;
}

.section-note {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 9px;
}

.active-auction {
  display: grid;
  grid-template-columns: minmax(120px, 41%) 1fr;
  overflow: hidden;
  border: 1px solid rgba(213, 48, 47, 0.7);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 20%, rgba(121, 42, 48, 0.18), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow);
}

.active-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(145deg, #231923, #0f1720);
}

.card-image,
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.card-image {
  display: block;
  object-fit: cover;
}

.image-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(205, 122, 58, 0.22), transparent 32%),
    linear-gradient(155deg, #2c2022, #0f1620 66%);
  color: rgba(238, 215, 190, 0.72);
  font-family: var(--serif);
  font-size: 31px;
}

.live-badge {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(169, 38, 43, 0.94);
  color: #fff4ed;
  font-size: 9px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.active-details {
  min-width: 0;
  padding: 13px 12px 11px;
}

.lot-number {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 10px;
}

.auction-name {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: clamp(19px, 5.4vw, 25px);
  font-weight: 400;
  line-height: 1.05;
}

.rarity-line {
  margin: 7px 0 5px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.seller-line {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.seller-line.unverified {
  color: var(--red);
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-block {
  min-width: 0;
}

.meta-label,
.start-price,
.deadline span {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.current-price {
  display: block;
  margin: 2px 0 1px;
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.deadline {
  flex: 0 0 auto;
  text-align: right;
}

.deadline span {
  color: var(--red);
}

.deadline strong {
  display: block;
  margin-top: 3px;
  color: var(--red);
  font-size: 9px;
}

.deck-line,
.story-line {
  margin: 9px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.35;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-size: 9px;
}

.telegram-button,
.primary-action,
.secondary-action {
  width: 100%;
  border-radius: 12px;
  font-weight: 700;
}

.telegram-button {
  min-height: 39px;
  margin-top: 9px;
  border: 1px solid #d9473f;
  background: linear-gradient(120deg, #851c25, #a92b2d 62%, #7c171f);
  color: #fff4ed;
  font-family: var(--serif);
  font-size: 12px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.telegram-button:disabled {
  opacity: 0.45;
}

.telegram-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 8.5px;
  line-height: 1.25;
  text-align: center;
}

.empty-state {
  padding: 17px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
  text-align: center;
}

.upcoming-section {
  margin-top: 17px;
}

.upcoming-list {
  display: grid;
  gap: 5px;
}

.upcoming-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 10px;
  min-height: 57px;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
  text-align: left;
}

.upcoming-row:disabled {
  opacity: 0.78;
}

.upcoming-media {
  position: relative;
  display: block;
  min-height: 57px;
  overflow: hidden;
  background: var(--surface-3);
}

.upcoming-media img,
.mini-placeholder {
  width: 100%;
  height: 100%;
  min-height: 57px;
}

.upcoming-media img {
  object-fit: cover;
}

.mini-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 11px;
}

.upcoming-copy,
.upcoming-price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.upcoming-copy {
  padding: 7px 8px;
}

.upcoming-copy strong {
  overflow: hidden;
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upcoming-copy small,
.upcoming-price small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.upcoming-price {
  align-items: flex-end;
  padding: 7px 4px;
}

.upcoming-price strong {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.chevron {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 19px;
}

.rules-strip {
  display: grid;
  width: 100%;
  grid-template-columns: 22px auto 1fr 1fr 10px;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 9px;
  text-align: left;
}

.rules-strip strong {
  color: var(--text);
  font-size: 10px;
  font-weight: 500;
}

.rules-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--muted-2);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 10px;
}

.rules-chevron {
  font-size: 17px;
}

.info-panel {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.info-panel strong {
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: 13px;
}

.info-panel p {
  margin: 7px 0 0;
}

.secondary-view {
  padding-top: 4px;
}

.secondary-heading,
.profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 16px;
}

.secondary-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-2);
  color: var(--red);
  font-family: var(--serif);
  font-size: 24px;
}

.submit-secondary {
  border-color: rgba(203, 59, 57, 0.45);
  background: var(--red-surface);
}

.secondary-heading h1,
.profile-copy h1 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  gap: 10px;
}

.service-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.service-card h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.service-card p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-action,
.secondary-action {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(206, 57, 54, 0.55);
  background: linear-gradient(120deg, #841c25, #a4292e);
  color: #fff6ef;
  font-size: 11px;
}

.secondary-action {
  border-color: var(--line-strong);
  background: var(--surface-2);
  color: var(--text);
}

.profile-avatar {
  width: 62px;
  height: 62px;
  font-size: 19px;
}

.profile-copy {
  min-width: 0;
}

.profile-copy h1 {
  overflow: hidden;
  max-width: 280px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-settings {
  display: grid;
  gap: 0;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.setting-row:last-child {
  border-bottom: 0;
}

.setting-row strong,
.setting-row span {
  display: block;
}

.setting-row strong {
  color: var(--text-strong);
  font-size: 12px;
}

.setting-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.bottom-nav {
  position: fixed;
  z-index: 20;
  right: max(8px, env(safe-area-inset-right));
  bottom: max(7px, env(safe-area-inset-bottom));
  left: max(8px, env(safe-area-inset-left));
  display: grid;
  width: min(calc(100% - 16px), 480px);
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  margin: 0 auto;
  padding: 5px 4px 6px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--glass);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.nav-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 5px 2px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 8px;
  white-space: nowrap;
}

.nav-item.active {
  border-color: rgba(190, 46, 44, 0.32);
  background:
    radial-gradient(circle at 50% 10%, rgba(222, 65, 58, 0.14), transparent 54%),
    var(--red-surface);
  color: var(--red);
}

.nav-icon {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
}

.nav-submit {
  overflow: visible;
}

.submit-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  margin-top: -21px;
  border: 1px solid #c13a3b;
  border-radius: 50%;
  background: linear-gradient(145deg, #a63135, #651820);
  color: #fff5ed;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  box-shadow: 0 6px 18px rgba(120, 24, 29, 0.38);
}

.toast {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: calc(89px + env(safe-area-inset-bottom));
  left: 16px;
  width: min(calc(100% - 32px), 440px);
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--glass);
  color: var(--text);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

@media (min-width: 410px) {
  .notification-button {
    display: grid;
  }

  .identity-button {
    max-width: 55%;
  }
}

@media (max-width: 370px) {
  .app-shell {
    padding-right: 9px;
    padding-left: 9px;
  }

  .topbar {
    gap: 5px;
  }

  .avatar {
    width: 39px;
    height: 39px;
  }

  .identity-copy strong {
    font-size: 15px;
  }

  .icon-button {
    width: 29px;
    height: 29px;
  }

  .luxury-status {
    padding: 0 7px;
    font-size: 9px;
  }

  .outline-button {
    padding: 0 8px;
    font-size: 9px;
  }

  .active-auction {
    grid-template-columns: 1fr;
  }

  .active-media,
  .card-image,
  .image-placeholder {
    min-height: 260px;
    max-height: 330px;
  }

  .upcoming-row {
    grid-template-columns: 50px minmax(0, 1fr) auto 8px;
  }

  .upcoming-copy small,
  .upcoming-price small {
    display: none;
  }

  .rules-strip {
    grid-template-columns: 20px auto 1fr 8px;
  }

  .rules-strip span:nth-of-type(3) {
    display: none;
  }

  .nav-item {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
