:root {
  --bg: #07090f;
  --panel: #151923;
  --panel-strong: #1b2130;
  --text: #f7f8fc;
  --muted: #aab1c5;
  --soft: #768096;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #fbff45;
  --green: #20e5a6;
  --hot: #ff5c7a;
  --orange: #ffb84d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 14% -4%, rgba(251, 255, 69, 0.16), transparent 34%),
    radial-gradient(circle at 94% 2%, rgba(32, 229, 166, 0.13), transparent 38%),
    linear-gradient(180deg, #07090f 0%, #0b0e16 48%, #07090f 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.sticky-ad-visible {
  padding-bottom: 74px;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(100%, var(--content));
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 16px 70px;
}

.hero {
  padding: 14px 0 18px;
}

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-link {
  min-width: 48px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.lang-link.is-active {
  color: #07110d;
  background: var(--accent);
}

.logo {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.brand-subtitle {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 11vw, 94px);
  line-height: 0.92;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.hero-copy,
.hero-punch {
  margin: 16px 0 0;
  max-width: 780px;
  color: #e4e8f5;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 680;
}

.hero-punch {
  margin-top: 8px;
  color: var(--muted);
}

.ad-slot {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  color: #d8deee;
  text-align: center;
  font-weight: 800;
  padding: 14px;
}

.ad-slot.ad-removed,
.sticky-ad.ad-removed {
  display: none !important;
}

#top-ad {
  margin: 8px 0 18px;
  min-height: 90px;
}

.monetization-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(251, 255, 69, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(251, 255, 69, 0.12), rgba(32, 229, 166, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.monetization-bar strong {
  display: block;
  color: var(--accent);
  font-size: 15px;
  font-weight: 950;
}

.monetization-bar span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 720;
}

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

.auth-status {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(32, 229, 166, 0.28);
  border-radius: var(--radius);
  color: #dffbf3;
  background: rgba(32, 229, 166, 0.08);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  max-width: 100%;
  min-width: 0;
}

.panel,
.metric-card,
.share-card,
.shock-panel {
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.panel {
  padding: 18px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label,
.label-text {
  color: #eef2fb;
  font-size: 14px;
  font-weight: 800;
}

.helper {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.27);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}

select option {
  color: #111827;
  background: #fff;
}

input:focus,
select:focus {
  border-color: rgba(251, 255, 69, 0.78);
  box-shadow: 0 0 0 3px rgba(251, 255, 69, 0.14);
}

.hidden {
  display: none !important;
}

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

.segment,
.rate-button {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 850;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.segment {
  min-height: 44px;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.rate-button {
  min-height: 66px;
  padding: 10px;
  text-align: left;
}

.rate-button strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.rate-button span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.35;
}

.segment:hover,
.rate-button:hover,
.primary-button:hover,
.copy-button:hover {
  transform: translateY(-1px);
}

.segment.is-active,
.rate-button.is-active {
  border-color: rgba(251, 255, 69, 0.82);
  background: rgba(251, 255, 69, 0.13);
  color: var(--accent);
}

.error-box {
  display: none;
  margin: 4px 0 14px;
  padding: 12px;
  border: 1px solid rgba(255, 92, 122, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 92, 122, 0.12);
  color: #ffd8df;
  font-size: 14px;
  line-height: 1.6;
}

.error-box.is-visible {
  display: block;
}

.primary-button,
.copy-button,
.small-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 950;
}

.primary-button {
  color: #080a0d;
  background: linear-gradient(135deg, var(--accent), #ffcf33);
  font-size: 18px;
  box-shadow: 0 18px 38px rgba(251, 255, 69, 0.2);
}

.small-button {
  min-height: 44px;
  border: 1px solid rgba(251, 255, 69, 0.5);
  color: #080a0d;
  background: var(--accent);
  padding: 8px 12px;
}

.small-button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
}

.small-button.subtle {
  min-height: 40px;
  color: var(--soft);
  font-size: 13px;
}

.results {
  display: none;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.results.is-visible {
  display: grid;
}

.shock-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border-color: rgba(251, 255, 69, 0.32);
  background:
    linear-gradient(135deg, rgba(251, 255, 69, 0.18), rgba(32, 229, 166, 0.08) 52%, rgba(255, 92, 122, 0.1)),
    #121720;
}

.shock-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.shock-panel h2 {
  margin: 0;
  font-size: clamp(28px, 8vw, 60px);
  line-height: 1.06;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.shock-panel h2 span,
.shock-panel strong,
.metric-card strong,
.share-content strong {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(251, 255, 69, 0.18);
}

.shock-panel p {
  margin: 12px 0 0;
  color: #e8edf8;
  line-height: 1.65;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.shock-image {
  width: min(100%, 360px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  justify-self: center;
  align-self: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 0;
}

.metric-card {
  padding: 16px;
}

.metric-card h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.metric-card strong {
  display: block;
  font-size: clamp(24px, 7vw, 40px);
  line-height: 1.05;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.metric-card p {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}

.native-ad {
  min-height: 92px;
  justify-items: start;
  place-items: center start;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

th {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 900;
}

td {
  color: #f1f3fb;
  font-size: 14px;
  font-weight: 720;
}

tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.status-now {
  color: #07110d;
  background: var(--green);
  border-color: var(--green);
}

.status-future {
  color: #080a0d;
  background: var(--accent);
  border-color: var(--accent);
}

.status-past {
  color: #fff1f4;
  background: rgba(255, 92, 122, 0.16);
  border-color: rgba(255, 92, 122, 0.42);
}

.chart-head {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend i {
  width: 24px;
  height: 3px;
  border-radius: 999px;
}

.line-cost {
  background: var(--orange);
}

.line-invest {
  background: var(--green);
}

#wealthChart {
  width: 100%;
  max-width: 100%;
  height: 320px;
  display: block;
}

.comparison-grid,
.roast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.comparison-item,
.roast-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  color: #eef2fb;
}

.comparison-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.comparison-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
}

.comparison-item strong {
  color: var(--accent);
  font-size: 22px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.comparison-item p {
  margin: 4px 0 0;
  color: var(--soft);
  font-size: 13px;
}

.roast-item {
  border-color: rgba(251, 255, 69, 0.22);
  background: rgba(251, 255, 69, 0.055);
  font-weight: 800;
  line-height: 1.5;
}

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

.details-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.detail-panel {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.formula-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(32, 229, 166, 0.28);
  border-radius: var(--radius);
  background: rgba(32, 229, 166, 0.06);
}

.formula-box strong {
  color: var(--green);
  font-size: 14px;
}

.formula-box span {
  color: #dfe5f3;
  font-size: 13px;
  line-height: 1.55;
}

.share-card {
  display: grid;
  gap: 0;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 255, 69, 0.17), rgba(32, 229, 166, 0.08)),
    #111721;
}

.share-visual-wrap {
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(251, 255, 69, 0.12), transparent 42%),
    rgba(0, 0, 0, 0.16);
  padding: 16px;
}

.share-visual {
  width: min(100%, 360px);
  max-height: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.share-content {
  padding: 18px;
  min-width: 0;
}

.share-content h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 7vw, 42px);
  line-height: 1.08;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.share-content p {
  margin: 10px 0;
  color: #f1f4fc;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 680;
  overflow-wrap: anywhere;
}

.share-content strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(30px, 9vw, 54px);
  line-height: 1.05;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.share-brand {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 800;
}

.share-qr-block {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(251, 255, 69, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.share-qr-block canvas {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #fff;
}

.share-qr-block span {
  min-width: 0;
  color: #f7f8fc;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.copy-row {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.copy-button {
  color: #07110d;
  background: var(--green);
}

.copy-tip {
  min-height: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.download-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(32, 229, 166, 0.55);
  color: #07110d;
  background: var(--green);
  text-decoration: none;
  font-weight: 950;
}

.share-output {
  grid-column: 1 / -1;
  width: min(100%, 420px);
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}

#footer-ad {
  margin-top: 18px;
  min-height: 80px;
}

.data-note,
.disclaimer {
  margin: 18px 0 0;
  color: #929bad;
  font-size: 12px;
  line-height: 1.8;
}

.disclaimer {
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  font-size: 12px;
}

.footer-links a {
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
}

.legal-page .panel {
  margin-top: 18px;
}

.legal-page h2 {
  margin: 22px 0 8px;
  color: #ffffff;
}

.legal-page p,
.legal-page li {
  color: #d5dbea;
  line-height: 1.85;
}

.legal-page ul {
  padding-left: 20px;
}

.sticky-ad {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 50px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 22, 31, 0.94);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.sticky-ad.is-hidden {
  display: none;
}

.sticky-ad span {
  color: #eef2fb;
  font-size: 12px;
  font-weight: 800;
}

.sticky-ad button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  padding: 22px;
  border: 1px solid rgba(251, 255, 69, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(251, 255, 69, 0.12), rgba(32, 229, 166, 0.07)),
    #111721;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 20px;
}

.modal-card h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 950;
}

.modal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.auth-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.auth-form label {
  color: #eef2fb;
  font-size: 13px;
  font-weight: 850;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

.auth-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.auth-actions .small-button {
  flex: 1 1 150px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 0;
}

.plan-card {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  text-align: left;
}

.plan-card.is-active {
  border-color: rgba(251, 255, 69, 0.85);
  background: rgba(251, 255, 69, 0.12);
}

.plan-card strong,
.plan-card span,
.plan-card em {
  display: block;
}

.plan-card strong {
  color: var(--accent);
  font-size: 19px;
  font-style: normal;
  font-weight: 950;
}

.plan-card span {
  margin-top: 4px;
  color: #f1f4fb;
  font-size: 14px;
  font-weight: 850;
}

.plan-card em {
  margin-top: 6px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
  font-style: normal;
}

.modal-note {
  margin-top: 12px !important;
  color: #8992a8 !important;
  font-size: 12px;
}

@media (max-width: 520px) {
  .hero-top {
    display: grid;
  }

  .language-switch {
    justify-self: start;
  }

  .page-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .panel,
  .shock-panel,
  .metric-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  table {
    min-width: 560px;
  }

  th,
  td {
    padding: 12px 10px;
  }
}

@media (min-width: 700px) {
  .page-shell {
    padding: 34px 24px 82px;
  }

  .app-layout {
    grid-template-columns: minmax(330px, 430px) minmax(0, 1fr);
  }

  .monetization-bar {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .monetization-actions {
    min-width: 280px;
  }

  .input-panel {
    position: sticky;
    top: 18px;
  }

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

  .shock-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-grid,
  .roast-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .share-card {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .copy-row {
    grid-column: 1 / -1;
    grid-template-columns: 220px 140px 140px 1fr;
    align-items: center;
  }

  .details-head {
    grid-template-columns: 1fr 180px;
    align-items: center;
  }

  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .metric-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chart-head {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  #wealthChart {
    height: 360px;
  }
}

@media (min-width: 820px) {
  body.sticky-ad-visible {
    padding-bottom: 0;
  }

  .sticky-ad {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
