:root {
  --bg-base: #070b14;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  
  --brand-blue: #0ea5e9;
  --brand-yellow: #f4b400;
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);
  
  --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.3);
  --shadow-glow-yellow: 0 0 40px rgba(244, 180, 0, 0.25);
  
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-base);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* FIX: Жесткий контейнер, чтобы ничего не плыло на мобилках */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

/* === AMBIENT BACKGROUND === */
.ambient-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-base);
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: floatOrb 20s infinite ease-in-out alternate;
}
.orb-yellow {
  width: 45vw; height: 45vw;
  background: var(--brand-yellow);
  top: -10%; left: -10%;
}
.orb-blue {
  width: 55vw; height: 55vw;
  background: var(--brand-blue);
  bottom: -20%; right: -10%;
  animation-delay: -5s;
}
.orb-accent {
  width: 30vw; height: 30vw;
  background: #a855f7;
  top: 40%; left: 30%;
  opacity: 0.2;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.1); }
}

/* === GLASSMORPHISM === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
}

/* === TOPBAR === */
.topbar {
  position: sticky;
  top: 0; z-index: 50;
  border-bottom: 1px solid var(--glass-border);
  border-radius: 0 0 24px 24px;
}
.topbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand__logo { height: 44px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.nav { display: flex; gap: 32px; font-weight: 500; color: var(--text-muted); }
.nav a { position: relative; transition: color 0.3s ease; }
.nav a:hover { color: var(--text-main); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0%; height: 2px;
  background: var(--brand-yellow); transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 700; color: #fff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btn--small { min-height: 44px; padding: 0 22px; font-size: 0.95rem; }
.btn--glow {
  background: linear-gradient(135deg, var(--brand-blue), #29b7f4);
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.6);
  filter: brightness(1.1);
}

/* === HERO === */
.hero { padding: 120px 0 80px; text-align: center; }
.hero__grid { display: flex; flex-direction: column; align-items: center; }

.eyebrow-wrapper {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244, 180, 0, 0.1);
  border: 1px solid rgba(244, 180, 0, 0.2);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--brand-yellow);
  border-radius: 50%; box-shadow: 0 0 10px var(--brand-yellow);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0% { opacity: 0.4; } 50% { opacity: 1; box-shadow: 0 0 15px var(--brand-yellow); } 100% { opacity: 0.4; } }
.eyebrow { margin: 0; color: var(--brand-yellow); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }

.text-glow {
  margin: 0; font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(255,255,255,0.1));
}

.hero__lead { margin: 24px auto 0; max-width: 60ch; font-size: 1.25rem; color: var(--text-muted); }
.highlight-text { color: #fff; font-weight: 600; text-shadow: 0 0 15px rgba(255,255,255,0.3); }

.store-buttons { display: flex; gap: 16px; margin-top: 40px; justify-content: center; align-items: center; }
.store-link img { height: 56px; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.store-link:not(.disabled):hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.1);
}
.store-link.disabled { opacity: 0.3; filter: grayscale(100%); cursor: not-allowed; }

/* === SECTIONS === */
.section { padding: 100px 0; position: relative; }
.section__heading { margin-bottom: 50px; }
.section__heading h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin: 0; font-weight: 800; letter-spacing: -0.03em; }

/* === CARDS === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  padding: 32px 24px; border-radius: var(--radius-xl);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.card:hover { transform: translateY(-10px); border-color: var(--glass-highlight); }
.card:hover::before { opacity: 1; }

.card__icon-wrapper {
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(14, 165, 233, 0.1); border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.card__num { color: var(--brand-blue); font-weight: 800; font-size: 1.3rem; }

.card--premium {
  background: linear-gradient(180deg, rgba(244, 180, 0, 0.05), rgba(244, 180, 0, 0.01));
  border-color: rgba(244, 180, 0, 0.3); box-shadow: var(--shadow-glow-yellow);
}
.card--premium .card__icon-wrapper { background: rgba(244, 180, 0, 0.15); border-color: rgba(244, 180, 0, 0.4); }
.glow-text { color: var(--brand-yellow); text-shadow: 0 0 10px rgba(244, 180, 0, 0.5); }

.card h3 { margin: 0 0 12px; font-size: 1.4rem; font-weight: 700; }
.card p { margin: 0; color: var(--text-muted); font-size: 1.05rem; }

/* === TENSION SECTION === */
.tension-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tension-text h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin: 0 0 16px; font-weight: 900; }
.tension-text .lead-text { color: var(--brand-yellow); font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; text-shadow: 0 0 15px rgba(244,180,0,0.3); }
.tension-list { list-style: none; padding: 0; margin: 0; font-size: 1.2rem; line-height: 2.2; color: #cbd5e1; }
.tension-list li { position: relative; padding-left: 30px; }
.tension-list li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 12px; height: 2px;
  background: var(--brand-blue); box-shadow: 0 0 8px var(--brand-blue);
}

.tension-visual {
  border-radius: var(--radius-xl); padding: 50px; text-align: center;
  position: relative; border-color: rgba(14, 165, 233, 0.3);
}
.eyes-box { font-size: 2.5rem; line-height: 1.2; letter-spacing: 4px; color: #1e293b; }
.eyes-emoji-wrapper { position: relative; display: inline-block; padding: 20px 0; }
.eyes-emoji { font-size: 5rem; filter: drop-shadow(0 0 20px rgba(255,255,255,0.4)); animation: pulseEye 2.5s infinite alternate; }

.scanner-line {
  position: absolute; left: -20px; right: -20px; height: 3px;
  background: var(--brand-yellow); box-shadow: 0 0 15px var(--brand-yellow);
  animation: scan 3s infinite linear; opacity: 0.8;
}
@keyframes scan { 0% { top: 10%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 90%; opacity: 0; } }
@keyframes pulseEye { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.eyes-caption { margin-top: 30px; color: var(--brand-blue); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* === GAMEPLAY WIDE IMAGE & LIGHTBOX === */
.wide-image {
  border-radius: var(--radius-xl); padding: 12px;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.wide-image img { border-radius: 20px; }
.zoomable-image { cursor: zoom-in; transition: transform 0.3s ease; }
.zoomable-image:hover { transform: scale(1.02); }

.zoom-hint {
  position: absolute; bottom: 24px; right: 24px;
  background: rgba(0,0,0,0.7); color: #fff; padding: 10px 20px;
  border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  pointer-events: none; backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1);
}

.modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0;
  width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.3s ease;
  align-items: center; justify-content: center;
}
.modal.show { opacity: 1; }
.modal__content {
  max-width: 95vw; max-height: 90vh; border-radius: 12px;
  object-fit: contain; transform: scale(0.95); transition: transform 0.3s ease;
}
.modal.show .modal__content { transform: scale(1); }
.modal__close {
  position: absolute; top: 20px; right: 30px; color: #fff;
  font-size: 45px; font-weight: 300; line-height: 1; cursor: pointer;
  z-index: 1001; padding: 10px; transition: color 0.2s;
}
.modal__close:hover { color: var(--brand-yellow); }

/* === FAQ === */
.faq-container { max-width: 760px; }
.faq { display: grid; gap: 16px; }
.faq__item { border-radius: 20px; transition: all 0.3s ease; }
.faq__item:hover { border-color: var(--glass-highlight); }
.faq__item summary {
  padding: 24px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.2rem; display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "↓"; color: var(--brand-blue); font-size: 1.2rem; transition: transform 0.3s ease;
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__content { padding: 0 24px 24px; color: var(--text-muted); font-size: 1.05rem; }

/* === FOOTER === */
.footer {
  padding: 40px 0; border-top: 1px solid var(--glass-border);
  border-radius: 32px 32px 0 0; margin-top: 40px;
}
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 30px; }
.footer-logo { filter: grayscale(100%) opacity(0.6); transition: filter 0.3s ease; }
.footer-logo:hover { filter: grayscale(0%) opacity(1); }
.footer-copy { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; }
.footer__center { display: flex; gap: 32px; font-weight: 600; color: var(--text-muted); }
.footer__center a:hover { color: var(--text-main); }
.email-btn {
  display: inline-flex; align-items: center; height: 44px; padding: 0 24px;
  border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  color: var(--text-main); font-weight: 600; transition: all 0.3s ease;
}
.email-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--brand-blue); box-shadow: 0 0 20px rgba(14,165,233,0.2); }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* === MOBILE === */
@media (max-width: 960px) {
  .nav { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tension-grid { grid-template-columns: 1fr; gap: 40px; }
  .tension-text { text-align: center; }
  .tension-list { display: inline-block; text-align: left; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero { padding-top: 80px; }
  .text-glow { font-size: 2.8rem; }
  .steps { grid-template-columns: 1fr; }
  .store-buttons img { height: 50px; }
  .section { padding: 60px 0; }
  .orb-yellow, .orb-blue { width: 80vw; height: 80vw; filter: blur(70px); }
  .zoom-hint { bottom: 16px; right: 16px; font-size: 0.8rem; padding: 8px 16px; }
  .modal__close { top: 10px; right: 15px; }
}

.seo-content{

    padding:120px 0;

}

.seo-article{

    max-width:960px;

    margin:auto;

    padding:60px;

    border-radius:28px;

}

.seo-article h3{

    margin-top:50px;

    margin-bottom:18px;

    font-size:32px;

    color:#FFD84D;

}

.seo-article p{

    margin-bottom:24px;

    font-size:18px;

    line-height:1.9;

    color:#d5d9e0;

}

.seo-content .section__heading{

    margin-bottom:60px;

}