/* Xmax Casino – animalife.co.il */

:root {
  --bg-dark: #0d0520;
  --bg-card: #1a0a2e;
  --bg-card-hover: #251540;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --gold: #ffd700;
  --orange: #ff6b35;
  --pink: #e91e8c;
  --text: #f0e6ff;
  --text-muted: #a89ec4;
  --gradient: linear-gradient(135deg, var(--gold), var(--orange), var(--pink));
  --gradient-text: linear-gradient(90deg, var(--gold), var(--orange), var(--pink));
  --radius: 16px;
  --shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: 0;
  transition: padding-bottom 0.4s ease;
}

body.sticky-active {
  padding-bottom: 80px;
}

body.sticky-active .to-top {
  bottom: 5.5rem;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Background particles */
.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(233, 30, 140, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    var(--bg-dark);
  animation: bgShift 12s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(20deg); }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 5, 32, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 0.75rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
  animation: headerCtaPulse 2.5s ease-in-out infinite;
}

@keyframes headerCtaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(255, 215, 0, 0.55); }
}

.logo,
span.logo {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

span.logo {
  cursor: default;
}

a.logo {
  cursor: pointer;
}

.logo__svg {
  height: 48px;
  width: auto;
}

.logo__chip {
  animation: chipSpin 6s ease-in-out infinite;
  transform-origin: 36px 36px;
}

@keyframes chipSpin {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.logo__spark--1 { animation: sparkle 1.5s ease-in-out infinite; }
.logo__spark--2 { animation: sparkle 1.2s ease-in-out 0.3s infinite; }
.logo__spark--3 { animation: sparkle 0.9s ease-in-out 0.6s infinite; }

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.5); }
}

.logo__text {
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5)); }
  50% { filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8)); }
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}

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

.nav__link:hover::after {
  width: 100%;
}

/* Referral links (opened via ref-links.js) */
.ref-link {
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--gradient);
  color: #1a0a2e;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6); }
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.article-meta__author strong {
  color: var(--gold);
}

.article-meta__sep {
  opacity: 0.4;
}

.article-meta__date {
  color: var(--purple-light);
}

.badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 1.25rem;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero__title-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  background-size: 200% auto;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__subtitle strong {
  color: var(--gold);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.hero__proof {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
}

.stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Hero visual layout */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.slot-machine {
  position: relative;
  animation: machineFloat 4s ease-in-out infinite;
  cursor: pointer;
  text-align: center;
  padding-top: 0.5rem;
}

@keyframes machineFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.slot-machine__frame {
  display: flex;
  gap: 8px;
  background: linear-gradient(180deg, #2a1050, #1a0a2e);
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow), inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.slot-reel {
  width: 72px;
  height: 72px;
  background: #0d0520;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px solid rgba(124, 58, 237, 0.5);
  overflow: hidden;
}

.slot-reel--1 { animation: none; }
.slot-reel--2 { animation: none; }
.slot-reel--3 { animation: none; }

.slot-machine:not(.slot-machine--spinning) .slot-reel--1 { animation: reelIdle 3s ease-in-out infinite; }
.slot-machine:not(.slot-machine--spinning) .slot-reel--2 { animation: reelIdle 3s ease-in-out 0.4s infinite; }
.slot-machine:not(.slot-machine--spinning) .slot-reel--3 { animation: reelIdle 3s ease-in-out 0.8s infinite; }

@keyframes reelIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.slot-machine:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  border-radius: var(--radius);
}

.slot-machine__label {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  animation: labelPulse 1.5s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.slot-machine--spinning .slot-reel {
  animation: reelBlur 0.08s linear infinite;
}

@keyframes reelBlur {
  0% { transform: translateY(-4px); filter: blur(1px); }
  50% { transform: translateY(4px); }
  100% { transform: translateY(-4px); filter: blur(1px); }
}

.slot-machine--win {
  animation: winShake 0.5s ease;
}

@keyframes winShake {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-6px) rotate(-2deg); }
  75% { transform: translateY(-6px) rotate(2deg); }
}

.slot-machine__result {
  min-height: 2.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-light);
  transition: opacity 0.3s ease;
}

.slot-machine__result--jackpot {
  color: var(--gold);
  font-size: 1rem;
  animation: jackpotGlow 1s ease-in-out infinite alternate;
}

@keyframes jackpotGlow {
  from { text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
  to { text-shadow: 0 0 16px rgba(255, 107, 53, 0.8); }
}

.slot-machine__lever {
  position: absolute;
  left: -20px;
  top: 50%;
  width: 8px;
  height: 60px;
  background: var(--gradient);
  border-radius: 4px;
  transform-origin: bottom center;
  border: none;
  cursor: pointer;
  padding: 0;
  animation: leverPull 3s ease-in-out infinite;
}

.slot-machine__lever:active,
.slot-machine--spinning .slot-machine__lever {
  animation: leverActive 0.4s ease forwards;
}

@keyframes leverActive {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(35deg); }
  100% { transform: rotate(0deg); }
}

@keyframes leverPull {
  0%, 70%, 100% { transform: rotate(0deg); }
  80% { transform: rotate(25deg); }
  90% { transform: rotate(-5deg); }
}

/* Risk meter */
.risk-meter {
  width: 100%;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.risk-meter__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.risk-meter__dial {
  position: relative;
  width: min(220px, 100%);
  margin: 0 auto 0.35rem;
  overflow: hidden;
  isolation: isolate;
}

.risk-meter__svg {
  display: block;
  width: 100%;
  height: 58px;
  overflow: visible;
}

.risk-meter__arc {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.risk-meter__score {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ff6b6b;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.risk-meter__hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.risk-meter__chips {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: 0.25rem;
}

.risk-chip {
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.risk-chip:hover,
.risk-chip--active {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.risk-meter__tip {
  min-height: 2.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.risk-meter__cta {
  margin-top: 0.75rem;
  animation: fadeUp 0.4s ease;
}

.risk-meter__cta .btn {
  width: 100%;
}

/* Verdict summary strip */
.verdict-box {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(26, 10, 46, 0.95));
  border-block: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1.25rem 0;
  margin-bottom: 0.5rem;
}

.verdict-box__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.verdict-box__score {
  text-align: center;
  min-width: 100px;
}

.verdict-box__value {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.verdict-box__max {
  font-size: 1rem;
  opacity: 0.8;
}

.verdict-box__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.25rem;
}

.verdict-box__note {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.verdict-box__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
}

.verdict-box__points li {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.verdict-box__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.verdict-box__link {
  font-size: 0.75rem;
  color: var(--purple-light);
  text-decoration: none;
}

.verdict-box__link:hover {
  color: var(--gold);
}

/* Comparison CTA */
.comparison-cta {
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.comparison-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.comparison-cta__link:hover {
  background: rgba(255, 215, 0, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

/* Read-complete modal */
.modal__panel--compact {
  max-width: 360px;
  padding: 1.75rem 1.5rem;
}

.read-modal__emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Hide redundant corner float (verdict-box covers this) */
.float-cta--corner {
  display: none;
}

/* Quick nav pills */
.quick-nav {
  position: sticky;
  top: 65px;
  z-index: 90;
  background: rgba(13, 5, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  padding: 0.65rem 0;
}

.quick-nav__inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.quick-nav__inner::-webkit-scrollbar { display: none; }

.quick-nav__pill {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.quick-nav__pill:hover {
  border-color: var(--purple-light);
  color: var(--text);
  transform: translateY(-2px);
}

.quick-nav__pill--hot {
  border-color: rgba(255, 107, 53, 0.5);
  animation: pillHot 2s ease-in-out infinite;
}

@keyframes pillHot {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 107, 53, 0); }
  50% { box-shadow: 0 0 12px rgba(255, 107, 53, 0.35); }
}

.quick-nav__pill--cta {
  background: var(--gradient);
  color: #1a0a2e;
  border-color: transparent;
  font-weight: 800;
}

.quick-nav__pill--cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
  color: #1a0a2e;
}

/* Flip cards */
.flip-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flip-card {
  position: relative;
  height: 120px;
  perspective: 800px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--radius);
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-size: 1rem;
}

.flip-card__front {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), var(--bg-card));
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: var(--gold);
}

.flip-card--warn .flip-card__front {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.2), var(--bg-card));
  border-color: rgba(233, 30, 140, 0.4);
  color: var(--pink);
}

.flip-card__back {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  transform: rotateY(180deg);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.flip-card--warn .flip-card__back {
  border-color: var(--pink);
}

.flip-card__hint {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.flip-card--flipped .flip-card__front { transform: rotateY(-180deg); }
.flip-card--flipped .flip-card__back { transform: rotateY(0); }

/* Button shine */
.btn {
  position: relative;
  overflow: hidden;
}

.btn__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: btnShine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

/* Fit checker progress */
.fit-checker__progress {
  height: 6px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 3px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.fit-checker__progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.fit-checker__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  animation: fadeUp 0.5s ease;
}

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

.hidden { display: none !important; }

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 5, 32, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

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

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-cta__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.sticky-cta__text strong {
  color: var(--gold);
}

.sticky-cta__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ===== Inline section CTAs ===== */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(26, 10, 46, 0.9));
  animation: inlineCtaGlow 3s ease-in-out infinite;
}

@keyframes inlineCtaGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
  50% { box-shadow: 0 0 24px rgba(255, 215, 0, 0.12); }
}

.inline-cta--games { border-color: rgba(124, 58, 237, 0.45); }
.inline-cta--bonuses { border-color: rgba(255, 215, 0, 0.35); }
.inline-cta--license { border-color: rgba(233, 30, 140, 0.35); }

.inline-cta__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.inline-cta__icon {
  font-size: 2rem;
  flex-shrink: 0;
  animation: iconBounce 2s ease-in-out infinite;
}

.inline-cta__content strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.inline-cta__content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Floating CTA cluster ===== */
.float-ctas {
  pointer-events: none;
}

.float-ctas.float-ctas--active {
  pointer-events: auto;
}

.float-ctas.float-ctas--active .float-cta {
  opacity: 1;
  visibility: visible;
}

.float-cta {
  position: fixed;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
  text-decoration: none;
  font-family: inherit;
}

/* Side rail – right edge (RTL start) */
.float-cta--rail {
  right: 0;
  top: 50%;
  --follow-y: 0px;
  transform: translate(100%, calc(-50% + var(--follow-y)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0.65rem;
  background: var(--gradient);
  color: #1a0a2e;
  border-radius: 14px 0 0 14px;
  box-shadow: -4px 0 24px rgba(255, 107, 53, 0.45);
  font-weight: 800;
  animation: railBob 2.5s ease-in-out infinite;
}

.float-ctas.float-ctas--active .float-cta--rail {
  transform: translate(0, calc(-50% + var(--follow-y)));
}

@keyframes railBob {
  0%, 100% { margin-right: 0; }
  50% { margin-right: 6px; }
}

.float-cta--rail__icon { font-size: 1.25rem; }
.float-cta--rail__text {
  writing-mode: vertical-rl;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.float-cta--rail__sub {
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.85;
}

.float-cta--rail:hover {
  box-shadow: -6px 0 32px rgba(255, 215, 0, 0.55);
}

/* FAB – bottom right */
.float-cta--fab {
  right: 1.25rem;
  bottom: 1.75rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  color: #1a0a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.5);
  transform: translateY(20px) scale(0.85);
}

.float-ctas.float-ctas--active .float-cta--fab {
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

.float-cta--fab__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.float-cta--fab__label {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.float-cta--fab__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: fabRing 2s ease-out infinite;
  pointer-events: none;
}

@keyframes fabRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.float-cta--fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 36px rgba(255, 215, 0, 0.55);
}

body.sticky-active .float-cta--fab {
  bottom: 5.75rem;
}

/* Corner chip – top left, slides in */
.float-cta--corner {
  left: 0;
  top: 130px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0.6rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-left: none;
  border-radius: 0 50px 50px 0;
  color: var(--text);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.35);
  transform: translateX(-110%);
  position: fixed;
}

.float-ctas.float-ctas--active .float-cta--corner {
  transform: translateX(0);
  transition-delay: 0.2s;
  animation: cornerWiggle 4s ease-in-out infinite;
}

@keyframes cornerWiggle {
  0%, 100% { transform: translateX(0); }
  92% { transform: translateX(0); }
  94% { transform: translateX(4px); }
  96% { transform: translateX(-2px); }
  98% { transform: translateX(3px); }
}

.float-cta--corner__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--gold);
  animation: fabRing 2.5s ease-out infinite;
  pointer-events: none;
}

.float-cta--corner__emoji { font-size: 1.1rem; z-index: 1; }
.float-cta--corner__text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  z-index: 1;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.float-cta--corner__arrow {
  color: var(--orange);
  font-weight: 900;
  z-index: 1;
}

.float-cta--corner:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

/* Bubble card – left center */
.float-cta--bubble {
  left: 1rem;
  top: 50%;
  --follow-y: 0px;
  transform: translate(-120%, calc(-50% + var(--follow-y)));
  width: min(260px, 72vw);
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  pointer-events: auto;
  position: fixed;
}

.float-ctas.float-ctas--active .float-cta--bubble:not(.float-cta--bubble--hidden) {
  transform: translate(0, calc(-50% + var(--follow-y)));
  transition-delay: 0.35s;
  animation: bubbleFloat 3s ease-in-out infinite;
}

@keyframes bubbleFloat {
  0%, 100% { margin-left: 0; }
  50% { margin-left: 8px; }
}

.float-cta--bubble--hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.float-cta--bubble__close {
  position: absolute;
  top: 0.4rem;
  left: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.15rem;
}

.float-cta--bubble__close:hover { color: var(--gold); }

.float-cta--bubble__msg {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

.float-cta--bubble__msg--fade {
  opacity: 0;
}

.float-cta--bubble .btn {
  width: 100%;
}

/* Scroll-follow offset (applied via JS) */
.float-cta--rail,
.float-cta--bubble {
  will-change: transform;
}

/* Modal + wheel */
.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.35s ease;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

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

.modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}

.modal__result {
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 3rem;
  margin-bottom: 1rem;
}

.modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wheel {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.wheel__pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.wheel__spinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  background: conic-gradient(
    #7c3aed 0deg 60deg,
    #e91e8c 60deg 120deg,
    #ff6b35 120deg 180deg,
    #ffd700 180deg 240deg,
    #1a0a2e 240deg 300deg,
    #a78bfa 300deg 360deg
  );
}

.wheel__segment {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  transform: rotate(calc(var(--i) * 60deg - 90deg));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* Confetti */
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3000;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Games grid */
.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
  background: var(--bg-card-hover);
}

.game-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: iconBounce 2s ease-in-out infinite;
}

.game-card:nth-child(2) .game-card__icon { animation-delay: 0.2s; }
.game-card:nth-child(3) .game-card__icon { animation-delay: 0.4s; }
.game-card:nth-child(4) .game-card__icon { animation-delay: 0.6s; }

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.game-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.game-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Bonuses */
.bonuses {
  background: rgba(26, 10, 46, 0.5);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition);
}

.bonus-card:hover {
  transform: scale(1.02);
}

.bonus-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.08), var(--bg-card));
  animation: featuredGlow 3s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.15); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.25); }
}

.bonus-card__tag {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gradient);
  color: #1a0a2e;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

.bonus-card__title {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.bonus-card__amount {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.bonus-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* About */
.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about__content strong {
  color: var(--gold);
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__list li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition);
}

.trust-badge:hover {
  border-color: var(--purple-light);
}

.trust-badge__icon {
  font-size: 1.75rem;
}

.trust-badge__text {
  font-weight: 600;
}

/* FAQ */
.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: var(--purple-light);
}

.faq__item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::before {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  margin-left: 1rem;
  transition: transform var(--transition);
}

.faq__item[open] summary::before {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA / Register */
.cta {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.1));
}

.cta__inner {
  text-align: center;
  max-width: 560px;
}

.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta__subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.register-form__input {
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(124, 58, 237, 0.3);
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  text-align: right;
  transition: border-color var(--transition);
}

.register-form__input:focus {
  outline: none;
  border-color: var(--gold);
}

.register-form__input::placeholder {
  color: var(--text-muted);
}

.cta__note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding: 3rem 0 2rem;
  background: rgba(13, 5, 32, 0.9);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__meta {
  text-align: left;
}

.footer__author,
.footer__date,
.footer__copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

/* ===== Review article ===== */
.article {
  width: min(880px, 92%);
  margin-inline: auto;
  padding: 1rem 0 3rem;
}

.article section {
  margin-bottom: 3rem;
  scroll-margin-top: 90px;
}

.article h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.article h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-light);
  margin: 1.75rem 0 0.75rem;
}

.article p {
  margin-bottom: 1rem;
}

.article ul,
.article ol {
  margin: 0 0 1rem;
  padding-inline-start: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
}

.article strong {
  color: var(--gold);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--radius);
  margin: 1rem 0 1.5rem;
  background: rgba(26, 10, 46, 0.4);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
}

.data-table th {
  background: var(--bg-card);
  color: var(--gold);
  text-align: right;
  padding: 0.8rem 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.data-table td {
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(167, 139, 250, 0.15);
  vertical-align: top;
}

.data-table tbody tr:nth-child(even) td {
  background: rgba(26, 10, 46, 0.55);
}

.note-box {
  background: var(--bg-card);
  border-right: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.note-box--warning {
  border-right-color: var(--pink);
}

.footer__author strong {
  color: var(--gold);
}

.footer__date time {
  color: var(--purple-light);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__meta {
    text-align: center;
  }

  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .header-cta {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }

  .header__inner .btn--sm {
    display: inline-flex;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .slot-reel {
    width: 56px;
    height: 56px;
    font-size: 2rem;
  }

  .flip-cards {
    grid-template-columns: 1fr;
  }

  .sticky-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .risk-meter {
    max-width: 100%;
  }

  .float-cta--rail,
  .float-cta--corner,
  .float-cta--bubble {
    display: none;
  }

  .float-cta--fab {
    right: 1rem;
    bottom: 5.5rem;
    width: 56px;
    height: 56px;
  }

  .inline-cta {
    flex-direction: column;
    text-align: center;
  }

  .inline-cta__content {
    flex-direction: column;
    text-align: center;
  }

  .verdict-box__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .verdict-box__points {
    justify-content: center;
  }
}

/* ===== Interactive elements ===== */
.progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1000;
}

.progress-bar__fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
}

mark {
  background: rgba(255, 215, 0, 0.16);
  color: var(--gold);
  padding: 0 0.3em;
  border-radius: 4px;
}

.to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: var(--bg-card);
  color: var(--gold);
  font-size: 1.3rem;
  font-family: inherit;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.data-table tbody tr {
  transition: background 0.2s ease;
}

.data-table tbody tr:hover td {
  background: rgba(124, 58, 237, 0.18);
}

.nav__link--active {
  color: var(--gold);
}

.nav__link--active::after {
  width: 100%;
}

.fit-checker {
  background: var(--bg-card);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.fit-checker h3 {
  margin-top: 0;
  color: var(--gold);
}

.fit-checker__hint {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.fit-checker label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.fit-checker label:hover {
  color: var(--gold);
}

.fit-checker input[type="checkbox"] {
  accent-color: var(--purple);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.slot-cta {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed var(--gold);
  transition: var(--transition);
}

.slot-cta:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}

.fit-checker__result {
  margin-top: 1rem;
  margin-bottom: 0;
  min-height: 1.5em;
  font-weight: 600;
  color: var(--purple-light);
}
