:root {
  --bg0: #070a10;
  --bg1: #0c121c;
  --surface: #111a2a;
  --surface2: #162236;
  --stroke: rgba(120, 170, 255, 0.14);
  --text: #e9f0ff;
  --muted: rgba(233, 240, 255, 0.68);
  --faint: rgba(233, 240, 255, 0.42);
  --blue: #2d7cff;
  --cyan: #38f6c8;
  --violet: #7a5cff;
  --danger: #ff4d6d;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --glow: 0 0 0 1px rgba(56, 246, 200, 0.12), 0 0 40px rgba(45, 124, 255, 0.22);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Noto Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(45, 124, 255, 0.22), transparent 55%),
    radial-gradient(900px 600px at 92% 0%, rgba(56, 246, 200, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 35%, #0a0f18 100%);
  min-height: 100vh;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  border-bottom: 1px solid var(--stroke);
  background: rgba(7, 10, 16, 0.72);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}

.topbar a {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--stroke);
  background: rgba(7, 10, 16, 0.78);
  backdrop-filter: blur(12px);
  animation: hdr-in 0.7s ease both;
}

@keyframes hdr-in {
  from {
    transform: translateY(-6px);
    opacity: 1;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(56, 246, 200, 0.35), transparent 45%),
    linear-gradient(135deg, rgba(45, 124, 255, 0.95), rgba(122, 92, 255, 0.95));
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.35), transparent 60%);
  transform: translateX(-30%);
  animation: shine 4.5s ease-in-out infinite;
}

@keyframes shine {
  0%,
  100% {
    transform: translateX(-40%);
    opacity: 0;
  }
  35% {
    opacity: 0.55;
  }
  60% {
    transform: translateX(40%);
    opacity: 0;
  }
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__title {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1.1;
}

.brand__tag {
  font-size: 12px;
  color: var(--faint);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  will-change: transform;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 10px 30px rgba(45, 124, 255, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(45, 124, 255, 0.5);
  transform: translateY(-1px);
}

.btn--accent {
  background: linear-gradient(135deg, rgba(56, 246, 200, 0.95), rgba(45, 124, 255, 0.95));
  color: #061018;
  box-shadow: 0 10px 30px rgba(56, 246, 200, 0.22);
}

.btn--accent:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 42px 0 26px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 1.28fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__copy {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(17, 26, 42, 0.92), rgba(12, 18, 28, 0.65));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: rise 0.8s ease both 0.05s;
}

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

.hero__copy::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 240px at 20% 0%, rgba(56, 246, 200, 0.18), transparent 60%),
    radial-gradient(500px 260px at 90% 20%, rgba(45, 124, 255, 0.22), transparent 55%);
  pointer-events: none;
}

.hero__copy > * {
  position: relative;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 246, 200, 0.22);
  background: rgba(56, 246, 200, 0.08);
  color: rgba(233, 240, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(56, 246, 200, 0.85);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

h1 {
  margin: 16px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.grad {
  background: linear-gradient(90deg, var(--cyan), #b9ffef 35%, var(--blue) 75%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hero__panel {
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--stroke);
  background: radial-gradient(700px 420px at 30% 10%, rgba(45, 124, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(17, 26, 42, 0.92), rgba(10, 14, 22, 0.72));
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.2vw, 28px);
  position: relative;
  overflow: visible;
  animation: rise 0.85s ease both 0.12s;
}

.hero__panel::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -240px;
  background: radial-gradient(circle, rgba(56, 246, 200, 0.12), transparent 60%);
  filter: blur(2px);
  pointer-events: none;
}

.deposit-card {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 2px solid rgba(56, 246, 200, 0.42);
  background: linear-gradient(155deg, rgba(45, 124, 255, 0.28), rgba(17, 26, 42, 0.94) 40%, rgba(8, 12, 20, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(45, 124, 255, 0.12),
    0 22px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(56, 246, 200, 0.12);
  padding: clamp(26px, 3.5vw, 40px) clamp(20px, 3vw, 32px) clamp(22px, 3vw, 34px);
  text-align: center;
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
  justify-items: center;
  animation: deposit-card-glow 3.2s ease-in-out infinite;
}

@keyframes deposit-card-glow {
  0%,
  100% {
    border-color: rgba(56, 246, 200, 0.38);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 0 1px rgba(45, 124, 255, 0.12),
      0 22px 56px rgba(0, 0, 0, 0.45),
      0 0 40px rgba(56, 246, 200, 0.1);
  }
  50% {
    border-color: rgba(120, 255, 220, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 0 0 1px rgba(45, 124, 255, 0.22),
      0 26px 64px rgba(0, 0, 0, 0.5),
      0 0 56px rgba(56, 246, 200, 0.22);
  }
}

.deposit-card__badge {
  margin: 0;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dffe8;
  text-shadow: 0 0 24px rgba(56, 246, 200, 0.45);
}

.deposit-card__title {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
  color: rgba(233, 240, 255, 0.88);
}

.deposit-card__amount {
  margin: clamp(6px, 1vw, 12px) 0 clamp(4px, 0.8vw, 10px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.deposit-card__plus {
  font-size: clamp(36px, 6.5vw, 58px);
  background: linear-gradient(180deg, #e4fffa, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(56, 246, 200, 0.5));
}

.deposit-card__num {
  font-size: clamp(52px, 10vw, 92px);
  background: linear-gradient(100deg, #ffffff, #b9ffef 38%, var(--cyan) 55%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(56, 246, 200, 0.4)) drop-shadow(0 0 40px rgba(45, 124, 255, 0.25));
}

.deposit-card__rub {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: rgba(233, 240, 255, 0.95);
  margin-left: 6px;
}

.deposit-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin-top: clamp(6px, 1vw, 12px);
  padding: clamp(18px, 2.4vw, 24px) clamp(28px, 4vw, 40px);
  min-height: 56px;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 900;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(120deg, #5dffd8, #38f6c8 35%, #2d7cff 100%);
  color: #030810;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 14px 40px rgba(56, 246, 200, 0.35),
    0 0 36px rgba(56, 246, 200, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: deposit-cta-pulse 2.4s ease-in-out infinite;
}

@keyframes deposit-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.2) inset,
      0 14px 40px rgba(56, 246, 200, 0.32),
      0 0 32px rgba(56, 246, 200, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.15) inset,
      0 20px 52px rgba(45, 124, 255, 0.42),
      0 0 48px rgba(56, 246, 200, 0.45);
  }
}

.deposit-card__btn:hover {
  transform: translateY(-3px) scale(1.03);
  animation: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 22px 56px rgba(45, 124, 255, 0.48),
    0 0 56px rgba(56, 246, 200, 0.42);
  filter: brightness(1.06);
}

.deposit-card__btn:active {
  transform: translateY(-1px) scale(1.01);
}

.deposit-card__note {
  margin: clamp(8px, 1.2vw, 14px) 0 0;
  max-width: 38ch;
  font-size: clamp(12px, 1.3vw, 13px);
  line-height: 1.5;
  color: var(--faint);
}

.jackpot {
  margin: 26px 0 10px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 246, 200, 0.18);
  background: linear-gradient(120deg, rgba(17, 26, 42, 0.95), rgba(10, 18, 30, 0.78));
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: rise 0.9s ease both 0.18s;
}

.jackpot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(45, 124, 255, 0.12), transparent 70%);
  transform: translateX(-30%);
  animation: sweep 6s linear infinite;
}

@keyframes sweep {
  to {
    transform: translateX(30%);
  }
}

@media (max-width: 720px) {
  .jackpot {
    grid-template-columns: 1fr;
  }
}

.jackpot h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.jackpot p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 22px 0 10px;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 0 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pill small {
  font-weight: 800;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.18);
  border: 1px solid rgba(45, 124, 255, 0.28);
  color: rgba(233, 240, 255, 0.92);
}

.carousel__controls {
  display: flex;
  gap: 10px;
}

.iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.iconbtn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.row::-webkit-scrollbar {
  height: 8px;
}

.row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.card {
  flex: 0 0 170px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card__cap {
  position: relative;
  z-index: 1;
  padding: 10px 10px 12px;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.2), rgba(10, 14, 22, 0.92));
}

.card__title {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card__sub {
  margin-top: 4px;
  font-size: 11px;
  color: var(--faint);
}

.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 230px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.22s ease;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}

.card:hover .card__overlay {
  opacity: 1;
}

.play {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(45, 124, 255, 0.85);
  box-shadow: 0 12px 30px rgba(45, 124, 255, 0.35);
  display: grid;
  place-items: center;
  transform: translateY(6px) scale(0.92);
  transition: transform 0.22s ease;
}

.card:hover .play {
  transform: translateY(0) scale(1);
}

.prose {
  margin: 18px 0 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(17, 26, 42, 0.55);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.prose h2 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.prose h3 {
  margin: 18px 0 8px;
  font-size: 16px;
  color: rgba(233, 240, 255, 0.92);
}

.prose p {
  margin: 0 0 12px;
  color: var(--muted);
}

.prose ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
}

.prose li {
  margin: 6px 0;
}

.note {
  border-left: 3px solid rgba(56, 246, 200, 0.55);
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(56, 246, 200, 0.06);
  color: rgba(233, 240, 255, 0.78);
  margin: 14px 0;
}

.footer {
  margin-top: 26px;
  border-top: 1px solid var(--stroke);
  padding: 34px 0 44px;
  color: var(--muted);
  background: radial-gradient(900px 420px at 50% 0%, rgba(45, 124, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(10, 14, 22, 0.2), rgba(7, 10, 16, 0.65));
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(233, 240, 255, 0.92);
  letter-spacing: 0.02em;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

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

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.brand--footer .brand__title {
  font-size: 16px;
}

.legal {
  margin-top: 18px;
  font-size: 12px;
  color: var(--faint);
  line-height: 1.5;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .brand__mark::after {
    animation: none;
  }
}
