/* Ускоритель игр — палитра под лого-сферу: фиолетовое свечение, циан, магента, неоновый зелёный */

:root {
  --bg: #050510;
  --bg-alt: #0a0a1a;
  --card: #0c0c18;
  --card-border: rgba(138, 43, 226, 0.18);
  --text: #e8e8ee;
  --muted: #6a7088;
  --muted-soft: #9aa0b8;
  /* Циан / электрик (Telegram, TikTok) */
  --cyan: #00e5ff;
  --cyan-bright: #5aebff;
  --cyan-dim: #0077ff;
  /* Магента / розовый (Instagram, TikTok) */
  --magenta: #ff1493;
  --magenta-bright: #ff4db8;
  --magenta-dim: #db2777;
  /* Доминирующий фиолетовый ореол сферы */
  --violet: #8a2be2;
  --violet-bright: #a855f7;
  --violet-dim: #6b21a8;
  /* WhatsApp-зелёный, тёплый акцент YouTube */
  --neon-green: #39ff14;
  --warm-accent: #ff4500;
  /* Металлик сферы */
  --silver: #a8b0c4;
  --silver-dim: #8890a8;
  --accent-ok: var(--neon-green);
  --radius-card: 28px;
  --radius-btn: 14px;
  --shadow-card: 0 0 0 1px rgba(138, 43, 226, 0.12), 0 24px 48px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(138, 43, 226, 0.08), 0 0 70px rgba(0, 229, 255, 0.05), 0 0 60px rgba(255, 20, 147, 0.04);
  --font: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg);
}

/* Глубокий тёмно-синий / полночь с фиолетовым переливом под сферу */
.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    #030308 0%,
    #050510 18%,
    #0a0620 32%,
    #080818 48%,
    #100828 62%,
    #060510 78%,
    #050510 100%
  );
  background-size: 320% 320%;
  animation: bgShimmer 22s ease-in-out infinite;
}

/* Блики: фиолет по центру, циан и магента по краям — как на лого */
.page-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 45% 40% at 50% 42%, rgba(138, 43, 226, 0.14), transparent 55%),
    radial-gradient(ellipse 48% 38% at 18% 40%, rgba(0, 229, 255, 0.1), transparent 52%),
    radial-gradient(ellipse 46% 40% at 85% 58%, rgba(255, 20, 147, 0.09), transparent 50%),
    radial-gradient(ellipse 32% 28% at 50% 88%, rgba(57, 255, 20, 0.04), transparent 48%);
  animation: bgGlowDrift 28s ease-in-out infinite alternate;
}

@keyframes bgShimmer {
  0%,
  100% {
    background-position: 0% 40%;
  }
  35% {
    background-position: 100% 55%;
  }
  65% {
    background-position: 85% 20%;
  }
}

@keyframes bgGlowDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate(6%, -5%) scale(1.08);
    opacity: 1;
  }
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 18px 40px;
}

/* Header */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo {
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(138, 43, 226, 0.2), #050510 72%);
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.45), 0 0 22px rgba(138, 43, 226, 0.22),
    0 0 26px rgba(0, 229, 255, 0.12), 0 0 32px rgba(255, 20, 147, 0.1), 0 8px 24px rgba(0, 0, 0, 0.55);
}

.logo--sm {
  width: 44px;
  height: 44px;
}

.logo--lg {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.5), 0 0 36px rgba(138, 43, 226, 0.28),
    0 0 40px rgba(0, 229, 255, 0.15), 0 0 52px rgba(255, 20, 147, 0.12), 0 12px 40px rgba(0, 0, 0, 0.6);
}

.logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 3px;
}

.logo--lg .logo-img {
  padding: 6px;
}

.brand-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

.vpn-pill {
  color: var(--text);
}

.brand-name {
  background: linear-gradient(
    100deg,
    var(--cyan-bright) 0%,
    var(--silver) 32%,
    var(--violet-bright) 52%,
    var(--magenta-bright) 100%
  );
  background-size: 160% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.pill--users {
  flex-shrink: 0;
  background: rgba(10, 10, 20, 0.92);
  border: 1px solid rgba(138, 43, 226, 0.22);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.08), 0 0 18px rgba(0, 229, 255, 0.05),
    inset 0 0 0 1px rgba(255, 20, 147, 0.06);
  color: var(--silver-dim);
  backdrop-filter: blur(8px);
}

.pill--users span:first-of-type {
  filter: none;
  font-size: 1rem;
}

.pill--users strong {
  font-weight: 700;
}

.pill--blue {
  margin-top: 4px;
  background: rgba(8, 8, 18, 0.95);
  border: 1px solid rgba(138, 43, 226, 0.32);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.15), 0 0 24px rgba(138, 43, 226, 0.12),
    0 0 28px rgba(255, 20, 147, 0.08);
  color: var(--silver);
  font-weight: 600;
}

.cyan {
  color: var(--cyan);
}

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(138, 43, 226, 0.12);
}

.card--hero {
  text-align: center;
  padding-top: 32px;
}

.hero-title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 6vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Градиент заголовка: циан → металл → фиолет → магента, как сфера */
.hero-title-glow {
  display: inline-block;
  background: linear-gradient(
    95deg,
    var(--cyan-dim) 0%,
    var(--cyan-bright) 12%,
    #a8b0c0 30%,
    #c4b8e8 44%,
    var(--violet-bright) 56%,
    var(--magenta-bright) 76%,
    var(--warm-accent) 92%,
    var(--magenta-dim) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: heroTitleShimmer 6s ease-in-out infinite, heroTitleGlow 3.2s ease-in-out infinite;
}

@keyframes heroTitleShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroTitleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.35)) drop-shadow(0 0 8px rgba(0, 229, 255, 0.4))
      drop-shadow(0 0 22px rgba(255, 20, 147, 0.22));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(138, 43, 226, 0.45)) drop-shadow(0 0 14px rgba(0, 229, 255, 0.55))
      drop-shadow(0 0 32px rgba(255, 20, 147, 0.35));
  }
}

.hero-desc {
  margin: 0 auto 18px;
  max-width: 34ch;
  font-size: 0.9375rem;
  color: var(--muted-soft);
}

.muted {
  color: var(--muted);
}

/* Progress */
.progress-block {
  margin-top: 26px;
  text-align: left;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.progress-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.progress-pct {
  font-size: 0.9375rem;
  font-weight: 700;
}

.progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--cyan-dim),
    var(--cyan),
    var(--violet-bright),
    var(--magenta-bright),
    var(--warm-accent)
  );
  box-shadow: 0 0 18px rgba(138, 43, 226, 0.25), 0 0 20px rgba(0, 229, 255, 0.28), 0 0 24px rgba(255, 20, 147, 0.18);
  transition: width 0.8s ease;
}

/* CTA card */
.card--cta .cta-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(145deg, #10101c, #080810);
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 16px rgba(255, 20, 147, 0.08);
}

.card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.card--cta .muted {
  font-size: 0.9375rem;
  color: var(--muted-soft);
  margin: 0 0 22px;
  line-height: 1.6;
}

.btn-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a12;
  text-decoration: none;
  background: linear-gradient(
    100deg,
    var(--cyan-dim) 0%,
    var(--cyan) 22%,
    var(--violet-bright) 48%,
    var(--magenta-bright) 78%,
    var(--magenta) 100%
  );
  border: none;
  box-shadow: 0 4px 28px rgba(138, 43, 226, 0.35), 0 4px 32px rgba(0, 229, 255, 0.25),
    0 4px 36px rgba(255, 20, 147, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-telegram:hover {
  filter: brightness(1.07);
  box-shadow: 0 6px 36px rgba(138, 43, 226, 0.42), 0 6px 38px rgba(0, 229, 255, 0.32),
    0 6px 44px rgba(255, 20, 147, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  transform: translateY(-1px);
}

.btn-telegram:active {
  transform: translateY(0);
}

.btn-telegram .tg-icon {
  width: 22px;
  height: 22px;
}

/* Feature sections */
.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.head-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.head-icon--bolt {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.22) 0%,
    rgba(138, 43, 226, 0.18) 42%,
    rgba(20, 12, 28, 0.95) 48%,
    rgba(255, 20, 147, 0.2) 100%
  );
  border: 1px solid rgba(138, 43, 226, 0.35);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.14), 0 0 26px rgba(138, 43, 226, 0.12), 0 0 28px rgba(255, 20, 147, 0.08);
}

.head-icon--shield {
  background: linear-gradient(145deg, rgba(255, 20, 147, 0.2) 0%, rgba(138, 43, 226, 0.22) 45%, rgba(12, 10, 22, 0.95) 100%);
  border: 1px solid rgba(138, 43, 226, 0.38);
  box-shadow: 0 0 22px rgba(138, 43, 226, 0.16), 0 0 20px rgba(255, 20, 147, 0.1);
}

.section-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 229, 255, 0.12);
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.04);
}

.feature-list strong {
  font-weight: 600;
  color: var(--text);
}

.feature-list .dash {
  color: var(--muted);
  font-weight: 400;
}

.feature-list .muted {
  font-size: 0.9375rem;
  color: var(--muted-soft);
}

/* Status */
.status-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 20px;
  margin: 8px 0 20px;
  border-radius: 999px;
  background: rgba(10, 10, 18, 0.92);
  border: 1px solid rgba(0, 229, 255, 0.14);
  font-size: 0.875rem;
  color: var(--muted-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 20, 147, 0.05);
}

.status-pill .status-lead {
  color: var(--neon-green);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.45), 0 0 18px rgba(0, 229, 255, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green), 0 0 16px rgba(0, 229, 255, 0.35), 0 0 14px rgba(138, 43, 226, 0.35);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.1);
  }
}

/* Mini cards */
.bot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.card--mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  margin-bottom: 0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.card--mini:hover {
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: var(--shadow-card), 0 0 28px rgba(0, 229, 255, 0.1), 0 0 36px rgba(255, 20, 147, 0.08);
  transform: translateY(-2px);
}

.mini-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(145deg, #12121c, #080810);
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 14px rgba(255, 20, 147, 0.06);
  flex-shrink: 0;
}

.mini-title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.mini-sub {
  font-size: 0.8125rem;
}

@media (max-width: 380px) {
  .bot-grid {
    grid-template-columns: 1fr;
  }

  .pill--users {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

@media (min-width: 480px) {
  .wrap {
    max-width: 480px;
    padding: 28px 24px 48px;
  }
}
