/* ============================================================
   ruletka-uz.com — Main Stylesheet
   Mobile-first, design-token driven
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-bg: #0E0E1A;
  --color-surface: #16162A;
  --color-primary: #E8C4FF;
  --color-accent: #D63A3A;
  --color-accent-dark: #b52f2f;
  --color-text: #F0ECF8;
  --color-text-muted: #8585B8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Glow / overlay helpers */
  --glow-primary: rgba(232, 196, 255, 0.2);
  --glow-primary-strong: rgba(232, 196, 255, 0.45);
  --glow-primary-subtle: rgba(232, 196, 255, 0.08);
  --glow-primary-border: rgba(232, 196, 255, 0.1);
  --glow-primary-nav: rgba(232, 196, 255, 0.15);
  --glow-accent: rgba(214, 58, 58, 0.35);
  --overlay-dark: rgba(0, 0, 0, 0.75);
  --overlay-dark-half: rgba(0, 0, 0, 0.5);
  --overlay-hover: rgba(232, 196, 255, 0.04);
  --glow-white: rgba(255, 255, 255, 0.9);
  --color-stars: #f5c518;
  --color-success: #4caf82;
  --glow-success: rgba(76, 175, 130, 0.12);
  --glow-success-border: rgba(76, 175, 130, 0.3);
  --color-warning: #e8a930;
  --glow-warning: rgba(232, 169, 48, 0.12);
  --glow-warning-border: rgba(232, 169, 48, 0.3);
  --glow-accent-subtle: rgba(214, 58, 58, 0.12);
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  padding-bottom: 60px;
}

/* ============================================================
   2. CONTAINER
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   3. HEADER (sticky)
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--glow-primary-nav);
  height: 64px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  align-items: center;
}

.header-logo img {
  height: 40px;
  border-radius: 8px;
}

.header-nav {
  display: flex;
  gap: 20px;
  flex: 1;
}

.header-nav a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--color-primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.lang-switch a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: var(--color-primary);
}

.lang-switch span {
  opacity: 0.4;
}

/* ============================================================
   4. CTA BUTTON (.btn)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 160px;
  padding: 10px 28px;
  background-color: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  will-change: transform;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-accent);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ============================================================
   5. SECTION CTA (.section-cta)
   ============================================================ */
.section-cta {
  text-align: center;
  margin-top: 24px;
}

/* ============================================================
   6. HERO (#hero)
   ============================================================ */
#hero {
  padding: 60px 0 56px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, var(--glow-primary) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 50%;
}

.hero-visual {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.4s ease-out 0s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.1s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.15s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.3s forwards;
}

.hero-cta-wrap {
  text-align: left;
  margin-top: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glow-primary-subtle);
  border: 1px solid var(--glow-primary-border);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  animation: fadeUp 0.4s ease-out 0s forwards;
  opacity: 0;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  animation: fadeUp 0.5s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-trust-sep {
  opacity: 0.35;
}

.hero-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  animation: fadeUp 0.5s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-multiplier {
  position: absolute;
  top: 16px;
  left: -12px;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.4rem;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--glow-accent);
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Hero image with animated wheel badge */
.hero-media {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 40px var(--glow-primary);
}

.hero-stat-chip {
  position: absolute;
  bottom: -14px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  border: 1px solid var(--glow-primary-border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px var(--glow-primary);
}

.hero-stat-chip-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.hero-stat-chip-body {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-stat-chip-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
}

.hero-stat-chip-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-wheel-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.hero-wheel-badge .wheel-wrap {
  width: 130px;
  height: 130px;
}

.hero-wheel-badge .wheel {
  width: 110px;
  height: 110px;
}

.hero-wheel-badge .wheel::after {
  width: 22px;
  height: 22px;
}

.hero-wheel-badge .wheel-orbit {
  width: 105px;
  height: 105px;
}

.hero-wheel-badge .wheel-ball {
  width: 8px;
  height: 8px;
  top: -4px;
}

/* ============================================================
   7. CSS ROULETTE WHEEL
   ============================================================ */
.wheel-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    var(--color-accent) 0deg 4.86deg,
    var(--color-surface) 4.86deg 9.73deg
  );
  border: 3px solid var(--color-primary);
  box-shadow: 0 0 60px var(--glow-primary), inset 0 0 20px var(--overlay-dark-half);
  animation: wheelSpin 7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  position: relative;
  will-change: transform;
}

.wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-bg);
  border: 3px solid var(--color-primary);
  box-shadow: 0 0 14px var(--glow-primary-strong);
}

.wheel-orbit {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  animation: ballOrbit 3s linear infinite;
  will-change: transform;
}

.wheel-ball {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-text);
  box-shadow: 0 0 10px var(--glow-white), 0 0 4px var(--color-text);
}

@keyframes wheelSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes ballOrbit {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ============================================================
   8. CONTENT SECTIONS (.section)
   ============================================================ */
.section {
  padding: 52px 0;
  border-bottom: 1px solid var(--glow-primary-subtle);
}

.section:last-of-type {
  border-bottom: none;
}

.section .container > :last-child {
  margin-bottom: 0;
}

.section::after {
  content: '';
  display: table;
  clear: both;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--color-text);
  margin: 24px 0 12px;
}

.section p {
  margin-bottom: 14px;
}

.section ul,
.section ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.section li {
  margin-bottom: 6px;
}

.section strong {
  color: var(--color-primary);
}

/* Section content images — base */
.section img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0 0 24px 0;
}

/* Full-width variant */
.section img.img-full {
  width: 100%;
}

/* Float variant — text wraps around */
.section img.img-float {
  float: right;
  max-width: 44%;
  margin: 0 0 16px 28px;
  border-radius: 10px;
}

/* ============================================================
   9. TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin: 16px 0;
  border-radius: 8px;
}

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

th {
  background-color: var(--color-surface);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--color-primary);
}

td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--glow-primary-border);
  color: var(--color-text);
}

tr:hover td {
  background-color: var(--overlay-hover);
}

/* ============================================================
   10. STICKY BOTTOM BAR (.sticky-bar)
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  height: 60px;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-bar-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.sticky-bar-slogan {
  font-family: var(--font-display);
  font-weight: bold;
  color: var(--color-primary);
  font-size: 1rem;
  white-space: nowrap;
}

.sticky-bar .btn {
  margin-left: auto;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* ============================================================
   11. POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.popup-inner {
  position: relative;
  max-width: 320px;
  width: calc(100% - 32px);
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.popup-inner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: cover;
  flex-shrink: 1;
  min-height: 0;
}

.popup-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 0;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  background-color: var(--overlay-dark-half);
  color: var(--color-text);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.popup-close:hover {
  background-color: var(--overlay-dark);
}

/* ============================================================
   12. FAQ ACCORDION
   ============================================================ */
.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--glow-primary-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text);
  transition: transform 0.3s ease, background-color 0.2s;
}

.faq-item.is-open .faq-question-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  padding-bottom: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding-bottom: 16px;
}

.faq-answer p {
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   13. REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.review-card {
  background-color: var(--color-surface);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--glow-primary-border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 14px;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-stars {
  color: var(--color-stars);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--glow-primary-subtle);
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glow-primary-subtle);
  border: 1px solid var(--glow-primary-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.85rem;
}

/* ============================================================
   14. STRATEGY CARDS
   ============================================================ */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.strategy-card {
  background-color: var(--color-surface);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--glow-primary-border);
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strategy-card--high  { border-left-color: var(--color-accent); }
.strategy-card--medium { border-left-color: var(--color-warning); }
.strategy-card--low   { border-left-color: var(--color-success); }

.strategy-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.strategy-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-primary);
  line-height: 1.1;
}

.strategy-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.strategy-risk {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.strategy-risk--high {
  background: var(--glow-accent-subtle);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.strategy-risk--medium {
  background: var(--glow-warning);
  color: var(--color-warning);
  border: 1px solid var(--glow-warning-border);
}

.strategy-risk--low {
  background: var(--glow-success);
  color: var(--color-success);
  border: 1px solid var(--glow-success-border);
}

.strategy-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
footer {
  background-color: var(--color-surface);
  padding: 40px 0 32px;
  border-top: 1px solid var(--glow-primary-border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-lang {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-lang a {
  color: var(--color-text-muted);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-lang a:hover {
  color: var(--color-primary);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--glow-primary-subtle);
  padding-top: 20px;
  margin-top: 20px;
}

/* ============================================================
   15. FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   16. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .hero-container {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .wheel-wrap {
    width: 240px;
    height: 240px;
  }

  .wheel {
    width: 200px;
    height: 200px;
  }

  .wheel-orbit {
    width: 190px;
    height: 190px;
  }

  .hero-media {
    max-width: 100%;
  }

  .hero-wheel-badge {
    bottom: -12px;
    right: -12px;
  }

  .hero-wheel-badge .wheel-wrap {
    width: 90px;
    height: 90px;
  }

  .hero-wheel-badge .wheel {
    width: 74px;
    height: 74px;
  }

  .hero-wheel-badge .wheel::after {
    width: 16px;
    height: 16px;
  }

  .hero-wheel-badge .wheel-orbit {
    width: 70px;
    height: 70px;
  }

  .hero-wheel-badge .wheel-ball {
    width: 6px;
    height: 6px;
    top: -3px;
  }

  .header-nav {
    display: none;
  }

  .sticky-bar {
    height: 56px;
  }

  .section img {
    margin: 0 0 16px 0;
  }

  .section img.img-float {
    float: none;
    max-width: 100%;
    width: 100%;
    margin: 0 0 16px 0;
  }
}

@media (max-width: 480px) {
  .header-logo {
    display: none;
  }

  .sticky-bar-slogan {
    font-size: 0.8rem;
  }

  .popup-inner {
    max-width: 100%;
    width: calc(100% - 24px);
  }
}

/* ============================================================
   RESPONSIVE — TABLET & DESKTOP
   ============================================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

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

  .hero-eyebrow,
  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-trust,
  .hero-note,
  .hero-cta,
  .hero-multiplier {
    animation: none !important;
    opacity: 1 !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .wheel,
  .wheel-orbit {
    animation: none !important;
  }

  .sticky-bar {
    transition: none !important;
  }
}
