:root {
  --bg: #090d1b;
  --bg-soft: #121933;
  --text: #eef2ff;
  --muted: #a8b4d9;
  --accent: #ff5f3b;
  --accent-2: #ffd166;
  --card: #151f3e;
  --stroke: #2f3e67;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top right, #16254d 0%, var(--bg) 38%, #060810 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
.bg-photo {
  position: fixed;
  inset: 0;
  z-index: -4;
  background: linear-gradient(rgba(7, 10, 20, 0.88), rgba(7, 10, 20, 0.92)), url("images/11 (18).png") center/cover no-repeat;
  opacity: 0.3;
  transform: scale(1.05);
  animation: bgPan 28s ease-in-out infinite alternate;
  pointer-events: none;
}
.bg-orb { position: fixed; border-radius: 50%; filter: blur(70px); z-index: -3; opacity: .45; animation: drift 16s ease-in-out infinite; }
.bg-orb--1 { width: 260px; height: 260px; top: -40px; right: -40px; background: #ff5f3b; }
.bg-orb--2 { width: 340px; height: 340px; left: -120px; top: 35%; background: #2c67ff; animation-delay: -4s; }
.grid-noise {
  position: fixed; inset: 0; z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  pointer-events: none;
}
.container { width: min(1140px, 92%); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(15, 20, 37, 0.82), rgba(11, 16, 31, 0.62));
  border-bottom: 1px solid rgba(135, 160, 223, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.topbar__wrap {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
}
.topbar__nav {
  display: flex;
  gap: 6px;
  padding: 5px;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(132, 157, 217, 0.26);
  border-radius: 999px;
  isolation: isolate;
}
.topbar__nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .25s ease;
  position: relative;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
}
.topbar__nav a:hover { color: #fff; }
.nav-glider {
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 4px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,95,59,0.9), rgba(255,163,122,0.85));
  box-shadow: 0 8px 20px rgba(255, 95, 59, 0.34);
  transition: transform .35s cubic-bezier(.25,.9,.2,1), width .35s cubic-bezier(.25,.9,.2,1);
  z-index: 1;
}
.topbar__wave {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 95, 59, 0.8), rgba(95, 137, 255, 0.85), transparent);
  background-size: 200% 100%;
  animation: waveMove 5s linear infinite;
}
.hero { padding: 78px 0 56px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  background: linear-gradient(115deg, rgba(255,95,59,0.16), rgba(95,137,255,0.14), rgba(255,209,102,0.14));
  background-size: 240% 240%;
  filter: blur(12px);
  opacity: 0.8;
  z-index: -1;
  animation: heroGradient 11s ease-in-out infinite;
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; }
.hero__aside {
  display: grid;
  gap: 14px;
  justify-items: end;
}
.eyebrow { margin: 0 0 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); }
h1 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.1; text-wrap: balance; }
.lead { margin: 0; color: var(--muted); max-width: 65ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 20px; }
.btn { display: inline-block; text-decoration: none; padding: 12px 20px; border-radius: 999px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.btn--accent { color: #fff; background: linear-gradient(130deg, var(--accent), #ff835d); }
.btn--ghost { color: var(--text); border: 1px solid var(--stroke); background: rgba(255,255,255,.02); }
.pulse { animation: pulse 2.3s ease-in-out infinite; }
.hero__facts { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.hero__facts li { border: 1px solid var(--stroke); border-radius: 999px; padding: 7px 12px; background: rgba(255,255,255,.02); }
.hero__card { border: 1px solid var(--stroke); border-radius: 24px; padding: 12px; background: linear-gradient(155deg, #202e59, #0d1429); max-width: 390px; justify-self: end; }
.hero__media {
  --mx: 0px;
  --my: 0px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at top, #273b76 0%, #101b38 65%);
  transform: perspective(900px) rotateX(calc(var(--my) * -0.16)) rotateY(calc(var(--mx) * 0.16));
  transition: transform .25s ease;
}
.hero__halo {
  position: absolute;
  width: 48%;
  aspect-ratio: 1/1;
  top: 11%;
  left: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 158, 0.64), rgba(255, 140, 92, 0.1) 62%, transparent 72%);
  filter: blur(8px);
  animation: haloPulse 4.2s ease-in-out infinite;
}
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero__particles i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 188, 0.95), rgba(255, 170, 120, 0.25));
  box-shadow: 0 0 12px rgba(255, 220, 170, 0.6);
  opacity: 0;
  animation: particleFloat 7s ease-in-out infinite;
}
.hero__particles i:nth-child(1) { left: 14%; bottom: 8%; animation-delay: 0.4s; }
.hero__particles i:nth-child(2) { left: 26%; bottom: 18%; animation-delay: 1.2s; width: 5px; height: 5px; }
.hero__particles i:nth-child(3) { left: 48%; bottom: 10%; animation-delay: 2.1s; }
.hero__particles i:nth-child(4) { left: 62%; bottom: 16%; animation-delay: 2.9s; width: 6px; height: 6px; }
.hero__particles i:nth-child(5) { left: 76%; bottom: 11%; animation-delay: 3.6s; }
.hero__particles i:nth-child(6) { left: 85%; bottom: 20%; animation-delay: 4.4s; width: 4px; height: 4px; }
.hero__media-bg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  opacity: 0.28;
  filter: blur(8px) saturate(1.2);
  transform: translate3d(calc(var(--mx) * -0.8), calc(var(--my) * -0.8), 0);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}
.hero__media-main {
  position: absolute;
  inset: 10%;
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.45));
  transform: translate3d(calc(var(--mx) * 0.9), calc(var(--my) * 0.9), 0);
  margin-top: 0;
  animation: heroFloat 7s ease-in-out infinite;
}
.float-card { animation: floatY 6.2s ease-in-out infinite; }
img { max-width: 100%; display: block; border-radius: 14px; }
.section { padding: 56px 0; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.in-view {
  opacity: 1;
  transform: translateY(0);
}
.section__head h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.section__head p { margin: 0; color: var(--muted); max-width: 70ch; }
.deposit-card { border: 1px solid #ff8e74; border-radius: 24px; padding: clamp(20px, 3.2vw, 34px); background: linear-gradient(120deg, rgba(255,95,59,.2), rgba(255,209,102,.12), rgba(255,95,59,.24)); box-shadow: 0 18px 50px rgba(255,95,59,.22); position: relative; overflow: hidden; }
.deposit-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.2) 48%, transparent 75%); transform: translateX(-110%); }
.shimmer::after { animation: shimmer 4s linear infinite; }
.deposit-card__badge { margin: 0 0 12px; font-weight: 700; color: var(--accent-2); }
.deposit-card h2 { margin: 0 0 10px; font-size: clamp(1.9rem, 4vw, 3rem); }
.deposit-card p { margin: 0 0 18px; color: #ffe7e1; max-width: 68ch; }
.deposit-card--hero {
  max-width: 390px;
  border-color: rgba(255, 181, 143, 0.9);
}
.slots-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.slot-card { background: linear-gradient(155deg, var(--card), #101a36); border: 1px solid var(--stroke); border-radius: 16px; overflow: hidden; transition: transform .25s ease, border-color .25s ease; will-change: transform; }
.slot-card:hover { border-color: #49639f; }
.slot-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(145deg, #1b2a56, #0d1734);
}
.slot-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 24, 0.38), rgba(8, 12, 24, 0));
}
.slot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}
.slot-card:hover .slot-card__media img {
  transform: scale(1.09);
  filter: saturate(1.16) contrast(1.1);
}
.slot-card div { padding: 14px; }
.slot-card h3 { margin: 0 0 8px; }
.slot-card p { margin: 0; color: var(--muted); }
.section--alt { border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); background: linear-gradient(170deg, #101735, #0d1324); }
.article h2 { margin-top: 0; }
.article p { margin: 0 0 20px; color: #d4ddf8; }
.faq { margin-top: 18px; display: grid; gap: 10px; }
.faq details { border: 1px solid var(--stroke); background: #111a34; border-radius: 12px; padding: 12px 14px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 10px 0 0; color: var(--muted); }
.footer { border-top: 1px solid var(--stroke); padding: 20px 0 28px; }
.footer__wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); }
.footer a { color: #d7e0ff; text-decoration: none; }
@keyframes bgPan {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.12) translateY(-12px); }
}
@keyframes heroBgShift {
  0%, 100% { opacity: 0.24; }
  50% { opacity: 0.36; }
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes heroFloat {
  0%,100% { margin-top: 0; }
  50% { margin-top: -8px; }
}
@keyframes haloPulse {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.08); opacity: 0.98; }
}
@keyframes particleFloat {
  0% {
    transform: translateY(14px) scale(0.75);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.65;
  }
  100% {
    transform: translateY(-90px) scale(1.1);
    opacity: 0;
  }
}
@keyframes waveMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,95,59,.45); } 70% { box-shadow: 0 0 0 14px rgba(255,95,59,0); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-16px); } }
@keyframes shimmer { 0% { transform: translateX(-110%); } 100% { transform: translateX(120%); } }
@media (max-width: 980px) { .hero__grid, .slots-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 920px) {
  .topbar__wrap { flex-wrap: wrap; justify-content: center; padding: 10px 0; }
  .topbar__nav { order: 3; }
  .hero__card { max-width: 320px; justify-self: start; }
  .hero__aside { justify-items: start; }
  .deposit-card--hero { max-width: 100%; }
}
@media (max-width: 720px) {
  .hero { padding-top: 50px; }
  .hero__grid, .slots-grid { grid-template-columns: 1fr; }
  .section { padding: 46px 0; }
  .topbar__nav { width: 100%; justify-content: center; }
  .hero__card { max-width: 260px; }
  .deposit-card--hero h2 { font-size: clamp(1.5rem, 7vw, 2.2rem); }
}
