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

:root {
  --bg: #000000;
  --bg-alt: #06060c;
  --card: #0c0c14;
  --card-border: rgba(0, 238, 255, 0.14);
  --text: #e8eaef;
  --muted: #6d7588;
  --muted-soft: #949db3;
  /* Электрический циан (левая сторона щита) */
  --cyan: #00eeff;
  --cyan-bright: #5cf4ff;
  --cyan-dim: #00b8d4;
  /* Неоновая магента / пурпур (правая сторона, градиент «ИГР») */
  --magenta: #ff2bd6;
  --magenta-bright: #ff5ce8;
  --magenta-dim: #c026d3;
  --violet: #8b5cf6;
  /* «Металл» основного текста на лого */
  --silver: #b8c0d4;
  --silver-dim: #8a93a8;
  --accent-ok: #00e8d4;
  --radius-card: 28px;
  --radius-btn: 14px;
  --shadow-card: 0 0 0 1px rgba(0, 238, 255, 0.1), 0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(0, 238, 255, 0.05), 0 0 80px rgba(255, 43, 214, 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,
    #000000 0%,
    #030308 15%,
    #050510 28%,
    #080418 42%,
    #040812 58%,
    #06020c 72%,
    #000000 100%
  );
  background-size: 320% 320%;
  animation: bgShimmer 22s ease-in-out infinite;
}

/* Блики: циан слева, магента справа — как свечение щита */
.page-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 52% 42% at 22% 38%, rgba(0, 238, 255, 0.11), transparent 58%),
    radial-gradient(ellipse 48% 40% at 82% 62%, rgba(255, 43, 214, 0.1), transparent 52%),
    radial-gradient(ellipse 38% 32% at 50% 92%, rgba(139, 92, 246, 0.06), 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;
  box-shadow: 0 0 0 2px rgba(0, 238, 255, 0.35), 0 0 20px rgba(0, 238, 255, 0.15),
    0 0 28px rgba(255, 43, 214, 0.1), 0 8px 24px rgba(0, 0, 0, 0.5);
}

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

.logo--lg {
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 2px rgba(0, 238, 255, 0.4), 0 0 32px rgba(0, 238, 255, 0.18),
    0 0 48px rgba(255, 43, 214, 0.12), 0 12px 40px rgba(0, 0, 0, 0.55);
}

.logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.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) 45%, 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, 18, 0.92);
  border: 1px solid rgba(0, 238, 255, 0.22);
  box-shadow: 0 0 20px rgba(255, 43, 214, 0.06), inset 0 0 0 1px rgba(255, 43, 214, 0.08);
  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, 14, 0.95);
  border: 1px solid rgba(0, 238, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 43, 214, 0.2), 0 0 24px rgba(0, 238, 255, 0.1),
    0 0 28px rgba(255, 43, 214, 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(0, 238, 255, 0.08);
}

.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) 14%,
    #c8d0e0 38%,
    #e0e6f0 48%,
    #d8a8ff 62%,
    var(--magenta-bright) 78%,
    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 8px rgba(0, 238, 255, 0.45)) drop-shadow(0 0 22px rgba(255, 43, 214, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(0, 238, 255, 0.65)) drop-shadow(0 0 32px rgba(255, 43, 214, 0.4));
  }
}

.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(--magenta-bright), var(--magenta-dim));
  box-shadow: 0 0 18px rgba(0, 238, 255, 0.35), 0 0 28px rgba(255, 43, 214, 0.2);
  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, 238, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 16px rgba(255, 43, 214, 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: #0a0a10;
  text-decoration: none;
  background: linear-gradient(100deg, var(--cyan) 0%, var(--cyan-bright) 32%, #e879f8 72%, var(--magenta) 100%);
  border: none;
  box-shadow: 0 4px 28px rgba(0, 238, 255, 0.35), 0 4px 36px rgba(255, 43, 214, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.2) 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(0, 238, 255, 0.42), 0 6px 44px rgba(255, 43, 214, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.25) 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, 238, 255, 0.22) 0%, rgba(20, 12, 28, 0.95) 48%, rgba(255, 43, 214, 0.2) 100%);
  border: 1px solid rgba(0, 238, 255, 0.35);
  box-shadow: 0 0 22px rgba(0, 238, 255, 0.15), 0 0 28px rgba(255, 43, 214, 0.1);
}

.head-icon--shield {
  background: linear-gradient(145deg, rgba(255, 43, 214, 0.2) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(12, 10, 20, 0.95) 100%);
  border: 1px solid rgba(255, 43, 214, 0.35);
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.14), 0 0 20px rgba(139, 92, 246, 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, 238, 255, 0.12);
  box-shadow: 0 0 12px rgba(255, 43, 214, 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, 238, 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, 43, 214, 0.05);
}

.status-pill .status-lead {
  color: var(--cyan-bright);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(0, 238, 255, 0.35);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 18px rgba(255, 43, 214, 0.45);
  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, 238, 255, 0.28);
  box-shadow: var(--shadow-card), 0 0 28px rgba(0, 238, 255, 0.1), 0 0 36px rgba(255, 43, 214, 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, 238, 255, 0.2);
  box-shadow: 0 0 14px rgba(255, 43, 214, 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;
  }
}
