@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;0,800;1,800&family=Inter:wght@500;700&display=swap");

:root {
  --bg: #070714;
  --surface: rgba(12, 12, 22, 0.82);
  --ink: #ffffff;
  --muted: #a8a8b8;
  --accent: #3563e9;
  --cyan: #3df0ff;
  --gold: #f5c542;
  --flame: #ff7a18;
  --accent-dark: #0b0b14;
  --border: rgba(53, 99, 233, 0.35);
  --max: 1180px;
  --radius: 20px;
  font-size: 16px;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #070714;
  background-image:
    radial-gradient(ellipse 420px 280px at 8% 92%, rgba(196, 90, 34, 0.45), transparent 58%),
    radial-gradient(ellipse 380px 260px at 92% 8%, rgba(90, 130, 190, 0.32), transparent 55%),
    radial-gradient(1200px 640px at 50% -8%, rgba(70, 30, 140, 0.5), transparent 58%),
    radial-gradient(800px 480px at 100% 70%, rgba(53, 99, 233, 0.18), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='8' cy='18' r='1' fill='%23ffffff28'/%3E%3Ccircle cx='62' cy='44' r='1.1' fill='%23ffffff22'/%3E%3Ccircle cx='98' cy='12' r='0.8' fill='%23ffffff18'/%3E%3Ccircle cx='30' cy='90' r='1' fill='%23ffffff16'/%3E%3Ccircle cx='110' cy='80' r='0.7' fill='%23ffffff20'/%3E%3C/svg%3E");
  background-attachment: fixed;
}
h1, h2, h3, .site-name, .cta-btn, .crash-widget-title {
  font-family: Montserrat, Inter, "Segoe UI", sans-serif;
}
a { color: var(--cyan); }
img { max-width: 100%; height: auto; display: block; }
.skip-link { position: absolute; left: -999px; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 20, 0.78);
  border-bottom: 1px solid var(--border);
}
.header-inner { max-width: var(--max); margin: 0 auto; padding: 0.85rem 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
body.header-center .header-inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}
body.header-center .site-nav { justify-content: center; }
body.header-right .header-inner {
  justify-content: flex-end;
}
body.header-right .site-nav { justify-content: flex-end; }
.site-brand { display: flex; align-items: center; gap: 0.6rem; color: #fff; text-decoration: none; font-weight: 800; font-style: italic; }
.site-logo { width: 248px; height: 48px; display: block; overflow: visible; position: relative; }
.site-logo svg { width: 100%; height: 100%; overflow: visible; display: block; }
.site-logo::after {
  content: "";
  display: block;
  height: 4px;
  margin: -2px 12px 0 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--flame) 18%, #ff2d2d 82%, transparent);
}
.site-name { display: none; }
.footer-brand .site-logo { width: 200px; height: 42px; }
.site-header .logo-x { transform-origin: 190px 30px; transform-box: fill-box; animation: logo-x-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both; }
.site-header .logo-x-letter {
  filter: drop-shadow(0 0 8px rgba(255, 122, 24, 0.55));
  animation: logo-x-glow 2.2s 0.85s ease-in-out infinite;
}
.site-header .logo-x-tail { animation: logo-x-tail 0.55s 0.45s ease-out both; }
@keyframes logo-x-in {
  from { opacity: 0; transform: scale(0.15) rotate(-28deg) translateX(-12px); }
  70% { opacity: 1; transform: scale(1.18) rotate(0deg) translateX(0); }
  to { opacity: 1; transform: scale(1) rotate(0deg) translateX(0); }
}
@keyframes logo-x-tail {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes logo-x-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 122, 24, 0.5)); }
  50% { filter: drop-shadow(0 0 12px #ffffff) drop-shadow(0 0 16px var(--flame)); }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .logo-x,
  .site-header .logo-x-letter,
  .site-header .logo-x-tail { animation: none; }
}
.site-nav { display: flex; gap: 0.85rem; flex-wrap: wrap; font-size: 0.88rem; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a[aria-current="page"], .site-nav a:hover { color: #fff; }
.age-badge { border: 1px solid var(--cyan); color: var(--cyan); border-radius: 999px; padding: 0.12rem 0.55rem; font-size: 0.78rem; font-weight: 800; }
main { max-width: var(--max); margin: 0 auto; padding: 1.5rem 1.6rem 4rem; }
.page-shell { display: block; }
.site-sidebar { display: none; }
.sidebar-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-title { margin-bottom: 1.3rem; }
.page-title h1 { font-size: 2.1rem; line-height: 1.15; margin: 0 0 0.55rem; letter-spacing: -0.03em; }
body.layout-side .page-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  max-width: calc(var(--max) + 248px);
  margin: 0 auto;
  align-items: start;
}
body.layout-side .site-sidebar {
  display: block;
  position: sticky;
  top: 5.4rem;
  align-self: start;
  padding: 1.35rem 0.9rem 2rem 1.25rem;
}
body.layout-side .site-sidebar .site-nav {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.15rem;
  margin-bottom: 0.9rem;
}
body.layout-side .site-sidebar .site-nav a {
  display: block;
  padding: 0.48rem 0.7rem;
  border-radius: 10px;
}
body.layout-side .site-sidebar .site-nav a[aria-current="page"] {
  background: rgba(61, 240, 255, 0.12);
  color: #fff;
}
body.layout-side main { max-width: none; padding-left: 1.1rem; }
@media (max-width: 900px) {
  body.layout-side .page-shell { grid-template-columns: 1fr; }
  body.layout-side .site-sidebar { position: static; padding: 0.8rem 1.2rem 0; }
  body.layout-side .site-sidebar .site-nav { flex-direction: row; flex-wrap: wrap; }
  body.layout-side main { padding-left: 1.6rem; }
}
.cta-bar, .hero, .infographic-pro, .crash-widget, .faq-item, .cookie-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}
.cta-bar { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; padding: 1rem 1.2rem; margin-bottom: 1.3rem; }
.cta-bar p { margin: 0; color: var(--muted); font-size: 0.88rem; flex: 1; }
.cta-btn, .ig-pill, .ig-get {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; text-decoration: none; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 14px; padding: 0.85rem 1.45rem; border: 0; cursor: pointer;
  box-shadow: 0 10px 28px rgba(53, 99, 233, 0.35);
}
.cta-btn:hover, .ig-pill:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(53, 99, 233, 0.5); }
.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 1.4rem; padding: 1.3rem; align-items: center; margin-bottom: 1.4rem; }
@media (max-width: 860px) { .hero, .cta-bar { grid-template-columns: 1fr; } }
.hero h1 { font-size: 2.35rem; line-height: 1.1; margin: 0 0 0.6rem; letter-spacing: -0.03em; }
.lede { color: var(--muted); }
.content-image, .hero img, .content-image-el {
  padding: 8px; border: 1px solid var(--border); border-radius: 18px; background: rgba(0,0,0,.35);
  margin: 1rem 0; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.content-image img { margin: 0; border-radius: 12px; }
.content-image:hover, .hero img:hover, img.content-image-el:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: var(--cyan);
  box-shadow: 0 16px 40px rgba(122, 92, 255, 0.28);
}
article.page-content h2 { font-size: 1.35rem; margin-top: 2.4rem; }
table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.4rem; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
table caption { text-align: left; padding: .65rem .8rem; background: rgba(122, 92, 255, 0.18); font-weight: 700; }
th, td { border: 1px solid var(--border); padding: .6rem .75rem; }
th { background: rgba(18, 8, 36, 0.9); }
.infographic-pro { padding: 1.1rem 1.2rem; margin: 1.2rem 0; }
.ig-hud-spark { width: 100%; height: 48px; margin: 0 0 0.85rem; }
.ig-bonus-grid, .ig-games { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
@media (max-width: 900px) { .ig-bonus-grid, .ig-games { grid-template-columns: 1fr 1fr; } }
.ig-bonus-card, .ig-game-card, .ig-split-card, .ig-chip, .ig-steps li {
  position: relative; border-radius: 18px; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(42, 20, 70, 0.9), rgba(12, 6, 28, 0.95));
  color: #fff; text-align: left;
}
.ig-bonus-card { padding: 1rem 1rem 1.1rem; min-height: 210px; overflow: hidden; cursor: pointer; }
.ig-bonus-card h3 { font-size: 1.7rem; margin: 0.2rem 0; }
.ig-brand { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--cyan); text-transform: uppercase; margin: 0; }
.ig-sub { color: var(--muted); font-size: 0.82rem; }
.ig-i { position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; border-radius: 50%; border: 1px solid #fff; background: transparent; color: #fff; cursor: pointer; }
.ig-gift { position: absolute; right: -10px; bottom: -16px; width: 92px; height: 92px; border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, #3df0ff, #7a5cff 45%, transparent 46%),
              radial-gradient(circle at 70% 60%, #ffb020, transparent 50%);
  opacity: 0.9; }
.ig-gift-img {
  position: absolute; right: -8px; bottom: -18px; width: 118px; height: 118px; object-fit: contain;
  padding: 0; border: 0; background: none; pointer-events: none; filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}
.ig-bonus-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.ig-game-shot {
  display: block; width: 100%; height: 118px; object-fit: cover; padding: 0; border: 0; margin: 0; background: none;
}
.hero-figure { margin: 0; }
.hero-figure img { width: 100%; }
.byline { color: var(--muted); font-size: 0.85rem; margin: 0.35rem 0 0.6rem; }
.ig-bank input[type="range"] { width: 100%; accent-color: var(--cyan); }
.ig-i { z-index: 2; }
.ig-game-card { padding: 0; overflow: hidden; cursor: pointer; border: 0; }
.ig-game-art { display: block; height: 110px; }
.ig-art-crash { background: linear-gradient(135deg, #3b1d8f, #3df0ff); }
.ig-art-second { background: linear-gradient(135deg, #ff7a18, #3b6dff); }
.ig-art-fruits { background: linear-gradient(135deg, #ff3d6e, #ffb020); }
.ig-art-mines { background: linear-gradient(135deg, #222, #ffb020); }
.ig-game-card strong, .ig-game-card em, .ig-game-logo { display: block; padding: 0 0.8rem; }
.ig-game-logo { padding-top: 0.55rem; font-style: italic; font-weight: 800; }
.ig-game-card em { color: var(--muted); font-size: 0.78rem; padding-bottom: 0.8rem; }
.ig-crash-hud { display: flex; justify-content: space-between; align-items: baseline; }
.ig-mult { font-size: 2rem; color: var(--cyan); }
.ig-crash-actions { display: flex; gap: 0.6rem; margin-top: 0.6rem; }
.ig-ghost { background: transparent; color: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 0.55rem 1rem; cursor: pointer; }
.ig-rtp { display: grid; grid-template-columns: 220px 1fr; gap: 1rem; align-items: center; }
@media (max-width: 700px) { .ig-rtp { grid-template-columns: 1fr; } }
.ig-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ig-chip { padding: 0.4rem 0.75rem; cursor: pointer; }
.ig-chip.is-on { border-color: var(--cyan); color: var(--cyan); }
.ig-steps { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.ig-steps li { display: flex; gap: 0.8rem; padding: 0.8rem 1rem; cursor: pointer; }
.ig-steps span { width: 28px; height: 28px; border-radius: 50%; background: var(--cyan); color: #12081f; display: grid; place-items: center; font-weight: 800; }
.ig-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.ig-split-card { padding: 1rem; cursor: pointer; border: 0; }
.ig-split-card.bad { box-shadow: inset 0 0 0 1px #ff4d6d; }
.ig-split-card.good { box-shadow: inset 0 0 0 1px var(--cyan); }
.ig-bank label { display: block; }
.ig-bar { height: 12px; border-radius: 999px; background: #2a1844; overflow: hidden; margin: 0.6rem 0; }
.ig-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--cyan)); }
.ig-tooltip, .ig-readout, .ig-kicker { color: var(--cyan); font-size: 0.88rem; }
.ig-hit { cursor: pointer; }
.ig-hit:hover { filter: brightness(1.08); }
.rg-block { border: 1px solid var(--cyan); border-radius: var(--radius); padding: 1rem 1.2rem; margin-top: 1.4rem; background: rgba(18, 8, 36, 0.8); }
.faq-item { margin-bottom: 0.55rem; }
.faq-item summary { cursor: pointer; padding: 0.85rem 1rem; font-weight: 700; }
.related-pages { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.related-pages a { border: 1px solid var(--border); border-radius: 999px; padding: 0.3rem 0.8rem; text-decoration: none; }
.site-footer { margin-top: 3rem; border-top: 1px solid var(--border); background: #050010; color: var(--muted); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 2rem 1.6rem; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.footer-inner ul { list-style: none; padding: 0; margin: 0; }
.footer-inner li { margin: 0.25rem 0; }
.footer-inner a { color: #fff; }
.dmca-badge svg { width: 160px; height: 56px; }
.footer-bottom { text-align: center; padding: 1rem; font-size: 0.8rem; }
.cookie-banner { position: fixed; left: 1rem; right: auto; bottom: 1rem; max-width: 360px; padding: 1rem; display: none; z-index: 50; }
.cookie-banner.visible { display: block; }
.cookie-banner button { margin-top: 0.6rem; margin-right: 0.4rem; }
.gift-sticky {
  position: fixed; right: 18px; bottom: 18px; z-index: 46;
  width: 92px; text-decoration: none; color: #fff; display: grid; justify-items: center; gap: 0.35rem;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
}
.gift-sticky-scene { position: relative; width: 78px; height: 78px; display: block; animation: gift-float 2.6s ease-in-out infinite; }
.gift-sticky-glow {
  position: absolute; inset: 8px 6px 2px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 240, 255, 0.45), transparent 70%);
  animation: gift-pulse 2.2s ease-in-out infinite;
}
.gift-sticky-box {
  position: absolute; left: 11px; bottom: 6px; width: 56px; height: 40px;
  border-radius: 6px 6px 8px 8px;
  background: linear-gradient(160deg, #5cf0e6 0%, #14b8a8 42%, #0b6f72 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 0 #083f42;
  overflow: hidden;
}
.gift-sticky-lid {
  position: absolute; left: 8px; top: 18px; width: 62px; height: 16px; z-index: 2;
  border-radius: 5px;
  background: linear-gradient(180deg, #7af8ee, #12c4b0 70%);
  box-shadow: 0 3px 0 #0a5c5e;
  transform-origin: 12px 100%;
}
.gift-sticky-ribbon-v {
  position: absolute; left: 23px; top: 0; width: 10px; height: 100%;
  background: linear-gradient(90deg, #ffb020, #ff7a18 50%, #ffd36a);
}
.gift-sticky-ribbon-h {
  position: absolute; left: 0; top: 14px; width: 100%; height: 10px;
  background: linear-gradient(180deg, #ffd36a, #ff7a18 55%, #c45a00);
}
.gift-sticky-bow {
  position: absolute; left: 22px; top: 6px; width: 34px; height: 22px; z-index: 3;
  background:
    radial-gradient(circle at 8px 12px, #ffb020 0 8px, transparent 9px),
    radial-gradient(circle at 26px 12px, #ff7a18 0 8px, transparent 9px);
}
.gift-sticky-bow::after {
  content: ""; position: absolute; left: 13px; top: 8px; width: 8px; height: 8px; border-radius: 50%;
  background: #ffe08a; box-shadow: 0 0 8px #ffb020;
}
.gift-sticky-shine {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.85) 48%, transparent 64%);
  background-size: 220% 100%;
  animation: gift-shimmer 2.1s linear infinite;
  mix-blend-mode: screen;
}
.gift-sticky-label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em;
  background: #fff; color: #12081f; border-radius: 999px; padding: 0.18rem 0.5rem;
}
.gift-sticky:hover { transform: translateY(-4px) scale(1.06); }
.gift-sticky:hover .gift-sticky-lid { transform: rotate(-18deg) translateY(-3px); }
.gift-sticky:hover .gift-sticky-scene { animation-duration: 1.4s; }
@keyframes gift-shimmer {
  0% { background-position: 140% 0; }
  100% { background-position: -40% 0; }
}
@keyframes gift-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes gift-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .gift-sticky-shine, .gift-sticky-glow, .gift-sticky-scene { animation: none; }
}
.crash-widget {
  padding: 1.35rem 1.3rem 1.2rem;
  margin: 1.4rem auto 1.6rem;
  max-width: 760px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.crash-widget-kicker, .crash-widget-badge {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.crash-widget-title { margin: 0 0 0.35rem; font-size: 1.7rem; font-style: italic; letter-spacing: -0.03em; }
.crash-widget-sub { margin: 0 0 1rem; color: var(--muted); }
.demo-embed {
  position: relative;
  width: 100%;
  height: min(72vh, 640px);
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #070714;
}
.demo-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* runway — official Aviatrix: logo left, nav right, warm planet lower-left */
:root { --accent: #3563e9; --cyan: #3df0ff; --accent-dark: #0b0b14; }
.hero h1 { font-style: italic; }
.hero { min-height: 280px; }
body.theme-runway {
  background-color: #070714;
  background-image:
    radial-gradient(ellipse 420px 280px at 8% 92%, rgba(196, 90, 34, 0.45), transparent 58%),
    radial-gradient(ellipse 380px 260px at 92% 8%, rgba(90, 130, 190, 0.32), transparent 55%),
    radial-gradient(1200px 640px at 50% -8%, rgba(70, 30, 140, 0.5), transparent 58%),
    radial-gradient(800px 480px at 100% 70%, rgba(53, 99, 233, 0.18), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='8' cy='18' r='1' fill='%23ffffff28'/%3E%3Ccircle cx='62' cy='44' r='1.1' fill='%23ffffff22'/%3E%3Ccircle cx='98' cy='12' r='0.8' fill='%23ffffff18'/%3E%3Ccircle cx='30' cy='90' r='1' fill='%23ffffff16'/%3E%3Ccircle cx='110' cy='80' r='0.7' fill='%23ffffff20'/%3E%3C/svg%3E");
}
