:root {
  --bg: #090b14;
  --bg-soft: #101426;
  --primary: #ff1935;
  --primary-2: #ff5b6d;
  --text: #f4f6ff;
  --muted: #b9c0d5;
  --glass: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at 20% 20%, #1a2143, var(--bg) 40%);
  color: var(--text);
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  z-index: -3;
  pointer-events: none;
  will-change: auto;
}

.bg-glow-1 {
  background: var(--primary);
  top: -120px;
  left: -100px;
}

.bg-glow-2 {
  background: #4f6bff;
  right: -120px;
  bottom: -150px;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: -2;
  opacity: 0.2;
}

.site-header {
  width: min(1160px, 92vw);
  margin: 22px auto 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(255, 25, 53, 0.35);
}

.mini-btn {
  text-decoration: none;
  color: var(--text);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.mini-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-section {
  width: min(1160px, 92vw);
  margin: 24px auto 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 25, 53, 0.15);
  border: 1px solid rgba(255, 25, 53, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}

h1 span {
  color: var(--primary-2);
}

.hero-text {
  margin: 0;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
  font-size: 1.05rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.cta-btn {
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 26px rgba(255, 25, 53, 0.35);
}

.cta-btn.ghost {
  color: var(--text);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 16px;
}

.num {
  font-size: 1.55rem;
  font-weight: 700;
  display: block;
}

.label {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-right {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.phone-card {
  width: min(360px, 85vw);
  border-radius: 28px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.floating {
  animation: floating 7s ease-in-out infinite;
}

.phone-logo {
  width: 120px;
  border-radius: 50%;
  margin: 6px auto 20px;
  box-shadow: 0 12px 28px rgba(255, 25, 53, 0.45);
}

.live-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ecf1ff;
  font-size: 0.95rem;
}

.dot.live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #37ff8f;
  box-shadow: 0 0 0 0 rgba(55, 255, 143, 0.7);
  animation: ping 1.8s infinite;
}

.bet-chip {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 25, 53, 0.2);
  border: 1px solid rgba(255, 25, 53, 0.45);
  font-size: 0.82rem;
  line-height: 1.45;
}

.ticker-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 12px 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
  transform: translate3d(0, 0, 0);
}

.ticker span {
  color: #d7ddf2;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
}

.site-footer {
  width: min(1160px, 92vw);
  margin: 24px auto 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 40px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 25, 53, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 25, 53, 0.1);
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(55, 255, 143, 0.6);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(55, 255, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(55, 255, 143, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating,
  .pulse,
  .dot.live,
  .ticker {
    animation: none !important;
  }
}

@media (max-width: 940px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-right {
    order: -1;
    min-height: 340px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
