:root {
  --bg: #030303;
  --surface: #0a0c10;
  --surface-soft: rgba(10, 12, 16, 0.72);
  --line: rgba(255, 255, 255, 0.05);
  --line-strong: rgba(0, 229, 255, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted-soft: rgba(255, 255, 255, 0.35);
  --cyan: #00e5ff;
  --cyan-soft: #9cefff;
  --blue: #0055ff;
  --glow: rgba(0, 229, 255, 0.45);
  --glow-strong: rgba(0, 229, 255, 0.85);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --container: min(1280px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(0, 85, 255, 0.14), transparent 25%),
    linear-gradient(180deg, #030303 0%, #05070b 45%, #030303 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

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

.app-shell {
  position: relative;
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
}

.brand-wordmark {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-white {
  color: #fff;
}

.brand-cyan {
  color: var(--cyan-soft);
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.55);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
}

.header-nav a {
  transition: color 160ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-small:hover,
.btn-small:focus-visible,
.tiktok-link:hover,
.tiktok-link:focus-visible,
.btn-arrow:hover,
.btn-arrow:focus-visible {
  transform: translateY(-1px);
}

.btn-ghost {
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
  padding: 0 18px;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
}

.btn-cta {
  height: 56px;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #9ff4ff;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.7);
}

.btn-small {
  min-width: 96px;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 108px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -30;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.82) 52%, #030303 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.95) 30%, transparent);
}

.hero-aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
}

.aurora-a {
  top: -12%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: rgba(0, 229, 255, 0.12);
}

.aurora-b {
  right: -10%;
  bottom: -16%;
  width: 60vw;
  height: 60vw;
  background: rgba(0, 85, 255, 0.14);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  text-align: left;
  max-width: 780px;
}

.hero-badge,
.game-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
}

.hero-badge {
  padding: 9px 14px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.04);
  color: #d7fbff;
}

.badge-dot,
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3cff95;
  box-shadow: 0 0 16px rgba(60, 255, 149, 0.8);
  animation: pulse 1.9s ease-in-out infinite;
}

.hero-headline {
  margin: 22px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.15rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 12ch;
}

.headline-accent {
  color: var(--cyan-soft);
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.7);
}

.hero-sub {
  margin: 24px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.hero-jackpot {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: fit-content;
}

.eyebrow {
  color: rgba(0, 229, 255, 0.8);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}

.eyebrow.small {
  font-size: 0.7rem;
}

.jackpot-value {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(2.5rem, 5vw, 4.45rem);
  color: var(--cyan-soft);
  text-shadow: 0 0 22px rgba(0, 229, 255, 0.55);
  white-space: nowrap;
}

.jackpot-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.hero-cta-row {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn-cta {
  height: 56px;
  padding-left: 30px;
  padding-right: 18px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.55);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  box-shadow: 0 0 55px rgba(0, 229, 255, 0.85);
}

.btn-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--cyan-soft);
  stroke-width: 2.3;
}

.hero-benefits {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-benefits svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(156, 239, 255, 0.9);
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slot-glow {
  position: absolute;
  inset: -30px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.2);
  filter: blur(48px);
}

.hero-slot-image {
  position: relative;
  width: min(100%, 430px);
  max-width: 430px;
  margin-inline: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 229, 255, 0.35));
}

.floaty {
  animation: floaty 5s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.4);
}

.games-section,
.vip-section {
  position: relative;
  padding: 96px 0;
}

.games-section {
  border-top: 1px solid var(--line);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.section-header h2 {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.section-header p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
  margin: 0;
}

.reels-demo {
  position: relative;
  margin-bottom: 48px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.88), rgba(10, 12, 16, 0.78));
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.reels-demo::before {
  content: "";
  position: absolute;
  inset: -60px -20px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.12);
  filter: blur(48px);
  pointer-events: none;
}

.reels-demo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.reels-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 8px;
}

.reels-meta {
  margin-top: 6px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}

.reels-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.reel {
  position: relative;
  width: 56px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.16);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(10, 12, 16, 0.95));
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.reel::before,
.reel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  pointer-events: none;
}

.reel::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.reel::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}

.reel span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cyan-soft);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.55);
  transform: translateY(100%);
  animation: reelSpin 1.4s ease-in-out infinite;
}

.reels-prize {
  text-align: right;
}

.reels-prize-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--cyan-soft);
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
  margin-top: 8px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.game-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.game-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition:
    opacity 220ms ease,
    transform 700ms ease;
}

.game-card:hover img,
.game-card:focus-within img {
  opacity: 0.8;
  transform: scale(1.05);
}

.game-gradient,
.game-base-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.game-base-fade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}

.gradient-cyan {
  background: linear-gradient(45deg, rgba(0, 229, 255, 0.28), transparent 60%);
}

.gradient-blue {
  background: linear-gradient(45deg, rgba(0, 85, 255, 0.25), transparent 60%);
}

.gradient-fuchsia {
  background: linear-gradient(45deg, rgba(176, 0, 255, 0.18), transparent 60%);
}

.game-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
}

.game-pill {
  width: fit-content;
  padding: 7px 11px;
  color: #dffbff;
  border: 1px solid rgba(0, 229, 255, 0.24);
  background: rgba(0, 229, 255, 0.08);
}

.lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  margin-right: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cyan-soft);
  font-size: 0.62rem;
  letter-spacing: 0;
  text-transform: none;
}

.game-content h3,
.vip-card h3 {
  margin: 12px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.02;
  font-weight: 700;
}

.game-content p,
.vip-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.68;
  font-size: 0.95rem;
  max-width: 34ch;
}

.card-slots {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 600px;
}

.card-vip,
.card-roulette {
  grid-column: span 7;
}

.vip-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

.vip-header {
  margin-bottom: 58px;
}

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

.vip-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.vip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 20px 60px -20px rgba(0, 229, 255, 0.35);
}

.vip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.15);
}

.vip-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--cyan-soft);
  stroke-width: 1.8;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.8);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 40px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mark {
  width: 36px;
  height: 36px;
}

.footer-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
}

.footer-brand p,
.footer-responsible p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-size: 0.94rem;
  max-width: 420px;
}

.tiktok-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.tiktok-link:hover,
.tiktok-link:focus-visible {
  border-color: rgba(0, 229, 255, 0.4);
  color: #fff;
}

.tiktok-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tiktok-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--cyan-soft);
}

.footer-legal {
  display: grid;
  gap: 14px;
  align-content: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.footer-responsible .age-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 94, 94, 0.3);
  background: rgba(255, 94, 94, 0.14);
  color: #ff9b9b;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
}

.hero-headline,
.section-header h2,
.game-content h3,
.vip-card h3,
.reels-title,
.reels-prize-value,
.jackpot-value {
  font-family: "Outfit", sans-serif;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

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

@keyframes reelSpin {
  0% {
    transform: translateY(110%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(-110%);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 32px, 100%);
  }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 0;
  }

  .header-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual {
    display: none;
  }

  .section-header,
  .reels-demo,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .games-grid {
    gap: 18px;
  }

  .card-slots,
  .card-vip,
  .card-roulette {
    grid-column: span 12;
    min-height: 280px;
  }

  .vip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .site-header {
    background: rgba(0, 0, 0, 0.72);
  }

  .header-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn-ghost {
    display: none;
  }

  .btn-small {
    flex: 1;
  }

  .hero-section {
    padding-top: 120px;
  }

  .hero-headline {
    font-size: clamp(2.95rem, 14vw, 4.6rem);
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-slot-image {
    width: min(100%, 340px);
  }

  .hero-cta-row {
    gap: 16px;
  }

  .btn-cta {
    width: 100%;
    justify-content: space-between;
  }

  .hero-benefits {
    gap: 14px;
    font-size: 0.76rem;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header h2 {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .reels-demo {
    padding: 18px;
  }

  .reels-track {
    gap: 8px;
    flex-wrap: wrap;
  }

  .reel {
    width: 50px;
    height: 74px;
  }

  .reels-demo {
    gap: 18px;
  }

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

  .footer-inner {
    gap: 26px;
  }
}
