:root {
  --bg: #100f12;
  --text: #f6f2fa;
  --muted: color-mix(in srgb, #e9d8ff 62%, transparent);
  --purple: #a060fe;
  --purple-2: #7b4bd4;
  --purple-1: #6945ad;
  --card: #1a1820;
  --line: color-mix(in srgb, #e9d8ff 10%, transparent);
  --green: #8affc7;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Manrope, "SF Pro Rounded", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, .hero-rtp {
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 32px 10px;
}

.logo img { height: 36px; width: auto; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.92;
}

.nav svg { width: 20px; height: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-login,
.btn-cta {
  background: radial-gradient(734.62% 100% at 0% 50%, var(--purple-1) 0%, var(--purple-2) 100%);
  color: var(--text);
  border-radius: 20px;
}

.btn-login {
  padding: 14px 28px;
  font-size: 15px;
  min-width: 120px;
}

.btn-cta {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 20px;
}

.btn-lg { padding: 18px 36px; font-size: 17px; }

.live {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 32px 18px;
}

.live-side { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }

.online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background:
    radial-gradient(88.8px 78.7px at 22.2px 22px, rgba(0, 184, 95, 0.05) 10.96%, rgba(0, 201, 104, 0.35) 100%),
    #15171a;
}

.live-filters { display: flex; gap: 6px; }

.icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #1c1a22;
  color: color-mix(in srgb, #e9d8ff 45%, transparent);
  display: grid;
  place-items: center;
}

.icon-btn-active { color: var(--purple); }

.drops-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 80%, transparent);
  flex: 1;
}

.drops {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.drop {
  width: 118px;
  min-height: 92px;
  border-radius: 16px;
  padding: 8px 8px 10px;
  background: #17151c center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.drop.red { background-image: url("https://musor2.win/assets/ancient-Bs3b-m8t.png"); }
.drop.gold { background-image: url("https://musor2.win/assets/most_ancient-yjQzIrWo.png"); }
.drop.purple { background-image: url("https://musor2.win/assets/legendary-2LpAiDdH.png"); }
.drop.pink { background-image: url("https://musor2.win/assets/mythical-Do4LthRH.png"); }

.drop img {
  width: 72px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto;
}

.drop span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

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

.hero {
  margin: 0 32px;
  min-height: 420px;
  border-radius: 64px;
  background:
    color-mix(in srgb, #e9d8ff 10%, transparent)
    url("https://musor2.win/assets/main-desktop-N1hjs-46.png") 100% 50% / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 48px 64px;
}

.hero-inner { max-width: 560px; }

.hero-rtp {
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.9;
  background: linear-gradient(180deg, #c9a6ff 0%, #ffffff 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-lead {
  max-width: 420px;
  color: color-mix(in srgb, #fff 82%, transparent);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.modes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 32px 8px;
}

.mode {
  position: relative;
  width: 190px;
  flex: 0 0 190px;
  border-radius: 22px;
  overflow: hidden;
  background: #17141d;
  line-height: 0;
}

.mode img {
  width: 100%;
  height: auto;
  aspect-ratio: 426 / 570;
  object-fit: contain;
  object-position: center top;
}

.mode span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.info {
  padding: 56px 32px 80px;
  display: grid;
  gap: 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats article,
.steps article,
.cards article,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}

.stats strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 36px;
  color: #c9a6ff;
  margin-bottom: 8px;
}

.stats span,
.steps p,
.cards p,
.split p,
.faq p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.eyebrow {
  color: var(--purple);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 10px;
}

.block h2,
.split h2,
.faq h2,
.final h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 22px;
}

.steps,
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.steps em {
  font-style: normal;
  color: var(--purple);
  font-family: Unbounded, sans-serif;
  font-size: 20px;
}

.steps h3,
.cards h3,
.panel h3 {
  margin: 8px 0 8px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.checks {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-block;
  margin-right: 10px;
}

.panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.panel b { color: var(--text); }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
  list-style: none;
}

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

.faq details p { margin-top: 10px; }

.final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 36px;
  background:
    linear-gradient(90deg, #1c1428, #17141d),
    url("https://musor2.win/assets/collection-background-CRRmXmKW.jpg") center / cover;
}

.final .hero-rtp { font-size: 42px; }

.footer {
  padding: 40px 32px 56px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-logo {
  height: 32px;
  width: auto;
  margin: 0 auto 16px;
}

.muted { color: var(--muted); font-size: 13px; margin-top: 8px; }

.footer a { color: #c9a6ff; }

@media (max-width: 960px) {
  .nav { display: none; }
  .header, .live, .modes, .info, .footer { padding-left: 16px; padding-right: 16px; }
  .hero {
    margin: 0 16px;
    min-height: 280px;
    border-radius: 28px;
    padding: 28px 22px;
    background-image: url("https://musor2.win/assets/main-mobile-BX42uYEf.png");
  }
  .stats, .steps, .cards, .split { grid-template-columns: 1fr; }
  .final { flex-direction: column; align-items: flex-start; }
  .mode {
    width: calc((100% - 16px) / 3);
    flex: 1 1 calc((100% - 16px) / 3);
    max-width: 142px;
    border-radius: 16px;
  }
  .mode span { left: 8px; bottom: 8px; font-size: 11px; }
}
