:root {
  --gold: #f3d900;
  --gold-light: #fff176;
  --gold-warm: #ffc400;
  --gold-deep: #a87500;
  --cream: #fffce8;
  --ink: #fffef3;
  --muted: rgba(255, 252, 232, 0.64);
  --muted-strong: rgba(255, 252, 232, 0.78);
  --surface: rgba(13, 13, 10, 0.88);
  --surface-light: rgba(255, 237, 78, 0.055);
  --line: rgba(243, 217, 0, 0.24);
  --success: #88ff9f;
  --danger: #ff7777;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background: #041d16;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--ink);
  background: #041d16;
  font-family: "Inter", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.scene {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #041d16;
}

.scene::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    radial-gradient(circle at center, rgba(255, 243, 118, 0.4) 0 1px, transparent 1.4px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.2px);
  background-position: 0 0, 36px 48px;
  background-size: 86px 86px, 128px 128px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 217, 0, 0.07), transparent 46%),
    radial-gradient(ellipse at 50% 100%, rgba(4, 29, 22, 0.9), transparent 55%);
}

.scene-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(7px);
  opacity: 0.28;
  animation: glow-drift 12s ease-in-out infinite alternate;
}

.glow-one {
  top: -220px;
  left: calc(50% - 430px);
  width: 860px;
  height: 430px;
  background: radial-gradient(ellipse, rgba(243, 217, 0, 0.19), transparent 68%);
}

.glow-two {
  top: 30%;
  left: -300px;
  width: 610px;
  height: 610px;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.07), transparent 70%);
  animation-delay: -4s;
}

.glow-three {
  right: -280px;
  bottom: -240px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(243, 217, 0, 0.08), transparent 70%);
  animation-delay: -7s;
}

.light-beam {
  position: absolute;
  top: -20%;
  width: 130px;
  height: 145%;
  opacity: 0.28;
  background: linear-gradient(90deg, transparent, rgba(255, 239, 89, 0.05), transparent);
  filter: blur(14px);
  transform: rotate(24deg);
}

.beam-one {
  left: 14%;
  animation: beam-move 14s ease-in-out infinite alternate;
}

.beam-two {
  right: 12%;
  animation: beam-move 18s ease-in-out -8s infinite alternate-reverse;
}

.grid-floor {
  position: absolute;
  right: -30%;
  bottom: -32%;
  left: -30%;
  height: 70%;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(243, 217, 0, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 217, 0, 0.25) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, transparent 90%);
  transform: perspective(390px) rotateX(62deg);
  transform-origin: center;
}

.sparkles {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.sparkles i {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 6px 2px rgba(243, 217, 0, 0.6),
    0 0 18px 5px rgba(243, 217, 0, 0.18);
  animation: twinkle 3.8s var(--d) ease-in-out infinite;
}

.sparkles i:nth-child(3n)::before,
.sparkles i:nth-child(3n)::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(255, 246, 155, 0.82);
  transform: translate(-50%, -50%);
}

.sparkles i:nth-child(3n)::before {
  width: 13px;
  height: 1px;
}

.sparkles i:nth-child(3n)::after {
  width: 1px;
  height: 13px;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 790px);
  margin: 0 auto;
  padding: 30px 20px 34px;
}

.head {
  position: relative;
  margin-bottom: 26px;
  text-align: center;
  animation: reveal-down 0.7s ease both;
}

.logo-stage {
  position: relative;
  display: grid;
  width: min(300px, 74vw);
  min-height: 76px;
  margin: 0 auto 5px;
  place-items: center;
}

.logo-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 255px;
  height: 72px;
  border-radius: 50%;
  background: rgba(243, 217, 0, 0.25);
  filter: blur(33px);
  transform: translate(-50%, -50%);
  animation: logo-breathe 3.6s ease-in-out infinite;
}

.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(240px, 66vw);
  height: 70px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 5px rgba(255, 233, 32, 0.44))
    drop-shadow(0 0 22px rgba(255, 211, 0, 0.2));
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-kicker i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-kicker i:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  margin-top: 9px;
  color: #fffef1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(25px, 5vw, 37px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.7);
}

.hero-title span {
  color: transparent;
  background: linear-gradient(110deg, #af7900 0%, #ffe900 36%, #fff8a3 50%, #f2d700 67%, #a16d00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 200% auto;
  filter: drop-shadow(0 0 12px rgba(243, 217, 0, 0.2));
  animation: title-shimmer 5s linear infinite;
}

.tag {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 29px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 237, 64, 0.08), transparent 31%),
    radial-gradient(circle at 100% 100%, rgba(255, 196, 0, 0.06), transparent 34%),
    linear-gradient(145deg, rgba(20, 20, 15, 0.96), rgba(8, 8, 7, 0.94));
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.64),
    0 0 0 1px rgba(255, 255, 255, 0.018) inset,
    0 0 50px rgba(243, 217, 0, 0.045);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  animation: card-reveal 0.75s 0.08s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.055), transparent 19%, transparent 80%, rgba(243, 217, 0, 0.025)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.008) 13px 14px);
  pointer-events: none;
}

.card-shine {
  position: absolute;
  z-index: 0;
  top: -80%;
  left: -70%;
  width: 60%;
  height: 260%;
  opacity: 0.62;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 135, 0.065), transparent);
  transform: rotate(24deg);
  animation: card-sweep 8s 1s ease-in-out infinite;
  pointer-events: none;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  opacity: 0.75;
  pointer-events: none;
}

.corner::before,
.corner::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.corner::before {
  width: 28px;
  height: 1px;
}

.corner::after {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--gold), transparent);
}

.corner-tl {
  top: 13px;
  left: 13px;
}

.corner-tr {
  top: 13px;
  right: 13px;
  transform: rotate(90deg);
}

.corner-br {
  right: 13px;
  bottom: 13px;
  transform: rotate(180deg);
}

.corner-bl {
  bottom: 13px;
  left: 13px;
  transform: rotate(270deg);
}

.login {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(340px, 1.35fr);
  align-items: center;
  min-height: 480px;
  padding: 45px 44px 42px 30px;
}

.login-visual,
.login-copy {
  position: relative;
  z-index: 1;
}

.login-visual {
  display: grid;
  min-height: 300px;
  place-items: center;
  perspective: 700px;
}

.reward-medallion {
  position: relative;
  display: grid;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 242, 106, 0.58);
  border-radius: 50%;
  color: #1a1500;
  background:
    radial-gradient(circle at 36% 28%, #fffaae 0 5%, transparent 6%),
    radial-gradient(circle at 35% 28%, #fff9a2 0%, #ffe600 25%, #f2bd00 67%, #8b5b00 100%);
  box-shadow:
    0 0 0 7px rgba(243, 217, 0, 0.06),
    0 0 0 14px rgba(243, 217, 0, 0.025),
    0 0 45px rgba(243, 217, 0, 0.35),
    0 20px 44px rgba(0, 0, 0, 0.58),
    0 3px 0 rgba(255, 250, 178, 0.82) inset,
    0 -9px 15px rgba(116, 73, 0, 0.42) inset;
  place-items: center;
  animation: medallion-float 4s ease-in-out infinite;
}

.reward-medallion::before {
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(92, 61, 0, 0.54);
  border-radius: 50%;
  content: "";
  animation: spin 18s linear infinite;
}

.reward-medallion::after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  height: 19px;
  border-radius: 50%;
  content: "";
  background: rgba(89, 55, 0, 0.19);
  filter: blur(9px);
}

.reward-medallion svg {
  z-index: 1;
  width: 62px;
  height: 62px;
  stroke-width: 1.45;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.28));
}

.medallion-star {
  position: absolute;
  top: -22px;
  right: 5px;
  color: var(--gold-light);
  font-size: 24px;
  text-shadow: 0 0 14px var(--gold);
  animation: star-pop 2.2s ease-in-out infinite;
}

.reward-orbit {
  position: absolute;
  border: 1px solid rgba(243, 217, 0, 0.17);
  border-radius: 50%;
}

.reward-orbit::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold-light);
  box-shadow: 0 0 14px var(--gold);
}

.orbit-one {
  width: 190px;
  height: 190px;
  animation: spin 13s linear infinite;
}

.orbit-two {
  width: 240px;
  height: 240px;
  border-style: dashed;
  opacity: 0.6;
  animation: spin-reverse 24s linear infinite;
}

.float-diamond {
  position: absolute;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(243, 217, 0, 0.72);
  animation: diamond-float 3.4s ease-in-out infinite alternate;
}

.diamond-one {
  top: 45px;
  left: 18px;
  font-size: 12px;
}

.diamond-two {
  right: 12px;
  bottom: 52px;
  font-size: 19px;
  animation-delay: -1.6s;
}

.section-label {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
}

.section-label::before {
  width: 16px;
  height: 1px;
  margin-right: 7px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 7px rgba(243, 217, 0, 0.8);
}

.login h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 4.5vw, 36px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.login h2 em {
  color: transparent;
  background: linear-gradient(100deg, #c58e00, #ffe600 38%, #fff7a0 56%, #dcae00);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.lead {
  max-width: 440px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.benefits > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(243, 217, 0, 0.14);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(243, 217, 0, 0.045);
  font-size: 11px;
  font-weight: 600;
}

.benefits svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

form {
  margin-top: 21px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 252, 232, 0.58);
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.input-shell {
  position: relative;
  display: flex;
  height: 55px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  transition: 0.25s ease;
}

.input-shell > svg {
  flex: 0 0 auto;
  align-self: center;
  width: 19px;
  height: 19px;
  margin-left: 16px;
  color: rgba(255, 245, 175, 0.55);
  transition: 0.25s ease;
}

.input-shell input {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fffef4;
  background: transparent;
  padding: 0 15px 0 11px;
  font-size: 14px;
  font-weight: 600;
}

.input-shell input::placeholder {
  color: rgba(255, 252, 232, 0.3);
}

.input-focus {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px rgba(243, 217, 0, 0.65);
  transition: 0.3s ease;
}

.input-shell:focus-within {
  border-color: rgba(243, 217, 0, 0.48);
  background: rgba(243, 217, 0, 0.045);
  box-shadow: 0 0 0 3px rgba(243, 217, 0, 0.055);
}

.input-shell:focus-within > svg {
  color: var(--gold);
}

.input-shell:focus-within .input-focus {
  right: 0;
  left: 0;
}

.btn {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 56px;
  overflow: hidden;
  margin-top: 13px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn::before {
  position: absolute;
  z-index: -1;
  top: -20%;
  left: -40%;
  width: 25%;
  height: 140%;
  content: "";
  opacity: 0.7;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  filter: blur(2px);
  transform: skewX(-18deg);
  animation: button-sweep 3.8s ease-in-out infinite;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.btn.gold {
  border: 1px solid rgba(255, 255, 196, 0.8);
  color: #171300;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.48), transparent 38%),
    linear-gradient(100deg, #c38b00 0%, #ffe600 35%, #fff367 52%, #e9c400 72%, #b37b00 100%);
  background-size: 180% auto;
  box-shadow:
    0 8px 28px rgba(243, 217, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 -4px 10px rgba(128, 80, 0, 0.24) inset;
}

.btn:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow:
    0 11px 38px rgba(243, 217, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transform: translateY(-2px);
}

.btn:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.btn:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.btn:disabled {
  cursor: not-allowed;
  filter: saturate(0.45);
  opacity: 0.55;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  color: rgba(255, 252, 232, 0.35);
  font-size: 9px;
}

.secure-note svg {
  width: 13px;
  height: 13px;
}

.login-flow {
  margin-top: 16px;
  margin-bottom: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(243, 217, 0, 0.12);
}

.login-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-flow-steps li {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px 10px;
  border: 1px solid rgba(243, 217, 0, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(243, 217, 0, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.02);
  text-align: center;
}

.login-flow-steps li::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  color: rgba(243, 217, 0, 0.55);
  font-size: 14px;
  line-height: 1;
  content: "›";
  transform: translateY(-50%);
  text-shadow: 0 0 10px rgba(243, 217, 0, 0.35);
}

.login-flow-steps li:last-child::after {
  content: none;
}

.login-flow-steps small {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.login-flow-steps strong {
  color: #fff8d8;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.login-flow-reward {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(243, 217, 0, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 236, 90, 0.16), transparent 42%),
    linear-gradient(110deg, rgba(243, 217, 0, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 24px rgba(243, 217, 0, 0.08);
}

.login-flow-gift {
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(243, 217, 0, 0.35));
}

.login-flow-reward strong {
  color: #fff4b8;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.login-flow-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 12px;
  color: rgba(255, 252, 232, 0.58);
  font-size: 11px;
  line-height: 1.55;
}

.login-flow-info {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold-light);
  font-size: 13px;
  line-height: 1;
}

.mission {
  padding: 35px 34px 30px;
}

.mission > *:not(.card-shine, .corner) {
  position: relative;
  z-index: 1;
}

.mission-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mission-top h2 {
  max-width: 510px;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.042em;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(136, 255, 159, 0.08), 0 0 10px rgba(136, 255, 159, 0.65);
  animation: online-pulse 2s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 252, 232, 0.62);
  background: rgba(255, 255, 255, 0.045);
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.badge.hot {
  border-color: rgba(243, 217, 0, 0.28);
  color: var(--gold-light);
  background: rgba(243, 217, 0, 0.08);
  box-shadow: 0 0 18px rgba(243, 217, 0, 0.08);
}

.badge.ok {
  border-color: rgba(136, 255, 159, 0.35);
  color: var(--success);
  background: rgba(136, 255, 159, 0.08);
  box-shadow: 0 0 18px rgba(136, 255, 159, 0.08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0 26px;
}

.stat {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 15px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 17px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 239, 93, 0.07), transparent 40%),
    rgba(255, 255, 255, 0.025);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat::after {
  position: absolute;
  right: -15px;
  bottom: -32px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  content: "";
  background: rgba(243, 217, 0, 0.045);
  filter: blur(3px);
}

.stat:hover {
  border-color: rgba(243, 217, 0, 0.24);
  background-color: rgba(243, 217, 0, 0.035);
  transform: translateY(-3px);
}

.stat-icon {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(243, 217, 0, 0.2);
  border-radius: 9px;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(243, 217, 0, 0.12), rgba(243, 217, 0, 0.025));
  box-shadow: 0 0 15px rgba(243, 217, 0, 0.06);
  place-items: center;
}

.stat-icon svg {
  width: 17px;
  height: 17px;
}

.stat > span:not(.reward-rays) {
  display: block;
  overflow: hidden;
  color: rgba(255, 252, 232, 0.48);
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat strong {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: #fffef1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 5px;
  color: rgba(255, 252, 232, 0.34);
  font-size: 9px;
}

.stat-reward {
  border-color: rgba(243, 217, 0, 0.25);
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 235, 45, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(243, 217, 0, 0.11), rgba(122, 87, 0, 0.035));
  box-shadow: 0 0 24px rgba(243, 217, 0, 0.055) inset;
}

.stat-reward strong {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(243, 217, 0, 0.22);
}

.reward-rays {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 120px;
  height: 120px;
  opacity: 0.14;
  background: repeating-conic-gradient(from 0deg, var(--gold) 0 5deg, transparent 5deg 17deg);
  animation: spin 20s linear infinite;
}

.journey-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.journey-title > span,
.journey-title > small {
  color: rgba(255, 252, 232, 0.43);
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.journey-title > small {
  color: var(--gold);
}

.journey-title i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 217, 0, 0.19), transparent);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  list-style: none;
}

.steps::before {
  position: absolute;
  z-index: 0;
  top: 21px;
  right: 14%;
  left: 14%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 4px, transparent 4px 8px);
}

.steps li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 252, 232, 0.4);
  text-align: center;
  transition: color 0.3s ease;
}

.steps b {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 252, 232, 0.4);
  background: #11110e;
  box-shadow: 0 0 0 5px rgba(8, 8, 7, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-style: normal;
  place-items: center;
  transition: 0.3s ease;
}

.steps b svg {
  position: absolute;
  display: none;
  width: 19px;
  height: 19px;
  stroke-width: 2.5;
}

.steps li > div {
  margin-top: 10px;
}

.steps li small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 252, 232, 0.25);
  font-family: "Montserrat", sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.steps li div > span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.steps li.on {
  color: #fffef1;
}

.steps li.on b {
  border-color: rgba(255, 246, 136, 0.82);
  color: #171300;
  background: linear-gradient(145deg, #fff171, #e4bd00);
  box-shadow:
    0 0 0 5px rgba(243, 217, 0, 0.06),
    0 0 24px rgba(243, 217, 0, 0.32);
  animation: step-pulse 2.4s ease-in-out infinite;
}

.steps li.on small {
  color: var(--gold);
}

.steps li.done {
  color: rgba(255, 252, 232, 0.74);
}

.steps li.done b {
  border-color: rgba(136, 255, 159, 0.65);
  color: #09280f;
  background: linear-gradient(145deg, #b2ffbf, #53d96c);
  box-shadow:
    0 0 0 5px rgba(136, 255, 159, 0.05),
    0 0 18px rgba(136, 255, 159, 0.2);
}

.steps li.done b span {
  display: none;
}

.steps li.done b svg {
  display: block;
}

.steps li.done small {
  color: rgba(136, 255, 159, 0.75);
}

.progress-block {
  position: relative;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(243, 217, 0, 0.14);
  border-radius: 19px;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 217, 0, 0.075), transparent 35%),
    rgba(255, 255, 255, 0.018);
}

.progress-block::before {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(243, 217, 0, 0.04);
  filter: blur(10px);
}

.progress-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 13px;
}

.progress-head > div > span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 252, 232, 0.4);
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.progress-head strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.progress-percent {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(243, 217, 0, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(243, 217, 0, 0.07);
  box-shadow: 0 0 22px rgba(243, 217, 0, 0.09) inset;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 900;
  place-items: center;
}

.bar {
  position: relative;
  height: 15px;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55) inset,
    0 1px 0 rgba(255, 255, 255, 0.025);
}

.bar::after {
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  content: "";
  opacity: 0.34;
  background: repeating-linear-gradient(90deg, transparent 0 calc(10% - 1px), rgba(255, 255, 255, 0.17) calc(10% - 1px) 10%);
}

.bar i {
  position: relative;
  z-index: 1;
  display: block;
  width: 0;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #9c6900, #f2cc00 38%, #fff677 70%, #e2ac00);
  background-size: 180% 100%;
  box-shadow:
    0 0 8px rgba(243, 217, 0, 0.7),
    0 0 20px rgba(243, 217, 0, 0.25);
  transition: width 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: progress-shimmer 2s linear infinite;
}

.bar i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: #fffbd1;
  box-shadow: 0 0 12px 4px rgba(255, 232, 35, 0.76);
  transform: translate(20%, -50%);
}

.bar i span {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent 50%);
}

.progress-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: rgba(255, 252, 232, 0.25);
  font-family: "Montserrat", sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mission-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.notice-icon {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--gold);
  background: rgba(243, 217, 0, 0.075);
  place-items: center;
}

.notice-icon svg {
  width: 16px;
  height: 16px;
}

.hint {
  color: rgba(255, 252, 232, 0.5);
  font-size: 10px;
  line-height: 1.55;
}

.start-button {
  margin-top: 16px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: none;
}

.action-link:hover,
.action-link:focus-visible {
  color: var(--gold-light);
}

.start-button.is-waiting:disabled {
  cursor: default;
  border-color: rgba(243, 217, 0, 0.42);
  color: #ffe566;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 242, 109, 0.1), transparent 50%),
    linear-gradient(100deg, rgba(86, 64, 0, 0.34), rgba(243, 217, 0, 0.1), rgba(86, 64, 0, 0.34));
  box-shadow: none;
  filter: none;
  opacity: 1;
}

.start-button.is-waiting > svg {
  display: none;
}

.start-button.is-waiting #startBtnLabel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.start-button.is-waiting #startBtnLabel::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #f3d900;
  box-shadow:
    0 0 0 4px rgba(243, 217, 0, 0.08),
    0 0 10px rgba(243, 217, 0, 0.55);
  animation: online-pulse 2s ease-in-out infinite;
}

.start-button.is-status:disabled {
  cursor: default;
  border-color: rgba(243, 217, 0, 0.34);
  color: var(--gold-light);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 242, 109, 0.12), transparent 50%),
    linear-gradient(100deg, rgba(116, 82, 0, 0.36), rgba(243, 217, 0, 0.12), rgba(116, 82, 0, 0.36));
  box-shadow:
    0 8px 28px rgba(243, 217, 0, 0.09),
    0 0 22px rgba(243, 217, 0, 0.06) inset;
  filter: none;
  opacity: 1;
}

.start-button.is-status > svg {
  display: none;
}

.start-button.is-status #startBtnLabel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.start-button.is-status #startBtnLabel::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--success);
  box-shadow:
    0 0 0 4px rgba(136, 255, 159, 0.07),
    0 0 10px rgba(136, 255, 159, 0.72);
  animation: online-pulse 2s ease-in-out infinite;
}

.start-button.is-rewarded:disabled {
  border-color: rgba(136, 255, 159, 0.38);
  color: #c6ffd0;
  background:
    radial-gradient(circle at 50% 0%, rgba(194, 255, 204, 0.12), transparent 50%),
    linear-gradient(100deg, rgba(20, 96, 39, 0.35), rgba(136, 255, 159, 0.1), rgba(20, 96, 39, 0.35));
  box-shadow:
    0 8px 28px rgba(136, 255, 159, 0.08),
    0 0 22px rgba(136, 255, 159, 0.05) inset;
}

.button-spark {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-shadow: 0 0 6px #fff;
  animation: button-star 2.2s ease-in-out infinite;
}

.spark-one {
  top: 8px;
  left: 14%;
}

.spark-two {
  right: 15%;
  bottom: 8px;
  animation-delay: -1.1s;
}

.error {
  min-height: 18px;
  margin-top: 9px;
  color: var(--danger);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 72, 72, 0.17);
}

.error:empty {
  min-height: 0;
  margin-top: 0;
}

.page-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  color: rgba(255, 252, 232, 0.25);
  font-family: "Montserrat", sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
  animation: reveal-up 0.7s 0.3s ease both;
}

.page-footer > span {
  display: inline-flex;
  align-items: center;
}

.page-footer i {
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 7px rgba(136, 255, 159, 0.65);
}

.footer-separator {
  color: rgba(243, 217, 0, 0.38);
}

.hidden {
  display: none !important;
}

.mission.campaign-unavailable .stats,
.mission.campaign-unavailable .journey-title,
.mission.campaign-unavailable .steps,
.mission.campaign-unavailable .progress-block,
.mission.campaign-unavailable .start-button,
.mission.campaign-unavailable .action-link {
  display: none;
}

.campaign-closed {
  position: relative;
  margin-top: 26px;
  padding: 38px 28px;
  overflow: hidden;
  border: 1px solid rgba(243, 217, 0, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 217, 0, 0.08), transparent 46%),
    rgba(8, 9, 7, 0.62);
  text-align: center;
}

.campaign-closed::before {
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.closed-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  color: var(--gold);
  border: 1px solid rgba(243, 217, 0, 0.26);
  border-radius: 50%;
  background: rgba(243, 217, 0, 0.07);
  box-shadow: 0 0 30px rgba(243, 217, 0, 0.08);
  font-size: 23px;
}

.campaign-closed > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.campaign-closed h3 {
  max-width: 590px;
  margin: 10px auto 12px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 3.3vw, 29px);
  line-height: 1.2;
}

.campaign-closed p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.campaign-closed small {
  display: block;
  max-width: 560px;
  margin: 18px auto 0;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  line-height: 1.55;
}

body.rewarded .mission {
  border-color: rgba(136, 255, 159, 0.32);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.64),
    0 0 55px rgba(136, 255, 159, 0.06);
}

body.rewarded .progress-block {
  border-color: rgba(136, 255, 159, 0.28);
}

body.rewarded .bar i {
  background: linear-gradient(90deg, #39b553, #8effa3, #d7ffdf);
  box-shadow: 0 0 18px rgba(136, 255, 159, 0.42);
}

.confetti {
  position: fixed;
  z-index: 8;
  top: -20px;
  left: var(--left);
  width: var(--width);
  height: calc(var(--width) * 0.45);
  border-radius: 2px;
  background: var(--color);
  box-shadow: 0 0 6px color-mix(in srgb, var(--color) 60%, transparent);
  pointer-events: none;
  animation: confetti-fall var(--duration) var(--delay) cubic-bezier(0.15, 0.55, 0.45, 0.98) forwards;
}

@keyframes reveal-down {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes card-reveal {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.16; transform: scale(0.65); }
  45% { opacity: 1; transform: scale(1.25); }
}

@keyframes glow-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(0.96); }
  to { transform: translate3d(4%, 3%, 0) scale(1.08); }
}

@keyframes beam-move {
  from { transform: translateX(-25vw) rotate(24deg); opacity: 0.12; }
  to { transform: translateX(28vw) rotate(24deg); opacity: 0.32; }
}

@keyframes logo-breathe {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes title-shimmer {
  to { background-position: -200% center; }
}

@keyframes card-sweep {
  0%, 62% { left: -70%; }
  82%, 100% { left: 145%; }
}

@keyframes medallion-float {
  0%, 100% { transform: translateY(-5px) rotateY(-7deg); }
  50% { transform: translateY(9px) rotateY(7deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes star-pop {
  0%, 100% { opacity: 0.45; transform: scale(0.7) rotate(0); }
  50% { opacity: 1; transform: scale(1.12) rotate(45deg); }
}

@keyframes diamond-float {
  from { opacity: 0.35; transform: translateY(-5px) rotate(0); }
  to { opacity: 1; transform: translateY(10px) rotate(35deg); }
}

@keyframes button-sweep {
  0%, 48% { left: -40%; }
  72%, 100% { left: 130%; }
}

@keyframes online-pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes step-pulse {
  0%, 100% {
    box-shadow: 0 0 0 5px rgba(243, 217, 0, 0.05), 0 0 18px rgba(243, 217, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(243, 217, 0, 0.02), 0 0 28px rgba(243, 217, 0, 0.39);
  }
}

@keyframes progress-shimmer {
  to { background-position: -180% 0; }
}

@keyframes button-star {
  0%, 100% { opacity: 0.3; transform: scale(0.7) rotate(0); }
  50% { opacity: 1; transform: scale(1.15) rotate(45deg); }
}

@keyframes confetti-fall {
  0% { opacity: 0; transform: translate3d(0, -20px, 0) rotate(0); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--drift), 105vh, 0) rotate(var(--spin)); }
}

@media (max-width: 690px) {
  .wrap {
    padding: 23px 14px 28px;
  }

  .head {
    margin-bottom: 20px;
  }

  .logo-stage {
    min-height: 62px;
  }

  .brand-logo {
    height: 58px;
  }

  .hero-title {
    margin-top: 8px;
  }

  .tag {
    margin-top: 8px;
    font-size: 11px;
  }

  .login {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 22px 18px 25px;
  }

  .login-copy {
    display: contents;
  }

  .login-visual {
    min-height: 150px;
    margin: 0 0 8px;
  }

  .login-flow {
    margin-top: 14px;
    margin-bottom: 14px;
    padding-top: 14px;
    padding-bottom: 0;
    border-top: 1px solid rgba(243, 217, 0, 0.12);
    border-bottom: none;
  }

  .section-label,
  .benefits {
    justify-content: center;
  }

  .login h2,
  .lead,
  .benefits,
  .secure-note {
    text-align: center;
  }

  .reward-medallion {
    width: 95px;
    height: 95px;
  }

  .reward-medallion svg {
    width: 45px;
    height: 45px;
  }

  .orbit-one {
    width: 132px;
    height: 132px;
  }

  .orbit-two {
    width: 165px;
    height: 165px;
  }

  .diamond-one {
    top: 22px;
    left: 17%;
  }

  .diamond-two {
    right: 17%;
    bottom: 27px;
  }

  .login-flow-steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .login-flow-steps li {
    min-height: 0;
    text-align: center;
    padding: 14px 12px;
  }

  .login-flow-steps li::after {
    content: none;
  }

  .login-flow-reward {
    flex-direction: column;
    text-align: center;
  }

  .login-flow-note {
    text-align: left;
  }

  .lead {
    margin-right: auto;
    margin-left: auto;
  }

  form,
  label {
    text-align: left;
  }

  .mission {
    padding: 27px 19px 23px;
  }

  .mission-top {
    display: block;
  }

  .badge {
    margin-top: 12px;
  }

  .stats {
    gap: 7px;
    margin: 21px 0 24px;
  }

  .stat {
    padding: 12px 9px 11px;
    text-align: center;
  }

  .stat-icon {
    margin-right: auto;
    margin-bottom: 9px;
    margin-left: auto;
  }

  .stat > span:not(.reward-rays) {
    font-size: 6.8px;
    letter-spacing: 0.07em;
  }

  .stat strong {
    font-size: clamp(14px, 4.4vw, 18px);
  }

  .stat small {
    display: none;
  }

  .steps {
    gap: 5px;
  }

  .steps::before {
    right: 13%;
    left: 13%;
  }

  .steps b {
    width: 39px;
    height: 39px;
  }

  .steps::before {
    top: 19px;
  }

  .steps li div > span {
    font-size: 9px;
  }

  .progress-block {
    padding: 16px 14px;
  }

  .progress-head strong {
    font-size: 16px;
  }

  .progress-percent {
    width: 43px;
    height: 43px;
    font-size: 9px;
  }

  .page-footer {
    font-size: 6px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding-right: 10px;
    padding-left: 10px;
  }

  .login {
    padding-right: 18px;
    padding-left: 18px;
  }

  .benefits > span {
    padding: 6px 8px;
    font-size: 9px;
  }

  .mission {
    padding-right: 14px;
    padding-left: 14px;
  }

  .stat {
    padding-right: 6px;
    padding-left: 6px;
  }

  .stat > span:not(.reward-rays) {
    font-size: 6px;
  }

  .stat strong {
    font-size: 13px;
  }

  .steps li div > span {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
