:root {
  --crimson: #9b1b2a;
  --crimson-deep: #6b1019;
  --crimson-bright: #c42336;
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --gold-pale: #f3e3b0;
  --blue: #1e4d8c;
  --blue-mid: #2b6cb0;
  --cream: #fff8ee;
  --cream-2: #f8ecd6;
  --ink: #2a1810;
  --maroon: #4a0e14;
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(107, 16, 25, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans Myanmar", "Outfit", sans-serif;
  font-weight: 400;
  line-height: 2.05;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(201, 162, 39, 0.12), transparent 45%),
    radial-gradient(ellipse at 100% 80%, rgba(155, 27, 42, 0.08), transparent 40%);
}

p, li, .nav-link, .btn {
  line-height: 2.05;
}

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }

/* Decorative kanote-like corners */
.bg-ornament {
  position: fixed;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%23c9a227' stroke-width='1.4' d='M20 180 C40 120 80 80 120 70 C90 90 70 130 80 170 M120 70 C150 50 180 40 190 20 M120 70 C150 90 160 130 150 170'/%3E%3Ccircle cx='120' cy='70' r='4' fill='%239b1b2a'/%3E%3C/svg%3E") no-repeat center / contain;
}

.bg-ornament-tl { top: 80px; left: -40px; }
.bg-ornament-br { bottom: 40px; right: -40px; transform: rotate(180deg); }

.gold-dust {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gold-dust span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0.35;
  animation: floatDust 12s linear infinite;
}

@keyframes floatDust {
  0% { transform: translateY(100vh) scale(0.4); opacity: 0; }
  20% { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo {
  width: 140px;
  animation: wobble 1.6s ease-in-out infinite;
  transform-origin: 50% 80%;
  filter: drop-shadow(0 12px 20px rgba(155, 27, 42, 0.18));
}

.preloader-bar {
  width: 120px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--cream-2);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  animation: loadBar 1s ease-in-out infinite;
}

@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(320%); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(-7deg); }
  50% { transform: rotate(7deg); }
}

/* Buttons */
.btn {
  font-family: inherit;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.75rem 1.45rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-crimson {
  background: linear-gradient(180deg, var(--crimson-bright), var(--crimson));
  color: #fff;
  box-shadow: 0 10px 24px rgba(155, 27, 42, 0.28);
}

.btn-crimson:hover { color: #fff; box-shadow: 0 14px 30px rgba(155, 27, 42, 0.38); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--maroon);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.32);
}

.btn-gold:hover { color: var(--maroon); }

.btn-blue {
  background: linear-gradient(180deg, var(--blue-mid), var(--blue));
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 77, 140, 0.28);
}

.btn-blue:hover { color: #fff; }

.btn-gold-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--crimson-deep);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--maroon);
}

.btn-cream-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-cream-outline:hover {
  background: #fff;
  color: var(--crimson);
}

/* Navbar */
.navbar {
  padding: 0.7rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(42, 24, 16, 0.08);
  padding: 0.45rem 0;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-weight: 500;
  color: var(--crimson);
  font-size: 1.05rem;
}

.navbar .nav-link {
  color: var(--ink);
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  position: relative;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--crimson); }

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border: 0;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 8.5rem 0 4rem;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--crimson);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-family: Outfit, sans-serif;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--maroon);
  margin: 0.7rem 0 1rem;
}

.gold-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 2.15;
  color: #5a4034;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.hero-meta strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 1.35rem;
  color: var(--crimson);
}

.hero-meta span {
  font-size: 0.85rem;
  color: #7a5a4a;
}

.meta-line {
  width: 1px;
  height: 36px;
  background: rgba(201, 162, 39, 0.45);
}

.hero-stage {
  position: relative;
  width: min(440px, 88vw);
  height: min(440px, 88vw);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: 72%;
  position: relative;
  z-index: 3;
  animation: wobble 3.2s ease-in-out infinite;
  transform-origin: 50% 78%;
  filter: drop-shadow(0 18px 28px rgba(107, 16, 25, 0.16));
}

.logo-glow {
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.45), transparent 70%);
  z-index: 1;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 162, 39, 0.45);
  z-index: 2;
}

.orbit-1 {
  inset: 4%;
  animation: spin 28s linear infinite;
}

.orbit-2 {
  inset: 12%;
  border-style: solid;
  border-color: rgba(155, 27, 42, 0.12);
  animation: spin 40s linear infinite reverse;
}

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

.draw-bar {
  margin-top: 3.2rem;
}

.draw-bar-inner {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.draw-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.draw-label i {
  font-size: 1.5rem;
  color: var(--gold);
}

.draw-label small {
  display: block;
  color: #7a5a4a;
  font-size: 0.78rem;
}

.draw-label strong { color: var(--crimson); font-weight: 500; }

.countdown {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: Outfit, sans-serif;
}

.count-box {
  min-width: 64px;
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-radius: 12px;
  text-align: center;
  padding: 0.35rem 0.4rem;
}

.count-box span {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.2;
}

.count-box small { color: #8a6a58; font-size: 0.7rem; }

.count-sep {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.2rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--crimson);
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #7cff9a;
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 255, 154, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(124, 255, 154, 0); }
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.section-head { margin-bottom: 2.6rem; }

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

.section-kicker.light { color: var(--gold-pale); }

.section-head h2 {
  color: var(--maroon);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.7;
}

.section-sub { color: #6d5244; margin-top: 0.4rem; line-height: 2.1; }

.flourish {
  width: 92px;
  height: 10px;
  margin: 0.9rem auto 0;
  background:
    radial-gradient(circle at 50% 50%, var(--crimson) 2px, transparent 3px),
    linear-gradient(var(--gold), var(--gold));
  background-size: 10px 10px, 70px 2px;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}

/* Number boards */
.num-board {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.25s ease;
}

.num-board:hover { transform: translateY(-6px); }

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  color: #6d5244;
}

.board-tag {
  font-family: Outfit, sans-serif;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  color: var(--crimson);
}

.board-2d .board-tag { color: #8a6d12; }
.board-3d .board-tag { color: var(--crimson); }
.board-4d .board-tag { color: var(--blue); }

.board-digits {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 3.6rem);
  letter-spacing: 0.12em;
  margin: 1rem 0 0.4rem;
  line-height: 1;
}

.board-2d .board-digits { color: var(--gold); }
.board-3d .board-digits { color: var(--crimson); }
.board-4d .board-digits { color: var(--blue); }

.num-board p { margin: 0; color: #7a5a4a; line-height: 2.1; }

/* Game cards */
.game-card {
  position: relative;
  background: var(--white);
  border-radius: 26px;
  padding: 2rem 1.5rem 1.6rem;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(107, 16, 25, 0.16);
}

.game-card-ornament {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  opacity: 0.14;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M80 20 C60 30 50 50 55 80' fill='none' stroke='%23c9a227' stroke-width='2'/%3E%3Cpath d='M80 20 C70 10 90 8 92 18' fill='none' stroke='%239b1b2a' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
}

.game-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.card-gold .game-icon {
  background: rgba(201, 162, 39, 0.16);
  color: #8a6d12;
}

.card-gold .game-list i { color: var(--gold); }

.card-crimson .game-icon {
  background: rgba(155, 27, 42, 0.12);
  color: var(--crimson);
}

.card-crimson .game-list i { color: var(--crimson); }

.card-blue .game-icon {
  background: rgba(30, 77, 140, 0.12);
  color: var(--blue);
}

.card-blue .game-list i { color: var(--blue); }

.game-card h3 {
  color: var(--maroon);
  margin-bottom: 0.7rem;
  font-weight: 500;
  line-height: 1.7;
}

.game-card p { color: #6d5244; line-height: 2.15; }

.game-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}

.one-app-cta {
  margin-top: 2.4rem;
}

.one-app-cta p {
  color: #6d5244;
  margin-bottom: 1rem;
  line-height: 2.1;
}

.game-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  color: #4d342b;
  font-weight: 400;
  line-height: 2.1;
}

.game-list i { color: var(--gold); }

.featured-card {
  border: 2px solid var(--crimson);
  transform: translateY(-6px);
}

.featured-card:hover { transform: translateY(-12px); }

.popular-ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  background: var(--crimson);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 2.4rem;
  transform: rotate(32deg);
}

/* Features */
.features-section {
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.08), transparent);
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.25s ease;
}

.feature-card:hover { transform: translateY(-5px); }

.feature-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.ico-gold { background: rgba(201, 162, 39, 0.16); color: #8a6d12; }
.ico-crimson { background: rgba(155, 27, 42, 0.12); color: var(--crimson); }
.ico-blue { background: rgba(30, 77, 140, 0.12); color: var(--blue); }

.feature-card h4 { color: var(--maroon); margin-bottom: 0.45rem; font-weight: 500; line-height: 1.7; }
.feature-card p { margin: 0; color: #6d5244; line-height: 2.15; }

/* Steps */
.steps-row { position: relative; }

.step-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.3rem;
  border: 1px solid rgba(201, 162, 39, 0.22);
  height: 100%;
}

.step-num {
  display: inline-block;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.step-card h4 { color: var(--maroon); font-weight: 500; line-height: 1.7; }
.step-card p { color: #6d5244; margin: 0; line-height: 2.15; }

/* CTA */
.cta-section {
  padding: 2rem 0 5rem;
  position: relative;
  z-index: 2;
}

.cta-panel {
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 197, 71, 0.2), transparent 30%),
    linear-gradient(135deg, var(--crimson-deep), var(--crimson) 55%, #8a1524);
  color: #fff;
  border-radius: 32px;
  padding: 3rem 2.4rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(107, 16, 25, 0.28);
}

.cta-panel h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.7;
  margin: 0.3rem 0 0.8rem;
}

.cta-panel p { color: rgba(255, 255, 255, 0.86); line-height: 2.15; }

.cta-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  opacity: 0.8;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: 210px;
  background: #1a0c0e;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: rotate(6deg);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-8px); }
}

.phone-notch {
  width: 72px;
  height: 8px;
  background: #2c1518;
  border-radius: 99px;
  margin: 4px auto 8px;
}

.phone-screen {
  background: linear-gradient(180deg, #fff8ee, #f3e3b0);
  border-radius: 24px;
  min-height: 300px;
  text-align: center;
  padding: 1.4rem 1rem;
  color: var(--maroon);
}

.phone-logo { width: 88px; animation: wobble 2.8s ease-in-out infinite; transform-origin: 50% 80%; }

.phone-brand { font-weight: 500; margin: 0.3rem 0 0.8rem; color: var(--crimson); }

.phone-pills { display: flex; justify-content: center; gap: 0.35rem; }

.phone-pills span {
  background: #fff;
  border: 1px solid var(--gold-pale);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-family: Outfit, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.phone-num {
  margin: 1.1rem 0 0.3rem;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--crimson);
}

/* Footer */
.site-footer {
  background: var(--maroon);
  color: #f7e6c8;
  padding: 3.2rem 0 1.2rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.footer-brand img { width: 48px; }

.site-footer p { color: rgba(247, 230, 200, 0.78); line-height: 2.1; }

.site-footer h5 {
  color: var(--gold-pale);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }

.site-footer li { margin-bottom: 0.55rem; line-height: 2.05; }

.site-footer a {
  color: rgba(247, 230, 200, 0.85);
  text-decoration: none;
}

.site-footer a:hover { color: var(--gold-bright); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(243, 227, 176, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { margin: 0; font-size: 0.88rem; }

.disclaimer { opacity: 0.7; }

/* Modal */
.download-modal {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-radius: 24px;
  padding: 2rem 1.6rem 1.5rem;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--crimson);
  font-size: 1.1rem;
}

.modal-logo { width: 92px; margin-bottom: 0.4rem; }

.download-modal h3 { color: var(--maroon); font-weight: 500; line-height: 1.7; }

.modal-game { color: var(--crimson); font-weight: 400; line-height: 2.05; }

.modal-meta {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.8rem 0 1.2rem;
}

.modal-meta span {
  background: var(--cream-2);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-family: Outfit, sans-serif;
}

.modal-hint { margin: 0.8rem 0 0; font-size: 0.82rem; color: #7a5a4a; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 0.7rem;
    padding: 0.8rem;
    border-radius: 16px;
    border: 1px solid var(--gold-pale);
  }

  .featured-card { transform: none; }

  .cta-panel { padding: 2.2rem 1.3rem; text-align: center; }

  .cta-panel .d-flex { justify-content: center; }

  .phone { transform: none; margin-top: 0.5rem; }
}

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

  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 575.98px) {
  .hero { padding-top: 7.2rem; }

  .hero-meta { gap: 0.7rem; }

  .count-box { min-width: 52px; }

  .draw-bar-inner { justify-content: center; text-align: center; }

  .draw-label { justify-content: center; width: 100%; }

  .footer-bottom { text-align: center; justify-content: center; }
}
