:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #667873;
  --line: #d7e0da;
  --surface: #ffffff;
  --cream: #f5f1e8;
  --green: #0f4a42;
  --green-deep: #0a332e;
  --green-bright: #277967;
  --gold: #d5a642;
  --gold-soft: #fff6dc;
  --orange: #d85d43;
  --orange-soft: #fff0e8;
  --blue: #2f6f8d;
  --blue-soft: #e7f4f6;
  --shadow: 0 20px 55px rgba(30, 45, 42, 0.12);
  --shadow-strong: 0 28px 80px rgba(18, 35, 32, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(15, 74, 66, 0.08), transparent 34rem),
    radial-gradient(circle at 12% 8%, rgba(216, 93, 67, 0.15), transparent 23rem),
    radial-gradient(circle at 88% 3%, rgba(47, 111, 141, 0.18), transparent 24rem),
    linear-gradient(180deg, #fffaf1 0, var(--cream) 44rem),
    var(--cream);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(15, 74, 66, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 74, 66, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 70%);
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 58px;
  animation: page-rise 620ms var(--ease-out) both;
}

.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 74, 66, 0.14);
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 220, 0.72)),
    radial-gradient(circle at 88% 18%, rgba(213, 166, 66, 0.22), transparent 16rem);
  box-shadow: var(--shadow-strong);
}

.hero::after {
  position: absolute;
  right: 164px;
  bottom: -84px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(15, 74, 66, 0.12);
  border-radius: 50%;
  content: "";
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.team-header p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0;
  line-height: 0.96;
  animation: title-rise 760ms var(--ease-out) 120ms both;
}

.hero-copy,
.section-heading p,
.empty-state p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-badge {
  display: grid;
  width: 122px;
  height: 122px;
  flex: 0 0 auto;
  place-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  text-align: center;
  box-shadow: 0 18px 36px rgba(15, 74, 66, 0.25);
  animation: badge-breathe 3.2s ease-in-out infinite;
}

.hero-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  justify-items: center;
}

.admin-entry {
  border: 1px solid rgba(15, 74, 66, 0.16);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 74, 66, 0.08);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.admin-entry:hover {
  background: white;
  box-shadow: 0 12px 24px rgba(15, 74, 66, 0.12);
  transform: translateY(-1px);
}

.hero-badge span {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.hero-badge small {
  margin-top: 6px;
  opacity: 0.8;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.panel {
  padding: 26px;
  border: 1px solid rgba(215, 224, 218, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  animation: card-rise 700ms var(--ease-out) both;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms ease;
}

.panel:nth-child(2) {
  animation-delay: 90ms;
}

.panel:hover {
  border-color: rgba(39, 121, 103, 0.24);
  box-shadow: 0 24px 62px rgba(30, 45, 42, 0.15);
  transform: translateY(-2px);
}

.section-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.section-heading h2 {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.2;
}

.section-heading p {
  font-size: 13px;
}

.step {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: linear-gradient(145deg, #e1f0eb, #f7fbf9);
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(15, 74, 66, 0.04);
  transition: transform 180ms var(--ease-out), background 180ms ease;
}

.section-heading:hover .step {
  background: #d4ebe4;
  transform: rotate(-3deg) scale(1.04);
}

.name-form {
  margin: 26px 0 20px;
}

.name-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.input-row {
  display: flex;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  background: #fcfdfb;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 82px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(40, 125, 109, 0.12);
}

.primary-button {
  border: 0;
  border-radius: 11px;
  padding: 13px 17px;
  color: white;
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(22, 76, 69, 0.16);
  transition: transform 160ms var(--ease-out), background 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover {
  background: var(--green-bright);
  box-shadow: 0 14px 26px rgba(22, 76, 69, 0.22);
  transform: translateY(-1px);
}

.primary-button:active {
  transform: translateY(1px) scale(0.98);
}

.primary-button:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.form-message {
  min-height: 20px;
  margin: 8px 0 0;
  color: #bf4e36;
  font-size: 13px;
}

.latest-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(216, 93, 67, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-soft), #fffaf5);
  color: #a84632;
  animation: pop-in 360ms var(--ease-out) both;
}

.latest-result strong {
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.result-label {
  font-size: 13px;
  font-weight: 700;
}

.latest-result span:last-child {
  margin-left: auto;
  font-size: 14px;
}

.list-heading {
  margin-top: 30px;
}

.empty-state {
  padding: 32px 18px;
  color: var(--green);
  text-align: center;
}

.empty-state span {
  font-weight: 800;
}

.empty-state p {
  margin-top: 7px;
  font-size: 13px;
}

.participant-list,
.team-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.participant-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.participant-item,
.team-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfcfb;
  animation: list-in 320ms var(--ease-out) both;
  transition: transform 160ms var(--ease-out), border-color 160ms ease, box-shadow 160ms ease;
}

.participant-item:hover,
.team-item:hover {
  border-color: rgba(40, 125, 109, 0.22);
  box-shadow: 0 8px 18px rgba(37, 54, 50, 0.08);
  transform: translateY(-2px);
}

.number-chip {
  display: grid;
  width: 38px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: #e1efea;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms var(--ease-out);
}

.participant-item:hover .number-chip,
.team-item:hover .number-chip {
  transform: scale(1.05);
}

.participant-item strong,
.team-item strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grouping-panel {
  align-self: start;
}

.countdown-card {
  display: grid;
  position: relative;
  overflow: hidden;
  gap: 6px;
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 15px;
  color: white;
  background:
    linear-gradient(145deg, var(--green), var(--green-deep)),
    radial-gradient(circle at 86% 18%, rgba(213, 166, 66, 0.3), transparent 12rem);
  box-shadow: 0 16px 34px rgba(15, 74, 66, 0.2);
}

.countdown-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.16) 45%, transparent 70%);
  content: "";
  transform: translateX(-120%);
  animation: light-sweep 4.2s ease-in-out infinite;
}

.countdown-card > * {
  position: relative;
  z-index: 1;
}

.countdown-card span,
.countdown-card small {
  opacity: 0.76;
}

.countdown-card span {
  font-size: 13px;
  font-weight: 700;
}

.countdown-card strong {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.countdown-card small {
  font-size: 12px;
}

.group-empty {
  padding-top: 90px;
  padding-bottom: 90px;
}

.groups-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 25px;
}

.groups-container:not([hidden]) .team-card {
  animation: reveal-team 520ms var(--ease-out) both;
}

.groups-container:not([hidden]) .team-card:nth-child(2) {
  animation-delay: 120ms;
}

.team-card {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  padding: 16px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.team-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
}

.team-card:hover {
  box-shadow: 0 16px 30px rgba(37, 54, 50, 0.1);
  transform: translateY(-3px);
}

.team-a {
  border: 1px solid rgba(216, 93, 67, 0.12);
  background: linear-gradient(135deg, var(--orange-soft), #fff7f1);
}

.team-a::before {
  background: var(--orange);
}

.team-b {
  border: 1px solid rgba(47, 111, 141, 0.12);
  background: linear-gradient(135deg, var(--blue-soft), #f5fbfc);
}

.team-b::before {
  background: var(--blue);
}

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

.team-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(30, 45, 42, 0.15);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.team-card:hover .team-avatar {
  box-shadow: 0 8px 18px rgba(37, 54, 50, 0.18);
  transform: scale(1.06) rotate(-2deg);
}

.team-header h3 {
  margin-bottom: 0;
  color: #a84632;
  font-size: 21px;
}

.team-motto {
  display: block;
  margin-top: 7px;
  color: #a84632;
  font-size: 12px;
  line-height: 1.55;
  white-space: nowrap;
}

.team-b .team-header p,
.team-b .team-header h3,
.team-b .team-motto {
  color: var(--blue);
}

.team-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.team-item {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.66);
}

.team-a .number-chip {
  color: #a84632;
  background: rgba(255, 118, 87, 0.18);
}

.team-b .number-chip {
  color: var(--blue);
  background: rgba(53, 116, 140, 0.14);
}

.arena-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.ratings-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.rating-card {
  display: grid;
  gap: 14px;
  border-radius: 15px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.rating-title {
  display: grid;
  gap: 4px;
}

.rating-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.rating-title strong {
  color: var(--green);
  font-size: 20px;
}

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

.rating-button {
  display: grid;
  gap: 4px;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 11px;
  padding: 9px 8px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 160ms var(--ease-out), box-shadow 160ms ease, border-color 160ms ease;
}

.rating-button:hover {
  border-color: rgba(40, 125, 109, 0.26);
  box-shadow: 0 10px 20px rgba(30, 45, 42, 0.12);
  transform: translateY(-2px);
}

.rating-button strong {
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1;
}

.rating-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}

.rating-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
  pointer-events: none;
}

.rating-button span {
  font-size: 12px;
  font-weight: 800;
}

.records-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.record-item,
.record-admin-item {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcfb;
}

.record-item {
  padding: 16px;
}

.record-main {
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(260px, 1.25fr);
  align-items: center;
  gap: 18px;
}

.record-title-wrap {
  display: grid;
  gap: 6px;
}

.record-title-wrap > strong {
  color: var(--green);
  font-size: 19px;
  line-height: 1.2;
}

.record-date {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.record-scoreline {
  display: grid;
  grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr);
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(90deg, rgba(255, 118, 87, 0.13), rgba(53, 116, 140, 0.13));
}

.record-team {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.record-team-a {
  color: #a84632;
  text-align: right;
}

.record-team-b {
  color: var(--blue);
}

.record-score {
  min-width: 72px;
  border-radius: 11px;
  padding: 7px 12px;
  color: white;
  background: var(--green);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 20px rgba(22, 76, 69, 0.18);
}

.record-item p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .app-shell {
    padding: 32px 0;
  }

  .hero {
    align-items: flex-start;
    padding: 26px;
  }

  .hero::after {
    right: -72px;
    bottom: -118px;
  }

  .workspace,
  .arena-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .app-shell {
    width: min(100% - 20px, 620px);
  }

  .hero {
    display: grid;
    gap: 20px;
    padding: 22px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .hero-badge {
    width: 82px;
    height: 82px;
  }

  .hero-badge span {
    font-size: 28px;
  }

  .hero-badge small {
    font-size: 11px;
  }

  .panel {
    padding: 20px;
  }

  .input-row {
    flex-direction: column;
  }

  .groups-container {
    grid-template-columns: 1fr;
  }

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

  .rating-button {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 54px;
  }

  .rating-label {
    justify-content: flex-start;
  }

  .record-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .record-scoreline {
    grid-template-columns: 1fr auto 1fr;
  }

  .record-team {
    font-size: 15px;
  }

  .record-score {
    min-width: 64px;
    font-size: 23px;
  }

  .team-motto {
    white-space: normal;
  }

}

.delete-button {
  margin-left: auto;
  border: 0;
  padding: 5px 7px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
}

.delete-button:hover {
  color: var(--orange);
}

.admin-shell {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0;
}

.admin-list {
  margin-top: 22px;
}

.admin-list .participant-item {
  background: #fbfcfb;
}

.reserve-badge {
  margin-left: auto;
  border-radius: 999px;
  padding: 3px 7px;
  color: #a84632;
  background: var(--orange-soft);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-list .reserve-badge {
  margin-left: 0;
}

.admin-controls {
  margin-top: 24px;
}

.admin-settings {
  padding: 16px;
  border-radius: 14px;
  background: #f5faf8;
}

.admin-settings label {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.danger-button,
.save-button {
  border: 0;
  border-radius: 9px;
  padding: 8px 10px;
  font-weight: 700;
}

.danger-button {
  color: #a84632;
  background: var(--orange-soft);
}

.save-button {
  margin-left: auto;
  color: white;
  background: var(--green-bright);
}

.admin-participant {
  gap: 8px;
}

.admin-number-input {
  width: 76px;
  flex: 0 0 auto;
}

.admin-name-input {
  flex: 1 1 180px;
}

.admin-participant input {
  padding: 8px 9px;
}

.record-admin-panel {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.record-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.score-input-row {
  display: grid;
  grid-template-columns: auto 72px auto 72px auto;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fbfcfb;
}

.score-input-row span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.score-input-row strong {
  color: var(--muted);
  text-align: center;
}

.score-input-row input {
  padding: 8px 9px;
  text-align: center;
}

.record-admin-list {
  margin-top: 18px;
}

.record-admin-item {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(260px, 1.4fr) minmax(120px, 0.65fr);
  gap: 9px;
  padding: 12px;
}

.record-admin-item textarea,
.record-admin-item .record-actions {
  grid-column: 1 / -1;
}

.record-admin-item input,
.record-admin-item textarea {
  padding: 9px 10px;
}

.record-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 560px) {
  .admin-list {
    grid-template-columns: 1fr;
  }

  .admin-participant {
    flex-wrap: wrap;
  }

  .record-admin-item {
    grid-template-columns: 1fr;
  }

  .score-input-row {
    grid-template-columns: 1fr 62px auto 62px 1fr;
    gap: 7px;
  }

  .score-input-row span {
    font-size: 12px;
  }
}

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

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

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

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  70% {
    transform: scale(1.02) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes list-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-team {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes badge-breathe {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(22, 76, 69, 0.2);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 18px 38px rgba(22, 76, 69, 0.28);
    transform: translateY(-2px);
  }
}

@keyframes light-sweep {
  0%,
  55% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

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