:root {
  --sm-bg: #07091a;
  --sm-bg-soft: #0f1330;
  --sm-card: #151a3d;
  --sm-card-2: #1d2454;
  --sm-text: #eef3ff;
  --sm-muted: #a8b3d6;
  --sm-line: rgba(255, 255, 255, 0.12);
  --sm-blue: #2b5cff;
  --sm-cyan: #23d9ff;
  --sm-pink: #ff4fb8;
  --sm-orange: #ffb84d;
  --sm-green: #43f0a4;
  --sm-red: #ff5d6c;
  --sm-radius: 24px;
  --sm-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.sm-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(43, 92, 255, 0.25), transparent 32rem),
    radial-gradient(circle at top right, rgba(255, 79, 184, 0.22), transparent 28rem),
    var(--sm-bg);
  color: var(--sm-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.sm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 14px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(7, 9, 26, 0.82);
  border-bottom: 1px solid var(--sm-line);
  backdrop-filter: blur(18px);
}

.sm-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.sm-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sm-blue), var(--sm-pink));
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(43, 92, 255, 0.55);
}

.sm-logo__text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 19px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sm-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.sm-nav a {
  color: var(--sm-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.sm-nav a:hover {
  color: var(--sm-text);
}

.sm-header__cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sm-cyan), var(--sm-blue));
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(35, 217, 255, 0.25);
}

.sm-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sm-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.sm-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 999px;
}

.sm-mobile-nav {
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  z-index: 60;
  padding: 14px;
  border: 1px solid var(--sm-line);
  border-radius: 20px;
  background: rgba(15, 19, 48, 0.96);
  box-shadow: var(--sm-shadow);
}

.sm-mobile-nav a {
  display: block;
  padding: 14px;
  color: var(--sm-text);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
}

.sm-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sm-main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.sm-hero {
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.sm-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(35, 217, 255, 0.35);
  border-radius: 999px;
  background: rgba(35, 217, 255, 0.09);
  color: var(--sm-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sm-hero h1,
.sm-section h2,
.sm-final-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.sm-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
}

.sm-hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--sm-cyan), var(--sm-pink), var(--sm-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sm-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--sm-muted);
  font-size: 18px;
}

.sm-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}

.sm-btn--primary {
  background: linear-gradient(135deg, var(--sm-pink), var(--sm-blue));
  color: white;
  box-shadow: 0 20px 45px rgba(255, 79, 184, 0.28);
}

.sm-btn--secondary {
  border-color: var(--sm-line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--sm-text);
}

.sm-btn--light {
  background: white;
  color: #11142a;
}

.sm-hero__stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sm-hero__stats div {
  padding: 16px;
  border: 1px solid var(--sm-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.sm-hero__stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
}

.sm-hero__stats span {
  color: var(--sm-muted);
  font-size: 13px;
}

.sm-hero__card {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(35, 217, 255, 0.18), rgba(255, 79, 184, 0.2)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--sm-line);
  box-shadow: var(--sm-shadow);
  overflow: hidden;
}

.sm-hero__card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(67, 240, 164, 0.3), transparent 14rem),
    radial-gradient(circle at 80% 30%, rgba(255, 184, 77, 0.25), transparent 13rem),
    linear-gradient(180deg, #10194a, #090c25);
}

.sm-game-preview {
  position: absolute;
  inset: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sm-game-preview__top,
.sm-game-preview__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--sm-line);
  border-radius: 20px;
  background: rgba(7, 9, 26, 0.52);
  backdrop-filter: blur(12px);
}

.sm-game-preview__top span,
.sm-game-preview__bottom span {
  color: var(--sm-muted);
  font-size: 13px;
}

.sm-game-preview__top strong,
.sm-game-preview__bottom strong {
  font-family: "Space Grotesk", sans-serif;
}

.sm-game-preview__screen {
  position: relative;
  z-index: 2;
  height: 250px;
}

.sm-fish,
.sm-coin {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.sm-fish::before {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 24px solid currentColor;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.sm-fish--one {
  width: 92px;
  height: 48px;
  left: 30px;
  top: 40px;
  background: var(--sm-cyan);
  color: var(--sm-cyan);
  box-shadow: 0 0 32px rgba(35, 217, 255, 0.55);
}

.sm-fish--two {
  width: 130px;
  height: 64px;
  right: 36px;
  top: 105px;
  background: var(--sm-pink);
  color: var(--sm-pink);
  box-shadow: 0 0 32px rgba(255, 79, 184, 0.55);
}

.sm-fish--three {
  width: 82px;
  height: 42px;
  left: 88px;
  bottom: 28px;
  background: var(--sm-green);
  color: var(--sm-green);
  box-shadow: 0 0 32px rgba(67, 240, 164, 0.45);
}

.sm-coin {
  width: 78px;
  height: 78px;
  right: 88px;
  bottom: 18px;
  background: linear-gradient(135deg, var(--sm-orange), #fff1a8);
  box-shadow: 0 0 34px rgba(255, 184, 77, 0.55);
}

.sm-section {
  padding: 72px 0;
}

.sm-section--compact {
  padding-top: 0;
}

.sm-section__head {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.sm-section__head h2,
.sm-section h2,
.sm-final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
}

.sm-section__head p {
  max-width: 420px;
  margin: 0;
  color: var(--sm-muted);
}

.sm-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sm-trust-card,
.sm-game-card,
.sm-bonus-box,
.sm-content,
.sm-faq details {
  border: 1px solid var(--sm-line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.sm-trust-card {
  padding: 26px;
  border-radius: var(--sm-radius);
}

.sm-trust-card span {
  color: var(--sm-cyan);
  font-weight: 900;
  font-size: 13px;
}

.sm-trust-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.sm-trust-card p {
  margin: 10px 0 0;
  color: var(--sm-muted);
}

.sm-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sm-game-card {
  overflow: hidden;
  border-radius: var(--sm-radius);
}

.sm-game-card__image {
  min-height: 190px;
  display: grid;
  place-items: center;
  font-size: 64px;
}

.sm-game-card__image--blue {
  background: linear-gradient(135deg, #1b65ff, #23d9ff);
}

.sm-game-card__image--purple {
  background: linear-gradient(135deg, #6c45ff, #ff4fb8);
}

.sm-game-card__image--orange {
  background: linear-gradient(135deg, #ff814d, #ffce52);
}

.sm-game-card__image--green {
  background: linear-gradient(135deg, #0bbf7a, #43f0a4);
}

.sm-game-card__image--cyan {
  background: linear-gradient(135deg, #00a5ff, #23d9ff);
}

.sm-game-card__image--red {
  background: linear-gradient(135deg, #ff335f, #7c2cff);
}

.sm-game-card__body {
  padding: 22px;
}

.sm-game-card__type {
  color: var(--sm-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sm-game-card h3 {
  margin: 8px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.sm-game-card p {
  margin: 0;
  color: var(--sm-muted);
}

.sm-game-card__meta {
  margin: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--sm-muted);
  font-size: 13px;
}

.sm-game-card a {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sm-cyan), var(--sm-blue));
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.sm-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.sm-split__content {
  padding: 38px;
  border-radius: var(--sm-radius);
  background: linear-gradient(135deg, rgba(43, 92, 255, 0.2), rgba(255, 79, 184, 0.1));
  border: 1px solid var(--sm-line);
}

.sm-split__content p {
  color: var(--sm-muted);
}

.sm-check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sm-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--sm-text);
}

.sm-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sm-green);
  font-weight: 900;
}

.sm-bonus-box {
  padding: 38px;
  border-radius: var(--sm-radius);
  background:
    radial-gradient(circle at top right, rgba(255, 184, 77, 0.3), transparent 16rem),
    rgba(255, 255, 255, 0.07);
}

.sm-bonus-box__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 184, 77, 0.14);
  color: var(--sm-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sm-bonus-box strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.sm-bonus-box p {
  color: var(--sm-muted);
  margin: 18px 0 28px;
}

.sm-content {
  padding: clamp(24px, 5vw, 44px);
  border-radius: var(--sm-radius);
}

.sm-content h2,
.sm-content h3 {
  font-family: "Space Grotesk", sans-serif;
}

.sm-content h2 {
  margin-top: 0;
}

.sm-content h3 {
  margin-top: 30px;
  color: var(--sm-cyan);
}

.sm-content p {
  color: var(--sm-muted);
}

.sm-faq {
  display: grid;
  gap: 14px;
}

.sm-faq .sm-section__head {
  margin-bottom: 16px;
}

.sm-faq details {
  border-radius: 18px;
  padding: 20px 24px;
}

.sm-faq summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.sm-faq p {
  color: var(--sm-muted);
  margin-bottom: 0;
}

.sm-final-cta {
  margin: 40px 0 80px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--sm-blue), var(--sm-pink));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--sm-shadow);
}

.sm-final-cta span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}

.sm-final-cta h2 {
  max-width: 720px;
  margin-top: 8px;
}

.sm-footer {
  padding: 48px clamp(16px, 4vw, 48px) 30px;
  border-top: 1px solid var(--sm-line);
  background: #050617;
}

.sm-footer__top {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
}

.sm-footer__logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.sm-footer p {
  max-width: 620px;
  color: var(--sm-muted);
}

.sm-footer__links {
  display: grid;
  gap: 10px;
}

.sm-footer__links a {
  color: var(--sm-muted);
  text-decoration: none;
  font-weight: 700;
}

.sm-footer__links a:hover {
  color: white;
}

.sm-footer__bottom {
  width: min(1200px, 100%);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--sm-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--sm-muted);
  font-size: 13px;
}

@media (max-width: 960px) {
  .sm-nav,
  .sm-header__cta {
    display: none;
  }

  .sm-burger {
    display: block;
    margin-left: auto;
  }

  .sm-hero,
  .sm-split,
  .sm-footer__top {
    grid-template-columns: 1fr;
  }

  .sm-hero {
    min-height: auto;
  }

  .sm-hero__card {
    min-height: 420px;
  }

  .sm-games-grid,
  .sm-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm-section__head,
  .sm-final-cta,
  .sm-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .sm-main {
    width: min(100% - 24px, 1200px);
  }

  .sm-header {
    padding-inline: 12px;
  }

  .sm-logo__text {
    max-width: 170px;
  }

  .sm-hero {
    padding-top: 44px;
  }

  .sm-hero__stats,
  .sm-games-grid,
  .sm-trust-grid {
    grid-template-columns: 1fr;
  }

  .sm-hero__card {
    min-height: 340px;
    border-radius: 24px;
  }

  .sm-hero__card::before {
    inset: 18px;
  }

  .sm-game-preview {
    inset: 34px;
  }

  .sm-section {
    padding: 48px 0;
  }

  .sm-split__content,
  .sm-bonus-box,
  .sm-content {
    padding: 24px;
  }
}