@property --hero-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --ink: #fbf5ff;
  --ink-soft: rgba(251, 245, 255, 0.7);
  --ink-faint: rgba(251, 245, 255, 0.38);
  --abyss: #04020e;
  --night: #0a0420;
  --night-2: #14082c;

  --neon-pink: #ff2c91;
  --neon-cyan: #14e8ff;
  --neon-lime: #b6ff3a;
  --neon-amber: #ffb22e;
  --neon-violet: #a154ff;
  --neon-red: #ff3a4a;

  --hero-mavi: #5cc7ff;
  --hero-mavi-koyu: #082446;

  --rad-tile: 14px;
  --rad-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--abyss);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(18 23 75), rgb(158 167 215 / 50%)) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grid-floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -30vh;
  height: 80vh;
  transform: perspective(700px) rotateX(60deg);
  transform-origin: 50% 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--neon-pink) 42%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--neon-cyan) 42%, transparent) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 70%);
  opacity: 0.55;
  animation: floor-scroll 14s linear infinite;
}

@keyframes floor-scroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 60px;
  }
}

.blob {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  mix-blend-mode: screen;
  will-change: transform;
}

.b1 {
  background: radial-gradient(circle, var(--neon-pink), transparent 60%);
  top: -22%;
  left: -12%;
  animation: drift1 28s ease-in-out infinite alternate;
}

.b2 {
  background: radial-gradient(circle, var(--neon-cyan), transparent 60%);
  top: 8%;
  right: -18%;
  animation: drift2 34s ease-in-out infinite alternate;
}

.b3 {
  background: radial-gradient(circle, var(--neon-violet), transparent 60%);
  bottom: -22%;
  left: 28%;
  width: 70vmax;
  height: 70vmax;
  opacity: 0.4;
  animation: drift3 40s ease-in-out infinite alternate;
}

.b4 {
  background: radial-gradient(circle, var(--neon-lime), transparent 65%);
  bottom: -14%;
  right: -10%;
  opacity: 0.28;
  animation: drift4 32s ease-in-out infinite alternate;
}

.b5 {
  background: radial-gradient(circle, var(--neon-amber), transparent 65%);
  top: 38%;
  left: 38%;
  width: 32vmax;
  height: 32vmax;
  opacity: 0.28;
  animation: drift5 22s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(8vmax, 6vmax) scale(1.15);
  }
}

@keyframes drift2 {
  from {
    transform: translate(0, 0) scale(1.05);
  }

  to {
    transform: translate(-9vmax, 7vmax) scale(0.95);
  }
}

@keyframes drift3 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(6vmax, -6vmax) scale(1.1);
  }
}

@keyframes drift4 {
  from {
    transform: translate(0, 0) scale(0.95);
  }

  to {
    transform: translate(-5vmax, -8vmax) scale(1.08);
  }
}

@keyframes drift5 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(4vmax, -3vmax) scale(0.85);
  }
}

.waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.waves path {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.45;
}

.waves .wA {
  stroke: var(--neon-pink);
  filter: drop-shadow(0 0 8px var(--neon-pink));
  animation: float-y 16s ease-in-out infinite alternate;
}

.waves .wB {
  stroke: var(--neon-cyan);
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  animation: float-y 21s ease-in-out -3s infinite alternate;
}

.waves .wC {
  stroke: var(--neon-violet);
  filter: drop-shadow(0 0 8px var(--neon-violet));
  animation: float-y 18s ease-in-out -6s infinite alternate;
}

.waves .wD {
  stroke: var(--neon-lime);
  filter: drop-shadow(0 0 8px var(--neon-lime));
  animation: float-y 24s ease-in-out -2s infinite alternate;
}

@keyframes float-y {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(28px);
  }
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' /></svg>");
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}

.sparkles span:nth-child(1) {
  top: 8%;
  left: 12%;
  background: var(--neon-amber);
  box-shadow: 0 0 10px var(--neon-amber);
  animation-delay: 0.2s;
}

.sparkles span:nth-child(2) {
  top: 18%;
  left: 88%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation-delay: 1.4s;
}

.sparkles span:nth-child(3) {
  top: 42%;
  left: 5%;
  background: var(--neon-pink);
  box-shadow: 0 0 10px var(--neon-pink);
  animation-delay: 0.7s;
}

.sparkles span:nth-child(4) {
  top: 70%;
  left: 92%;
  background: var(--neon-amber);
  box-shadow: 0 0 10px var(--neon-amber);
  animation-delay: 2.1s;
}

.sparkles span:nth-child(5) {
  top: 86%;
  left: 22%;
  background: var(--neon-lime);
  box-shadow: 0 0 10px var(--neon-lime);
  animation-delay: 1.1s;
}

.sparkles span:nth-child(6) {
  top: 30%;
  left: 50%;
  background: var(--neon-violet);
  box-shadow: 0 0 10px var(--neon-violet);
  animation-delay: 3.0s;
}

.sparkles span:nth-child(7) {
  top: 58%;
  left: 70%;
  background: var(--neon-amber);
  box-shadow: 0 0 10px var(--neon-amber);
  animation-delay: 2.5s;
}

.sparkles span:nth-child(8) {
  top: 12%;
  left: 60%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation-delay: 0.4s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px 72px;
}

.crown {
  text-align: center;
  margin-bottom: 22px;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.05s;
}

.crown .eyebrow {
  font-family: 'Tilt Neon', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 11px;
  color: var(--neon-cyan);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 4px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 20px color-mix(in srgb, var(--neon-cyan) 70%, transparent);
}

.crown .eyebrow::before,
.crown .eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  box-shadow: 0 0 6px var(--neon-cyan);
}

.crown h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-variation-settings: "opsz" 96;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.4),
    0 0 16px color-mix(in srgb, var(--neon-violet) 60%, transparent),
    0 0 36px color-mix(in srgb, var(--neon-violet) 30%, transparent);
}

.crown h1 em {
  font-style: normal;
  font-family: 'Pacifico', cursive;
  color: var(--neon-pink);
  font-size: 0.74em;
  margin: 0 4px;
  display: inline-block;
  transform: translateY(-4px) rotate(-3deg);
  text-shadow:
    0 0 6px var(--neon-pink),
    0 0 16px var(--neon-pink),
    0 0 32px color-mix(in srgb, var(--neon-pink) 60%, transparent);
}

.hero-banner {
  display: block;
  margin: 4px auto 14px;
  max-width: 760px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.25s ease;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.18s;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-banner:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px auto 14px;
  max-width: 1180px;
  width: 100%;
  padding: 8px 8px 8px 16px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--night-2) 78%, transparent) 0%, rgba(8, 4, 20, 0.92) 100%);
  border: 1.5px solid color-mix(in srgb, var(--neon-cyan) 60%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--neon-cyan) 15%, transparent),
    0 0 22px color-mix(in srgb, var(--neon-cyan) 35%, transparent),
    0 0 56px -12px color-mix(in srgb, var(--neon-cyan) 50%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.18s;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--neon-cyan) 50%, transparent), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(160deg, #6cd0ff 0%, #1c82d8 100%);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 -3px 8px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    0 0 18px rgba(28, 130, 216, 0.7);
  position: relative;
  z-index: 1;
}

.hero-card__icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
  transform: translateX(-2px);
}

.hero-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-card__title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-card__sub {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  line-height: 1;
  text-shadow: 0 0 6px var(--neon-cyan), 0 0 12px color-mix(in srgb, var(--neon-cyan) 50%, transparent);
}

.hero-card__cta {
  flex-shrink: 0;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(8, 4, 20, 0.6) 0%, rgba(4, 2, 12, 0.85) 100%);
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: 'Tilt Neon', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 0 6px var(--neon-cyan), 0 0 12px color-mix(in srgb, var(--neon-cyan) 70%, transparent);
  box-shadow:
    0 0 12px color-mix(in srgb, var(--neon-cyan) 50%, transparent),
    inset 0 0 10px color-mix(in srgb, var(--neon-cyan) 15%, transparent);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.hero-card:hover {
  transform: translateY(-2px);
  border-color: var(--neon-cyan);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--neon-cyan) 30%, transparent),
    0 0 36px color-mix(in srgb, var(--neon-cyan) 60%, transparent),
    0 0 78px -8px color-mix(in srgb, var(--neon-cyan) 70%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-card:hover .hero-card__cta {
  background: linear-gradient(180deg, color-mix(in srgb, var(--neon-cyan) 18%, transparent) 0%, color-mix(in srgb, var(--neon-cyan) 5%, transparent) 100%);
  box-shadow:
    0 0 20px color-mix(in srgb, var(--neon-cyan) 85%, transparent),
    inset 0 0 18px color-mix(in srgb, var(--neon-cyan) 30%, transparent);
}

.hero-mark {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 4px auto 14px;
  max-width: 1180px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 14px;
  background: transparent;
  border: 0;
  box-shadow:
    0 14px 40px -14px rgba(0, 0, 0, 0.7),
    0 0 24px color-mix(in srgb, var(--hero-mavi) 18%, transparent);
  overflow: hidden;
  isolation: isolate;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-mark::before {
  content: '';
  position: absolute;
  width: 240%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  background: conic-gradient(
    color-mix(in srgb, var(--hero-mavi) 18%, transparent) 0deg,
    color-mix(in srgb, var(--hero-mavi) 18%, transparent) 220deg,
    color-mix(in srgb, var(--hero-mavi) 70%, transparent) 270deg,
    var(--hero-mavi) 308deg,
    #ffffff 325deg,
    var(--hero-mavi) 342deg,
    color-mix(in srgb, var(--hero-mavi) 70%, transparent) 350deg,
    color-mix(in srgb, var(--hero-mavi) 18%, transparent) 360deg
  );
  animation: hero-spin 3.2s linear infinite;
  pointer-events: none;
  z-index: -2;
}

.hero-mark::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  background: radial-gradient(120% 100% at 50% 50%, #0d1738 0%, #050b22 70%, #02061a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: -1;
}

@keyframes hero-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-mark:hover {
  transform: translateY(-2px);
}
.hero-mark:hover::before {
  animation-duration: 1.4s;
}

.hero-mark__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  isolation: isolate;
  filter: drop-shadow(0 4px 10px rgba(0, 30, 80, 0.5));
}
.hero-mark__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--hero-mavi-koyu) 0deg 22.5deg,
    var(--hero-mavi) 22.5deg 45deg,
    var(--hero-mavi-koyu) 45deg 67.5deg,
    var(--hero-mavi) 67.5deg 90deg,
    var(--hero-mavi-koyu) 90deg 112.5deg,
    var(--hero-mavi) 112.5deg 135deg,
    var(--hero-mavi-koyu) 135deg 157.5deg,
    var(--hero-mavi) 157.5deg 180deg,
    var(--hero-mavi-koyu) 180deg 202.5deg,
    var(--hero-mavi) 202.5deg 225deg,
    var(--hero-mavi-koyu) 225deg 247.5deg,
    var(--hero-mavi) 247.5deg 270deg,
    var(--hero-mavi-koyu) 270deg 292.5deg,
    var(--hero-mavi) 292.5deg 315deg,
    var(--hero-mavi-koyu) 315deg 337.5deg,
    var(--hero-mavi) 337.5deg 360deg
  );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 10px color-mix(in srgb, var(--hero-mavi) 35%, transparent);
  z-index: -2;
}
.hero-mark__icon::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #2588d2 0%, #0c4a90 60%, #062b5c 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.32),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  z-index: -1;
}
.hero-mark__icon svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: #fff;
  filter: drop-shadow(0 0 4px color-mix(in srgb, var(--hero-mavi) 65%, transparent)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
  transform: translateX(-1px);
}

.hero-mark__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.hero-mark__line {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-mark__num {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 0 14px color-mix(in srgb, var(--hero-mavi) 32%, transparent);
}
.hero-mark__unit {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--hero-mavi);
  text-shadow:
    0 0 6px var(--hero-mavi),
    0 0 14px color-mix(in srgb, var(--hero-mavi) 60%, transparent);
  transform: translateY(-10px);
}
.hero-mark__sub {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
}

.hero-mark__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, var(--hero-mavi-koyu) 0%, #03152e 100%);
  border: 1.5px solid var(--hero-mavi);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  box-shadow:
    0 0 16px color-mix(in srgb, var(--hero-mavi) 55%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 4px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, gap 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.hero-mark__cta svg { width: 12px; height: 12px; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }

.hero-mark:hover .hero-mark__cta {
  gap: 11px;
  transform: scale(1.03);
  box-shadow:
    0 0 26px color-mix(in srgb, var(--hero-mavi) 95%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}
.hero-mark:hover .hero-mark__cta svg { transform: translateX(3px); }

.hero-tg {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 4px auto 14px;
  max-width: 1180px;
  width: 100%;
  padding: 10px 10px 10px 18px;
  height: 72px;
  border-radius: 16px;
  background:
    radial-gradient(80% 140% at 30% -30%, rgba(255, 255, 255, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, #2d6dd8 0%, #1b4ea2 50%, #0c2766 100%);
  box-shadow:
    0 14px 38px -14px rgba(15, 50, 130, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 6px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  isolation: isolate;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.18s;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
}

.hero-tg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0px,
    transparent 16px,
    rgba(255, 255, 255, 0.045) 16px,
    rgba(255, 255, 255, 0.045) 17px);
  pointer-events: none;
  z-index: 0;
}

.hero-tg__icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #6cd0ff 0%, #2588d2 70%, #145ba0 100%);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 -3px 8px rgba(0, 0, 0, 0.32),
    inset 0 2px 4px rgba(255, 255, 255, 0.55),
    0 6px 16px -4px rgba(0, 30, 80, 0.55),
    0 0 0 1.5px rgba(255, 255, 255, 0.18);
}
.hero-tg__icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
  transform: translateX(-2px);
}

.hero-tg__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  min-width: 0;
}
.hero-tg__title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.005em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 2px 4px rgba(0, 30, 80, 0.45),
    0 0 14px rgba(255, 255, 255, 0.16);
}
.hero-tg__sub {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #9ec5ee;
  line-height: 1;
}

.hero-tg__cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--hero-mavi-koyu) 0%, #03152e 100%);
  border: 1.5px solid var(--hero-mavi);
  color: #fff;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  box-shadow:
    0 0 16px color-mix(in srgb, var(--hero-mavi) 55%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 4px rgba(0, 0, 0, 0.32);
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
}

.hero-tg:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.hero-tg:hover .hero-tg__cta {
  transform: scale(1.03);
  box-shadow:
    0 0 26px color-mix(in srgb, var(--hero-mavi) 95%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.hero {
  position: relative;
  margin: 10px auto 30px;
  max-width: 580px;
  height: 38px;
  padding: 0 4px 0 14px;
  border-radius: var(--rad-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 4, 20, 0.6);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid color-mix(in srgb, var(--neon-cyan) 40%, transparent);
  box-shadow:
    0 0 12px color-mix(in srgb, var(--neon-cyan) 35%, transparent),
    0 0 28px -6px color-mix(in srgb, var(--neon-cyan) 40%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: 'Tilt Neon', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.18s;
}

.hero .pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--neon-cyan), 0 0 14px var(--neon-cyan);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.hero .icon {
  width: 16px;
  height: 16px;
  fill: var(--neon-cyan);
  filter: drop-shadow(0 0 4px var(--neon-cyan));
  flex-shrink: 0;
}

.hero-text {
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero-text strong {
  color: var(--neon-cyan);
  font-weight: 700;
  text-shadow: 0 0 4px var(--neon-cyan), 0 0 10px color-mix(in srgb, var(--neon-cyan) 70%, transparent);
  margin-right: 4px;
}

.hero-cta {
  flex-shrink: 0;
  height: 30px;
  padding: 0 14px;
  border-radius: var(--rad-pill);
  background: linear-gradient(180deg, var(--neon-cyan) 0%, #0e9ec2 100%);
  color: var(--abyss);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow:
    0 0 14px color-mix(in srgb, var(--neon-cyan) 70%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 30, 60, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta svg {
  width: 10px;
  height: 10px;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 22px color-mix(in srgb, var(--neon-cyan) 100%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(0, 30, 60, 0.3);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  --brand: var(--neon-pink);

  position: relative;
  border-radius: var(--rad-tile);
  padding: 18px 16px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  color: var(--ink);

  background:
    radial-gradient(120% 70% at 50% -10%,
      color-mix(in srgb, var(--brand) 28%, transparent) 0%,
      transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--night-2) 62%, transparent) 0%, rgba(8, 4, 20, 0.78) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1.5px solid color-mix(in srgb, var(--brand) 60%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--brand) 15%, transparent),
    0 0 24px color-mix(in srgb, var(--brand) 35%, transparent),
    0 0 60px -12px color-mix(in srgb, var(--brand) 50%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transform: translateZ(0);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(0.3s + (var(--i, 0) * 0.06s));
}

.card:hover {
  transform: translateY(-4px) scale(1.012);
  border-color: color-mix(in srgb, var(--brand) 100%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--brand) 30%, transparent),
    0 0 38px color-mix(in srgb, var(--brand) 55%, transparent),
    0 0 80px -8px color-mix(in srgb, var(--brand) 70%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--brand) 55%, transparent), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 70%;
  height: 60%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--brand) 45%, transparent), transparent 70%);
  filter: blur(34px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.card-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 44%;
  width: 100%;
  height: 50px;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}

.card-wave path {
  fill: none;
  stroke: color-mix(in srgb, var(--brand) 80%, white 20%);
  stroke-width: 1.4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px var(--brand));
}

.logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.logo img {
  max-height: 40px;
  max-width: 84%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.04);
  transition: transform 0.4s ease;
}

.card:hover .logo img {
  transform: scale(1.04);
}

.zlot-mark {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: #fff;
  transform: rotate(-3deg);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.bonus-line {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  width: 100%;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding: 0 4px;
  text-wrap: balance;
  word-break: keep-all;
}

.amount {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;

}

.amount sup {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  margin-left: 3px;
  transform: translateY(-12px);
  color: rgba(255, 255, 255, 0.92);

}

.label {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-family: 'Tilt Neon', sans-serif;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--brand) 80%, white 20%);
  text-shadow: 0 0 6px var(--brand), 0 0 14px color-mix(in srgb, var(--brand) 60%, transparent);
}

.cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 13px 18px 14px;
  border-radius: 0 0 calc(var(--rad-tile) - 1.5px) calc(var(--rad-tile) - 1.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Tilt Neon', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border-top: 1px solid color-mix(in srgb, var(--brand) 80%, transparent);
  background: rgba(2, 1, 8, 0.88);
  box-shadow:

    inset 0 2px 0 -1px var(--brand),
    inset 0 6px 14px -6px color-mix(in srgb, var(--brand) 70%, transparent),

    0 -2px 14px -2px color-mix(in srgb, var(--brand) 50%, transparent);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.cta svg {
  width: 13px;
  height: 13px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .cta {
  background: rgba(2, 1, 8, 0.78);
  box-shadow:
    inset 0 3px 0 -1px var(--brand),
    inset 0 9px 18px -6px color-mix(in srgb, var(--brand) 90%, transparent),
    0 -2px 22px -2px color-mix(in srgb, var(--brand) 75%, transparent);
}

.cta:active {
  background: rgba(2, 1, 8, 0.96);
  box-shadow:
    inset 0 1px 0 -1px var(--brand),
    inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.card.soon {
  --brand: var(--neon-violet);
  padding-bottom: 18px;
}

.card.soon .logo,
.card.soon .amount,
.card.soon .label,
.card.soon .cta {
  display: none;
}

.card.soon .soon-stack {
  position: relative;
  z-index: 1;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.card.soon .soon-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: rgba(8, 4, 20, 0.6);
  border: 1.5px solid var(--neon-violet);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 14px color-mix(in srgb, var(--neon-violet) 55%, transparent),
    inset 0 0 12px color-mix(in srgb, var(--neon-violet) 18%, transparent);
}

.card.soon .soon-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--neon-violet);
  filter: drop-shadow(0 0 8px var(--neon-violet));
}

.card.soon .soon-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4), 0 0 14px var(--neon-violet);
}

.card.soon .soon-sub {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--neon-violet);
  text-shadow: 0 0 6px var(--neon-violet);
}



@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 880px) {
  .hero-card { height: 56px; padding: 6px 6px 6px 12px; gap: 12px; }
  .hero-card__icon { width: 42px; height: 42px; }
  .hero-card__icon svg { width: 22px; height: 22px; }
  .hero-card__title { font-size: 19px; }
  .hero-card__sub { font-size: 9px; letter-spacing: 0.26em; }
  .hero-card__cta { height: 40px; padding: 0 14px; font-size: 11px; letter-spacing: 0.14em; }

  .hero-mark { padding: 14px 16px; gap: 14px; border-radius: 12px; }
  .hero-mark::after { border-radius: 10px; }
  .hero-mark__icon { width: 44px; height: 44px; }
  .hero-mark__icon::after { inset: 5px; }
  .hero-mark__icon svg { width: 20px; height: 20px; }
  .hero-mark__num { font-size: 36px; }
  .hero-mark__unit { font-size: 18px; transform: translateY(-8px); }
  .hero-mark__sub { font-size: 9.5px; letter-spacing: 0.28em; }
  .hero-mark__cta { height: 38px; padding: 0 14px; font-size: 11px; letter-spacing: 0.14em; }
  .hero-mark__bulbs { left: 10px; right: 10px; height: 3px; background-size: 12px 100%; }
  .hero-mark__bulbs--top { top: 5px; }
  .hero-mark__bulbs--bottom { bottom: 5px; }

  .hero-tg { height: 64px; padding: 8px 8px 8px 14px; gap: 12px; border-radius: 14px; }
  .hero-tg__icon { width: 46px; height: 46px; }
  .hero-tg__icon svg { width: 22px; height: 22px; }
  .hero-tg__title { font-size: 23px; }
  .hero-tg__sub { font-size: 9.5px; letter-spacing: 0.28em; }
  .hero-tg__cta { height: 42px; padding: 0 16px; font-size: 12px; letter-spacing: 0.04em; }

  .grid {
    gap: 12px;
  }

  .crown h1 {
    font-size: 30px;
  }

  .hero {
    font-size: 11px;
    height: 36px;
    max-width: 100%;
    gap: 8px;
    padding: 0 4px 0 12px;
  }

  .hero-cta {
    height: 28px;
    padding: 0 11px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }

  .hero .icon {
    width: 14px;
    height: 14px;
  }

  .card {
    padding: 16px 12px 50px;
  }

  .logo {
    height: 44px;
  }

  .logo img {
    max-height: 33px;
  }

  .zlot-mark {
    font-size: 36px;
  }

  .bonus-line {
    font-size: 18px;
    margin-top: 10px;
  }

  .amount {
    font-size: 34px;
    margin-top: 6px;
  }

  .amount sup {
    font-size: 13px;
    transform: translateY(-10px);
  }

  .label {
    font-size: 9px;
    letter-spacing: 0.26em;
  }

  .cta {
    padding: 11px 14px 12px;
    font-size: 11px;
    letter-spacing: 0.18em;
    gap: 7px;
  }

  .cta svg {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 10px 12px 56px;
  }

  .hero-card { height: 48px; padding: 4px 4px 4px 10px; gap: 8px; border-radius: 12px; }
  .hero-card__icon { width: 36px; height: 36px; }
  .hero-card__icon svg { width: 18px; height: 18px; }
  .hero-card__title { font-size: 15px; }
  .hero-card__sub { font-size: 7.5px; letter-spacing: 0.2em; }
  .hero-card__cta { height: 34px; padding: 0 10px; font-size: 9px; letter-spacing: 0.1em; }

  .hero-mark { padding: 10px 12px; gap: 10px; border-radius: 10px; }
  .hero-mark::after { border-radius: 8px; }
  .hero-mark__icon { width: 38px; height: 38px; }
  .hero-mark__icon::after { inset: 4px; }
  .hero-mark__icon svg { width: 17px; height: 17px; }
  .hero-mark__num { font-size: 26px; letter-spacing: -0.04em; }
  .hero-mark__unit { font-size: 13px; transform: translateY(-6px); }
  .hero-mark__sub { font-size: 7.5px; letter-spacing: 0.22em; margin-top: 2px; }
  .hero-mark__cta { height: 32px; padding: 0 11px; font-size: 9px; letter-spacing: 0.1em; gap: 5px; }
  .hero-mark__cta svg { width: 9px; height: 9px; }
  .hero-mark__bulbs { left: 8px; right: 8px; height: 3px; background-size: 10px 100%; }
  .hero-mark__bulbs--top { top: 4px; }
  .hero-mark__bulbs--bottom { bottom: 4px; }

  .hero-tg { height: 50px; padding: 6px 6px 6px 10px; gap: 8px; border-radius: 11px; }
  .hero-tg__icon { width: 36px; height: 36px; }
  .hero-tg__icon svg { width: 18px; height: 18px; }
  .hero-tg__title { font-size: 16px; }
  .hero-tg__sub { font-size: 7.5px; letter-spacing: 0.22em; }
  .hero-tg__cta { height: 34px; padding: 0 11px; font-size: 9.5px; }

  .grid {
    gap: 8px;
  }

  .hero {
    font-size: 9.5px;
    height: 32px;
    gap: 6px;
    padding: 0 3px 0 10px;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
  }

  .hero-text strong {
    margin-right: 2px;
  }

  .hero-cta {
    height: 26px;
    padding: 0 9px;
    font-size: 8.5px;
    letter-spacing: 0.1em;
    gap: 3px;
  }

  .hero-cta svg {
    width: 8px;
    height: 8px;
  }

  .card {
    padding: 12px 8px 38px;
    border-radius: 12px;
  }

  .logo {
    height: 32px;
    margin-bottom: 0;
  }

  .logo img {
    max-height: 25px;
    max-width: 90%;
  }

  .zlot-mark {
    font-size: 24px;
  }

  .bonus-line {
    font-size: clamp(10px, 2.8vw, 13px);
    margin-top: 8px;
    letter-spacing: 0;
  }

  .amount {
    font-size: 23px;
    margin-top: 4px;
    letter-spacing: -0.05em;
  }

  .amount sup {
    font-size: 9px;
    transform: translateY(-8px);
    margin-left: 1px;
  }

  .label {
    font-size: 7px;
    letter-spacing: 0.16em;
    margin-top: 3px;
  }

  .cta {
    padding: 9px 10px 10px;
    font-size: 9px;
    letter-spacing: 0.14em;
    gap: 5px;
  }

  .cta svg {
    width: 9px;
    height: 9px;
  }

  .card-wave {
    display: none;
  }

  .card.soon .soon-stack {
    gap: 8px;
  }

  .card.soon .soon-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .card.soon .soon-icon svg {
    width: 20px;
    height: 20px;
  }

  .card.soon .soon-title {
    font-size: 12px;
    line-height: 1.2;
  }

  .card.soon .soon-sub {
    font-size: 7.5px;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 380px) {
  .shell {
    padding: 8px 8px 44px;
  }

  .hero-card { height: 42px; padding: 3px 3px 3px 8px; gap: 6px; border-radius: 10px; }
  .hero-card__icon { width: 30px; height: 30px; }
  .hero-card__icon svg { width: 15px; height: 15px; }
  .hero-card__title { font-size: 12px; }
  .hero-card__sub { font-size: 6.5px; letter-spacing: 0.16em; }
  .hero-card__cta { height: 30px; padding: 0 8px; font-size: 8px; letter-spacing: 0.08em; }

  .hero-mark { padding: 8px 10px; gap: 8px; }
  .hero-mark::after { border-radius: 7px; }
  .hero-mark__icon { width: 34px; height: 34px; }
  .hero-mark__icon::after { inset: 3px; }
  .hero-mark__icon svg { width: 15px; height: 15px; }
  .hero-mark__num { font-size: 22px; }
  .hero-mark__unit { font-size: 11px; transform: translateY(-5px); }
  .hero-mark__sub { font-size: 6.5px; letter-spacing: 0.18em; margin-top: 1px; }
  .hero-mark__cta { height: 28px; padding: 0 9px; font-size: 8px; letter-spacing: 0.08em; gap: 4px; }
  .hero-mark__cta svg { width: 7px; height: 7px; }

  .hero-tg { height: 44px; padding: 4px 4px 4px 8px; gap: 6px; border-radius: 9px; }
  .hero-tg__icon { width: 30px; height: 30px; }
  .hero-tg__icon svg { width: 15px; height: 15px; }
  .hero-tg__title { font-size: 13px; }
  .hero-tg__sub { font-size: 6.5px; letter-spacing: 0.18em; }
  .hero-tg__cta { height: 30px; padding: 0 9px; font-size: 8px; }

  .grid {
    gap: 6px;
  }

  .hero {
    font-size: 8px;
    height: 28px;
    padding: 0 2px 0 8px;
  }

  .hero-cta {
    height: 22px;
    padding: 0 7px;
    font-size: 7px;
  }

  .card {
    padding: 10px 6px 34px;
  }

  .logo {
    height: 26px;
  }

  .logo img {
    max-height: 21px;
  }

  .zlot-mark {
    font-size: 20px;
  }

  .bonus-line {
    letter-spacing: -0.01em;
  }

  .amount {
    font-size: 19px;
  }

  .amount sup {
    font-size: 8px;
    transform: translateY(-6px);
  }

  .label {
    font-size: 6.5px;
    letter-spacing: 0.12em;
  }

  .cta {
    padding: 8px 8px 9px;
    font-size: 8px;
    letter-spacing: 0.1em;
    gap: 4px;
  }

  .cta svg {
    width: 8px;
    height: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .blob,
  .waves path,
  .sparkles span,
  .grid-floor,
  .card,
  .crown,
  .hero,
  .cta,
  .hero .pulse,
  .hero-mark::before {
    animation: none !important;
  }
}

.bonus-sheet {
  --brand: var(--neon-cyan);
  position: fixed;
  inset: auto 0 0 0;
  top: auto;
  left: 50%;
  width: 100%;
  max-width: 540px;
  max-height: 86vh;
  margin: 0;
  padding: 28px 22px 24px;

  transform: translateX(-50%) translateY(110%);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  border: 0;
  border-radius: 26px 26px 0 0;
  background:
    radial-gradient(120% 60% at 50% 0%, color-mix(in srgb, var(--brand) 22%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, #0d1738 0%, #050b22 70%, #02061a 100%);
  color: var(--ink);
  box-shadow:
    0 -10px 40px -8px rgba(0, 0, 0, 0.7),
    0 0 0 1px color-mix(in srgb, var(--brand) 28%, transparent),
    0 -2px 28px -4px color-mix(in srgb, var(--brand) 30%, transparent);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.bonus-sheet.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.bonus-sheet::backdrop {
  background: rgba(2, 4, 14, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease;
}
.bonus-sheet.is-active::backdrop {
  background: rgba(2, 4, 14, 0.55);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
}

.bonus-sheet::before {

  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 38px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.bonus-sheet__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bonus-sheet__close:hover { background: rgba(255, 255, 255, 0.16); transform: rotate(90deg); }
.bonus-sheet__close svg { width: 14px; height: 14px; }

.bonus-sheet__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 6px 40px 18px 0;
}

.bonus-sheet__logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  display: grid;
  place-items: center;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 0 18px -6px color-mix(in srgb, var(--brand) 60%, transparent);
}
.bonus-sheet__logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.bonus-sheet__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.bonus-sheet__logo .zlot-mark {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  transform: rotate(-3deg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.bonus-sheet__head-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-sheet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bonus-sheet__tag {
  padding: 4px 11px;
  border-radius: 999px;
  font-family: 'Tilt Neon', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.bonus-sheet__tag--amount {
  background: var(--brand);
  color: var(--abyss);
  font-weight: 600;
  box-shadow: 0 0 14px color-mix(in srgb, var(--brand) 60%, transparent);
}
.bonus-sheet__tag--type {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bonus-sheet__name {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #fff;
}

.bonus-sheet__panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  position: relative;
}
.bonus-sheet__panel-label {
  display: block;
  font-family: 'Tilt Neon', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.bonus-sheet__panel-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.bonus-sheet__panel--promo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
}
.bonus-sheet__panel--promo .bonus-sheet__panel-label {
  margin: 0;
}
.bonus-sheet__promo-code {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #fff;
}
.bonus-sheet__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bonus-sheet__copy:hover {
  background: color-mix(in srgb, var(--brand) 12%, rgba(255, 255, 255, 0.06));
  border-color: color-mix(in srgb, var(--brand) 35%, rgba(255, 255, 255, 0.12));
  color: #fff;
}
.bonus-sheet__copy svg { width: 14px; height: 14px; }

.bonus-sheet__play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 18px;
  margin: 14px 0 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 100%, white 8%) 0%, var(--brand) 100%);
  color: var(--abyss);
  text-decoration: none;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 24px -4px color-mix(in srgb, var(--brand) 70%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -3px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bonus-sheet__play:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 32px -2px color-mix(in srgb, var(--brand) 90%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}
.bonus-sheet__play svg { width: 14px; height: 14px; }

.contact-mark {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.85s both;
}

.contact-mark__title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 14px color-mix(in srgb, var(--hero-mavi) 30%, transparent);
  margin-bottom: 10px;
}

.contact-mark__text {
  max-width: 720px;
  margin: 36px auto 14px;
  font-family: 'Geist', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.18), 0 0 4px rgba(190, 220, 255, 0.12);
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s both;
}

.contact-mark__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-btn {
  --brand: var(--neon-cyan);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid color-mix(in srgb, var(--brand) 32%, rgba(255, 255, 255, 0.08));
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.contact-btn:hover {
  background: color-mix(in srgb, var(--brand) 10%, rgba(255, 255, 255, 0.06));
  border-color: color-mix(in srgb, var(--brand) 60%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 0 24px color-mix(in srgb, var(--brand) 35%, transparent);
}

.contact-btn__icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--brand) 60%, transparent);
}
.contact-btn__icon-wrap[data-brand="telegram"] {
  background: radial-gradient(circle at 30% 28%, #6cd0ff 0%, #2588d2 60%, #0a4a8c 100%);
}
.contact-btn__icon-wrap[data-brand="teams"] {
  background: radial-gradient(circle at 30% 28%, #6e6ad8 0%, #4b53bc 60%, #2a3299 100%);
}
.contact-btn__icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

.contact-btn:has([data-brand="telegram"]) { --brand: var(--hero-mavi); }
.contact-btn:has([data-brand="teams"]) { --brand: #7c80e8; }

.contact-btn__copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.contact-btn__name {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.005em;
}
.contact-btn__handle {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-btn__arrow {
  width: 14px;
  height: 14px;
  color: color-mix(in srgb, var(--brand) 80%, white 20%);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.contact-btn:hover .contact-btn__arrow { transform: translateX(3px); }

@media (max-width: 640px) {
  .contact-mark { padding: 14px 16px 18px; }
  .contact-mark__title { font-size: 17px; }
  .contact-mark__text { font-size: 12px; margin: 28px auto 12px; }
  .contact-mark__actions { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .contact-btn { padding: 10px 12px; gap: 10px; }
  .contact-btn__icon-wrap { width: 38px; height: 38px; border-radius: 10px; }
  .contact-btn__icon-wrap svg { width: 19px; height: 19px; }
  .contact-btn__name { font-size: 14px; }
  .contact-btn__handle { font-size: 9px; }
}

@media (max-width: 520px) {
  .bonus-sheet { padding: 26px 16px 20px; max-width: 100%; border-radius: 22px 22px 0 0; }
  .bonus-sheet__close { top: 16px; right: 14px; }
  .bonus-sheet__logo-wrap { width: 54px; height: 54px; border-radius: 14px; padding: 6px; }
  .bonus-sheet__name { font-size: 22px; }
  .bonus-sheet__promo-code { font-size: 18px; }
  .bonus-sheet__play { padding: 14px; font-size: 14px; }
}
