@font-face {
  font-family: "myFont";
  src: url("./assets/fonts/minorksans-light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "myFont";
  src: url("./assets/fonts/Fontspring-DEMO-minorksans-medium.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "myFont";
  src: url("./assets/fonts/minorksans-extrabold.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* Inline SVG icons (replace the Remixicon CDN). Default: scale with text. */
.ic {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
  vertical-align: middle;
}

/* NOTE: no height:100% here. Combined with overflow-x:hidden it would make
   overflow-y compute to `auto` and trap scrolling inside <body>, which breaks
   window scroll events (scroll-depth analytics, mobile exit-intent). The page
   must scroll on the window. */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* TopyBet palette — same tokens as the TopyBet site (style.css).
   primary = orange, secondary = navy. Support darks derived from the
   TopyBet site colors only (#2b2c2c, #090b19, #565656, #8cff00). */
:root {
  --color-primary: #ff4304;
  --color-white: #ffffff;
  --color-secondary: #01255c;
  --bg-deep: #090b19;
  --panel-navy: #01255c;
  --border: #565656;
  --muted: #9a9a9a;
  --text-soft: #d9d9d9;
  --live-green: #8cff00;
}

/* Body copy uses a system stack so Portuguese accents render correctly
   (the Minork OTF set lacks accented glyphs at every weight). Minork is kept
   as the display font for the accent-free headlines below — same convention as
   the TopyBet site, which writes display text without accents ("PRA VOCE"). */
body {
  color: var(--color-white);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.nav .title,
.nav .subtitle,
.offer-tag,
.offer-amount,
.offer-extra,
.cd-num,
.hero-register,
.offer-cta,
.winners__label,
.exit-popup__offer,
.exit-popup__cta {
  font-family: "myFont", system-ui, sans-serif;
}

main {
  background: linear-gradient(211.61deg, #000000 -5.67%, #2b2c2c 100%);
  overflow-x: hidden;
}

/* Header */
.header {
  background-image: url("./assets/header-bg.webp");
  background-size: cover;
  background-position: center;
  min-height: 270px;
  position: relative;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.header .brand-logo {
  width: 130px;
  height: auto;
}

.header .nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 16px;
  min-height: 238px;
  display: flex;
  flex-direction: column;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-block {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-register {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  padding: 16px 54px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 44px -8px rgba(255, 67, 4, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-register .ic {
  width: 30px;
  height: 30px;
}

.hero-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px -10px rgba(255, 67, 4, 0.9);
}

.nav .title-box {
  max-width: 600px;
}

.nav .subtitle {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.nav .subtitle.small {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
}

.nav .title {
  font-size: 54px;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 0.9;
  margin-top: 4px;
}

.navlist {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-shrink: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.navlist::-webkit-scrollbar {
  display: none;
}

.navlist .nav-item {
  padding: 6px 14px;
  background: #d9d9d924;
  backdrop-filter: blur(2px);
  border-radius: 50px;
  white-space: nowrap;
}

/* Banner */
.banner-section {
  background-color: var(--color-primary);
  padding: 16px;
  text-align: center;
  color: var(--color-white);
  margin-top: 10px;
}

.banner-section p {
  font-size: 28px;
  font-weight: 500;
}

/* Live wins feed */
.winners {
  display: flex;
  align-items: stretch;
  gap: 0;
  /* Reserve the populated height so the JS-injected ticker doesn't shift the
     page below it (CLS). Matches the rendered row height. */
  min-height: 44px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.winners__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-primary);
  background: #12131c;
  border-right: 1px solid var(--border);
  z-index: 2;
}

.winners__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live-green);
  box-shadow: 0 0 0 0 rgba(140, 255, 0, 0.7);
  animation: pulseDot 1.6s infinite;
}

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

.winners__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.winners__track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 12px 0;
  white-space: nowrap;
  will-change: transform;
  animation: winnersScroll 40s linear infinite;
}

.winners:hover .winners__track {
  animation-play-state: paused;
}

@keyframes winnersScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.win-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
}

.win-item strong {
  color: var(--color-white);
  font-weight: 800;
}

.win-item .win-amount {
  color: var(--color-primary);
  font-weight: 800;
}

.win-item .win-game {
  opacity: 0.7;
}

/* Trust bar */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 60px;
  padding: 36px 16px 44px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust__col {
  text-align: center;
}

.trust__title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.trust__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border-radius: 10px;
  background: #16171f;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

.chip--pay {
  background: #ffffff10;
}

.chip--pay .ic {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

/* Hero Offer */
.hero-offer {
  padding: 48px 16px 56px;
}

.offer-card {
  display: flex;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(1, 37, 92, 0.55) 0%, rgba(8, 17, 33, 0.55) 100%);
  box-shadow: 0 24px 60px -30px rgba(255, 67, 4, 0.7);
  position: relative;
  overflow: hidden;
}

.offer-visual {
  width: 320px;
  flex-shrink: 0;
  position: relative;
}

.offer-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.offer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 17, 33, 0) 55%,
    rgba(8, 17, 33, 0.85) 100%
  );
}

.offer-body {
  flex: 1;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
}

.offer-tag {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 5px 14px;
  border-radius: 50px;
}

.offer-amount {
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
  margin-top: 16px;
}

.offer-extra {
  font-size: 22px;
  font-weight: 800;
  margin-top: 8px;
}

.plus {
  color: var(--color-primary);
}

.offer-countdown {
  margin-top: 22px;
}

.cd-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cd-blocks {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 8px 6px;
  background: rgba(1, 37, 92, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.cd-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--color-primary);
}

.cd-unit {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.cd-sep {
  font-size: 24px;
  font-weight: 900;
  line-height: 40px;
  color: var(--color-primary);
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  align-self: stretch;
  margin-top: 28px;
  padding: 20px 46px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 40px -10px rgba(255, 67, 4, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-cta .ic {
  width: 28px;
  height: 28px;
}

.offer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -12px rgba(255, 67, 4, 0.9);
}

.offer-terms {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 16px;
}

/* Final CTA — compact, visually secondary to the hero */
.final-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 8px 20px 52px;
}

.final-cta__lead {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.final-cta__offer {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-soft);
  margin-top: 8px;
}

.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 18px;
  padding: 15px 44px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-family: "myFont", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 14px 36px -12px rgba(255, 67, 4, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.final-cta__btn .ic {
  width: 24px;
  height: 24px;
}

.final-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -12px rgba(255, 67, 4, 0.85);
}

.final-cta__sub {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 12px;
}

[dir="rtl"] .final-cta__btn {
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
}

@media screen and (max-width: 576px) {
  .final-cta__lead {
    font-size: 19px;
  }

  .final-cta__btn {
    font-size: 19px;
    padding: 14px 34px;
  }
}

/* Footer */
.footer {
  padding: 40px 16px;
  background-color: #090b19;
}

.footer-logo {
  width: 200px;
  height: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer p {
  font-size: 12px;
  max-width: 560px;
  margin: 16px auto 0;
}

.footer .social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer .social .social-item {
  height: 56px;
  padding: 0 22px;
  gap: 10px;
  border-radius: 16px;
  border: 1.75px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .social .social-item i {
  font-size: 34px;
  color: var(--color-white);
}

.footer .social .social-item:hover {
  transform: translateY(-5px);
}

/* Exit-intent popup */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup.is-open {
  display: flex;
}

.exit-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 20, 0.78);
  backdrop-filter: blur(4px);
}

.exit-popup__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  text-align: center;
  padding: 40px 32px 32px;
  border-radius: 26px;
  border: 1px solid var(--color-primary);
  background: linear-gradient(180deg, #01255c 0%, #14151d 100%);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  animation: popupIn 0.32s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #ffffff1a;
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.exit-popup__close:hover {
  background: #ffffff33;
}

.exit-popup__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 50px;
}

.exit-popup__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
  margin-top: 18px;
}

.exit-popup__offer {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-top: 20px;
}

.exit-popup__extra {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-top: 8px;
}

.exit-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  margin-top: 26px;
  padding: 18px 28px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 36px -10px rgba(255, 67, 4, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exit-popup__cta .ic {
  width: 24px;
  height: 24px;
}

.exit-popup__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px -12px rgba(255, 67, 4, 0.9);
}

.exit-popup__dismiss {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: #ffffff99;
  font-size: 13px;
  font-family: "myFont", system-ui, sans-serif;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .exit-popup__card {
    padding: 36px 22px 26px;
  }

  .exit-popup__title {
    font-size: 24px;
  }

  .exit-popup__offer {
    font-size: 28px;
  }

  .exit-popup__cta {
    font-size: 19px;
    padding: 16px 22px;
  }
}

/* Responsive */
@media screen and (min-width: 1440px) {
  .header .nav {
    max-width: 1320px;
  }
}

@media screen and (max-width: 991px) {
  .offer-visual {
    width: 240px;
  }

  .offer-amount {
    font-size: 36px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer .social .social-item {
    height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 16px;
  }

  .footer .social .social-item i {
    font-size: 26px;
  }
}

@media screen and (max-width: 680px) {
  .hero-offer {
    padding: 32px 16px 40px;
  }

  .offer-card {
    flex-direction: column;
    max-width: 460px;
  }

  .offer-visual {
    width: 100%;
    height: 180px;
  }

  .offer-visual::after {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 33, 0) 45%,
      rgba(8, 17, 33, 0.9) 100%
    );
  }
}

@media screen and (max-width: 576px) {
  .header .brand-logo {
    width: 77px;
  }

  .header {
    background-position: right;
    min-height: 210px;
    border-radius: 0 0 30px 30px;
  }

  .header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background:
      linear-gradient(
        89.76deg,
        rgba(5, 6, 13, 0.8) -2.09%,
        rgba(9, 11, 25, 0) 61.96%
      ),
      linear-gradient(89.76deg, #090b19 1.3%, rgba(9, 11, 25, 0) 58.21%);
  }

  .header .nav {
    position: relative;
    z-index: 2;
    padding: 16px 40px;
    min-height: 178px;
  }

  .hero-register {
    font-size: 20px;
    padding: 13px 40px;
    margin-top: 14px;
  }

  .hero-register .ic {
    width: 20px;
    height: 20px;
  }

  .nav .title-box {
    max-width: 300px;
  }

  .nav .subtitle {
    font-size: 13px;
    line-height: 1;
  }

  .nav .subtitle.small {
    font-size: 15px;
  }

  .nav .title {
    font-size: 34px;
  }

  .navlist {
    gap: 4px;
    margin-top: auto;
  }

  .navlist .nav-item {
    font-size: 10px;
    padding: 4px 10px;
    backdrop-filter: blur(1.2px);
  }

  .banner-section p {
    font-size: 14px;
  }

  .offer-body {
    padding: 22px 20px;
  }

  .offer-amount {
    font-size: 30px;
  }

  .offer-extra {
    font-size: 18px;
  }

  .cd-block {
    min-width: 44px;
    padding: 6px 4px;
  }

  .cd-num {
    font-size: 21px;
  }

  .cd-sep {
    font-size: 20px;
    line-height: 34px;
  }

  .offer-cta {
    font-size: 21px;
    padding: 16px 28px;
    align-self: stretch;
  }

  .offer-cta .ic {
    width: 22px;
    height: 22px;
  }

  .footer {
    padding: 40px 40px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-container {
    gap: 24px;
  }
}

/* Language switcher (top of header) */
.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-switch a {
  padding: 4px 9px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  background: #ffffff1a;
  transition: background 0.2s ease;
}

.lang-switch a:hover {
  background: #ffffff33;
}

.lang-switch a.is-active {
  background: var(--color-primary);
  color: var(--color-white);
}

@media screen and (max-width: 576px) {
  .lang-switch a {
    padding: 3px 7px;
    font-size: 10px;
  }
}

/* RTL / Arabic — Minork has no Arabic glyphs, so display text falls back to a
   system font; direction is flipped and key blocks realign to the right. */
[dir="rtl"] .nav .title,
[dir="rtl"] .nav .subtitle,
[dir="rtl"] .offer-tag,
[dir="rtl"] .offer-amount,
[dir="rtl"] .offer-extra,
[dir="rtl"] .cd-num,
[dir="rtl"] .hero-register,
[dir="rtl"] .offer-cta,
[dir="rtl"] .winners__label,
[dir="rtl"] .exit-popup__offer,
[dir="rtl"] .exit-popup__cta {
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
}

[dir="rtl"] .offer-body {
  text-align: right;
}

[dir="rtl"] .offer-tag {
  align-self: flex-end;
}

[dir="rtl"] .offer-visual::after {
  background: linear-gradient(
    270deg,
    rgba(8, 17, 33, 0) 55%,
    rgba(8, 17, 33, 0.85) 100%
  );
}

@media screen and (max-width: 680px) {
  [dir="rtl"] .offer-visual::after {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 33, 0) 45%,
      rgba(8, 17, 33, 0.9) 100%
    );
  }
}

/* Sticky mobile CTA — position:fixed (no CLS). Hidden by default; shown by JS
   only while the hero CTA is off-screen and the footer is not in view. */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 900;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 18px 18px 0 0;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 -8px 30px -6px rgba(0, 0, 0, 0.55);
  transform: translateY(130%);
  transition: transform 0.28s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

/* Hide the sticky CTA while the exit popup is open (no overlap with the modal). */
body.popup-open .sticky-cta {
  transform: translateY(130%) !important;
}

/* Dev-only cue for an unconfigured REGISTER_URL (added by landing.js in dev). */
.cta--unconfigured {
  outline: 2px dashed #ffd400;
  outline-offset: 2px;
}

.sticky-cta__main {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "myFont", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
}

.sticky-cta__sub {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
}

/* Only relevant on touch / small screens. */
@media screen and (min-width: 681px) {
  .sticky-cta {
    display: none !important;
  }
}

@media screen and (max-width: 680px) {
  .sticky-cta {
    display: flex;
  }
}

[dir="rtl"] .sticky-cta__main {
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
}

/* Respect reduced-motion: keep content visible, drop non-essential animation.
   The wins ticker becomes a static (non-scrolling) list — wins stay readable. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .winners__track {
    animation: none !important;
    transform: none !important;
  }

  .winners__dot {
    animation: none !important;
  }
}
