/* style.min.css — mystake-i.it */
/* Google Fonts loaded async in HTML head — not here */

/* ── FONT FALLBACKS — reduces CLS during font swap ── */
@font-face {
  font-family: 'Syne Fallback';
  src: local('Arial Black'), local('Arial Bold'), local('Arial');
  size-adjust: 108%;
  ascent-override: 98%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'DM Sans Fallback';
  src: local('Arial'), local('Helvetica Neue'), local('Helvetica');
  size-adjust: 98%;
  ascent-override: 94%;
  descent-override: 24%;
  line-gap-override: 0%;
}

/* ── CSS VARIABLES ── */
:root {
  --bg:       #07080f;
  --bg2:      #0e1120;
  --bg3:      #181d32;
  --surface:  #1e2540;
  --surface2: #252c4a;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);
  --accent:   #F9A825;
  --accent2:  #ffca4e;
  --gold:     #f0c040;
  --green:    #34d399;
  --red:      #f87171;
  --amber:    #c8860a;
  --text:     #f0f2ff;
  --text2:    #94a3b8;
  --text3:    #475569;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 20px; }

/* ── ANIMATED BACKGROUND ── */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: floatA 22s infinite alternate;
}
body::before {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(249,168,37,0.10), transparent 70%);
}
body::after {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(200,134,10,0.08), transparent 70%);
  animation-name: floatB; animation-duration: 18s;
}
@keyframes floatA { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,60px) scale(1.1); } }
@keyframes floatB { from { transform: translate(0,0) scale(1); } to { transform: translate(-50px,-40px) scale(1.08); } }

/* ── CONTAINERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 80px 0; position: relative; z-index: 1; }
.sec-alt { background: var(--bg2); }
.sec-deep { background: var(--bg3); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Syne', 'Syne Fallback', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(1.8em, 4vw, 2.8em); font-weight: 800; }
h2 { font-size: clamp(1.4em, 3vw, 2em); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.2em; font-weight: 700; }
p { color: var(--text2); line-height: 1.8; }

.sec-title { text-align: center; margin-bottom: 48px; }
.sec-title h2 { margin-bottom: 12px; }
.sec-title p { max-width: 600px; margin: 0 auto; }
.accent { color: var(--accent); }
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,168,37,0.12); border: 1px solid rgba(249,168,37,0.3);
  color: var(--accent2); font-size: 0.75em; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--amber));
  color: #07080f; font-weight: 700; font-family: 'Syne', sans-serif;
  font-size: 0.95em; padding: 14px 28px; border-radius: 10px;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(249,168,37,0.3);
  text-decoration: none; white-space: nowrap;
  min-height: 44px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,168,37,0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2);
  font-weight: 500; font-size: 0.9em;
  padding: 12px 22px; border-radius: 10px;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
  min-height: 44px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── DISCLAIMER BAR ── */
.disclaimer-bar {
  min-height: 36px; height: 36px;
  background: #0a0b12;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72em; color: var(--text3);
  text-align: center; padding: 0 16px;
  position: relative; z-index: 200;
}
.disclaimer-bar a { color: var(--accent); text-decoration: none; }
.disclaimer-bar a:hover { text-decoration: underline; }

/* ── HEADER / NAV ── */
header {
  position: sticky; top: 36px; z-index: 150;
  height: 66px; min-height: 66px;
  background: rgba(7,8,15,0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav {
  height: 66px;
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.1em; color: var(--text); flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.nav-logo-text span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
  list-style: none; padding: 0;
}
.nav-links a {
  color: var(--text2); font-size: 0.88em; padding: 8px 12px;
  border-radius: 8px; transition: all 0.15s; text-decoration: none;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; cursor: pointer;
  background: none; border: none; padding: 8px;
  align-items: center; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text2); border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: 102px; left: 0; right: 0;
  background: rgba(7,8,15,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 140;
  transform: translateY(-10px); opacity: 0;
  transition: all 0.25s; pointer-events: none;
}
.mobile-drawer.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  color: var(--text2); padding: 12px 14px; border-radius: 8px;
  font-size: 0.95em; transition: all 0.15s;
  display: flex; align-items: center; gap: 10px;
}
.mobile-drawer a:hover { background: var(--surface); color: var(--text); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 60px; min-height: 480px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}
.hero-content { animation: fadeUp 0.7s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 { margin-bottom: 20px; }
.hero-desc { font-size: 1.05em; margin-bottom: 32px; max-width: 520px; }
.hero-actions {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; min-height: 52px;
}
.hero-actions .btn-primary { min-width: 200px; height: 44px; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-num {
  font-family: 'Syne', sans-serif; font-size: 1.6em; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.hero-stat-label { font-size: 0.78em; color: var(--text3); margin-top: 2px; }

/* Rating Card */
.rating-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 20px; padding: 28px; position: relative;
  animation: fadeUp 0.7s 0.2s ease both;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.rating-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(249,168,37,0.06), transparent 60%);
  pointer-events: none;
}
.rating-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.rating-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1.4em; font-weight: 800;
  color: #07080f; flex-shrink: 0;
}
.rating-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1em; }
.rating-sub { font-size: 0.78em; color: var(--text3); margin-top: 2px; }
.rating-rows { display: flex; flex-direction: column; gap: 14px; }
.rating-row { }
.rating-label {
  display: flex; justify-content: space-between;
  font-size: 0.82em; color: var(--text2); margin-bottom: 5px;
}
.rating-label span { color: var(--accent); font-weight: 700; }
.rating-bar-bg {
  height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden;
}
.rating-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  transition: width 1s ease;
}
.rating-score {
  text-align: center; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.rating-score-num {
  font-family: 'Syne', sans-serif; font-size: 2.4em; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.rating-score-label { font-size: 0.78em; color: var(--text3); margin-top: 4px; }

/* ── OVERVIEW ── */
.overview-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start;
}
.overview-text h2 { margin-bottom: 16px; }
.overview-text p { margin-bottom: 16px; }
.info-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg3); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.info-table td {
  padding: 12px 16px; font-size: 0.85em;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { color: var(--text3); font-size: 0.8em; white-space: nowrap; width: 140px; }
.info-table td:last-child { color: var(--text); font-weight: 500; }

/* ── GAMES GRID ── */
.games-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gc {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.25s; border: 1px solid var(--border);
}
.gc:hover { transform: translateY(-4px); }
.gc-thumb {
  height: 200px; position: relative; overflow: hidden;
}
.gc-thumb-slots {
  background: url('../img/mystake-game-slots.webp') center/cover,
              linear-gradient(135deg, #1e1560, #3b1fa8);
}
.gc-thumb-live {
  background: url('../img/mystake-game-live.webp') center/cover,
              linear-gradient(135deg, #0d3b2e, #1a6b52);
}
.gc-thumb-sports {
  background: url('../img/mystake-game-sports.webp') center/cover,
              linear-gradient(135deg, #1a1060, #2d2080);
}
.gc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7,8,15,0.85));
}
.gc-body { padding: 18px; background: var(--bg2); }
.gc-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1em; margin-bottom: 6px; }
.gc-desc { font-size: 0.82em; color: var(--text3); }

/* ── GAME SECTION ── */
.game1-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
}
.game2-grid {
  display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: center;
}
.game-visual {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.game1-visual { }
.game2-visual { }
.game-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0;
}
.game-stat {
  background: var(--surface); border-radius: 10px; padding: 14px;
  border: 1px solid var(--border);
}
.game-stat-val {
  font-family: 'Syne', sans-serif; font-size: 1.4em; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 4px;
}
.game-stat-label { font-size: 0.75em; color: var(--text3); }
.steps-list { list-style: none; padding: 0; margin: 20px 0; }
.steps-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88em; color: var(--text2);
}
.steps-list li:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(249,168,37,0.15); color: var(--accent);
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(249,168,37,0.3);
}
.note-box {
  background: rgba(52,211,153,0.06); border: 1px solid rgba(52,211,153,0.2);
  border-radius: 10px; padding: 14px 16px; font-size: 0.85em; color: var(--text2);
  margin-top: 16px;
}
.note-box strong { color: var(--green); }
.warning-box {
  background: rgba(249,168,37,0.06); border: 1px solid rgba(249,168,37,0.2);
  border-radius: 10px; padding: 14px 16px; font-size: 0.85em; color: var(--text2);
  margin-top: 12px;
}
.warning-box strong { color: var(--accent); }

/* ── BONUS SECTION ── */
.bonus-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: start;
}
.bonus-amount {
  font-family: 'Syne', sans-serif; font-size: 3.5em; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}
.bonus-subtitle { color: var(--text3); font-size: 0.9em; margin-bottom: 24px; }
.bonus-list { list-style: none; padding: 0; margin: 0; }
.bonus-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.9em; color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.bonus-list li:last-child { border-bottom: none; }
.bonus-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.promo-box {
  width: 320px; background: var(--bg2);
  border: 1px dashed var(--accent); border-radius: 16px;
  padding: 28px; text-align: center; flex-shrink: 0;
}
.promo-label { font-size: 0.75em; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.promo-code {
  font-family: 'Syne', sans-serif; font-size: 1.8em; font-weight: 800;
  color: var(--gold); letter-spacing: 0.08em; margin-bottom: 8px;
  padding: 10px 16px; background: rgba(240,192,64,0.08);
  border-radius: 8px; display: block;
}
.promo-desc { font-size: 0.82em; color: var(--text3); margin-bottom: 20px; }
.promo-img { margin-bottom: 20px; }
.promo-img img { width: 100%; border-radius: 10px; }

/* ── LOGIN SECTION ── */
.login-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.login-card, .app-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
}
.app-preview {
  border-radius: 12px; margin-top: 16px;
  background: var(--bg3);
  overflow: hidden;
}

/* ── PROS / CONS ── */
.proscons-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pros-card, .cons-card {
  background: var(--bg2); border-radius: 16px; padding: 24px;
}
.pros-card { border: 1px solid rgba(52,211,153,0.25); }
.cons-card { border: 1px solid rgba(248,113,113,0.25); }
.pc-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; font-size: 1em;
}
.proscons-list { list-style: none; padding: 0; }
.proscons-list li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 7px 0; font-size: 0.88em; color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.proscons-list li:last-child { border-bottom: none; }
.pros-card .proscons-list li::before { content: '✓'; color: var(--green); font-weight: 700; }
.cons-card .proscons-list li::before { content: '✗'; color: var(--red); font-weight: 700; }

/* ── PAYMENTS ── */
.pay-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.pay-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 14px; text-align: center;
  transition: border-color 0.2s;
}
.pay-card:hover { border-color: rgba(249,168,37,0.3); }
.pay-card img { height: 32px; width: auto; max-width: 100%; object-fit: contain; }
.pay-card-name { font-size: 0.72em; color: var(--text3); margin-top: 8px; }
.pay-card-time { font-size: 0.68em; color: var(--text3); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px; cursor: pointer; width: 100%; background: none;
  border: none; text-align: left; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 0.95em; font-weight: 500;
  gap: 12px; min-height: 44px;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  font-size: 1.4em; color: var(--accent); flex-shrink: 0;
  width: 24px; text-align: center; line-height: 1;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.88em; color: var(--text2); padding: 0 4px;
  line-height: 1.8;
}
.faq-item.open .faq-a { padding-bottom: 18px; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #0e0c1f, #1a1540);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(249,168,37,0.12), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.6em, 3.5vw, 2.4em); margin-bottom: 16px; }
.cta-section p { max-width: 500px; margin: 0 auto 32px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.1em; margin-bottom: 14px;
  text-decoration: none; color: var(--text);
}
.footer-logo img { width: 32px; height: 32px; border-radius: 6px; }
.footer-brand p { font-size: 0.82em; color: var(--text3); max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 0.8em; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85em; color: var(--text3); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0; font-size: 0.78em; color: var(--text3);
  display: flex; align-items: flex-start; gap: 20px;
  flex-wrap: wrap;
}
.footer-disclaimer { flex: 1; line-height: 1.7; }
.age-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.8em;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .rating-card { display: none; }
  .overview-grid { grid-template-columns: 1fr; }
  .game1-grid, .game2-grid { grid-template-columns: 1fr; }
  .game-visual { }
  .bonus-grid { grid-template-columns: 1fr; }
  .promo-box { width: 100%; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 44px 0; }
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary { width: 100%; }
  .hero-actions .btn-outline { width: 100%; }
  .games-grid { grid-template-columns: 1fr; }
  .proscons-grid { grid-template-columns: 1fr; }
  .login-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  table { overflow-x: auto; display: block; }
  .footer-bottom { flex-direction: column; }
  .nav-logo-text { display: none; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.4em; }
  h2 { font-size: 1.1em; }
  .bonus-amount { font-size: 2.2em; }
  .hero-stat-num { font-size: 1.3em; }
  .pay-card img { height: 24px; }
  .hero-content { animation: none; opacity: 1; transform: none; }
}

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