:root {
  --bg: #f6f8fc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .09);
  --blue: #2563eb;
  --blue2: #1d4ed8;
  --soft: #eff6ff;
  --green: #16a34a;
  --red: #dc2626;
  --orange: #f97316;
  --shadow: 0 24px 70px rgba(15,23,42,.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(37,99,235,.14), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(14,165,233,.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 54%, #ffffff 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, .82);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -.4px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #0f172a);
  box-shadow: 0 16px 34px rgba(37,99,235,.25);
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #334155;
  font-weight: 800;
  font-size: 14px;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 13px 17px;
  font-weight: 900;
  background: #fff;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 38px rgba(37,99,235,.28);
}

.btn-dark {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 18px 38px rgba(15,23,42,.22);
}

.btn-soft {
  background: var(--soft);
  color: var(--blue);
  box-shadow: none;
}

.btn-danger {
  background: #fee2e2;
  color: var(--red);
  box-shadow: none;
}

.hero {
  padding: 76px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,.12);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .92;
  letter-spacing: -4px;
}

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.visual {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 20px;
  overflow: hidden;
}

.visual-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: #cbd5e1;
}

.status-pill {
  padding: 8px 11px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 950;
}

.visual-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
}

.mini-card {
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.06);
  padding: 16px;
}

.mini-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.server-row, .client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 9px;
  border: 1px solid rgba(15,23,42,.05);
}

.server-row b, .client-row b {
  font-size: 13px;
}

.server-row span, .client-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.ok {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #22c55e;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.05);
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric b {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  letter-spacing: -1px;
}

.section {
  padding: 54px 0;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.5px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.price-card.featured {
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 28px 70px rgba(37,99,235,.16);
}

.price-label {
  display: inline-flex;
  background: #eff6ff;
  color: #2563eb;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.price-card h3 {
  font-size: 25px;
  margin: 18px 0 8px;
}

.price {
  font-size: 42px;
  letter-spacing: -2px;
  font-weight: 950;
  margin: 0 0 4px;
}

.price small {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0;
}

.features {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.features li {
  color: #334155;
  font-weight: 750;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.features li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 950;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #0f172a;
  color: #fff;
  font-weight: 950;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 8px;
}

.step p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.cta {
  margin: 40px 0 70px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 28px 80px rgba(15,23,42,.22);
}

.cta h2 {
  margin: 0 0 10px;
  font-size: 38px;
  letter-spacing: -1.5px;
}

.cta p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  max-width: 690px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15,23,42,.58);
  backdrop-filter: blur(12px);
}

.modal.open {
  display: flex;
}

.auth-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 34px 90px rgba(0,0,0,.24);
}

.auth-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.auth-head h2 {
  margin: 0 0 7px;
  font-size: 30px;
  letter-spacing: -1px;
}

.auth-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.close {
  border: 0;
  background: #f1f5f9;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  font-weight: 950;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #334155;
  margin-bottom: 8px;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  outline: none;
  padding: 14px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.error {
  display: none;
  background: #fff1f2;
  color: #be123c;
  border-radius: 15px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 14px;
}

.success {
  display: none;
  background: #ecfdf5;
  color: #047857;
  border-radius: 15px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 14px;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #f5f7fb;
}

.sidebar {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 22px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.side-logo {
  margin-bottom: 26px;
}

.side-menu {
  display: grid;
  gap: 8px;
}

.side-btn {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 16px;
  padding: 13px 14px;
  text-align: left;
  font-weight: 900;
  color: #475569;
}

.side-btn.active {
  background: #eff6ff;
  color: #2563eb;
}

.content {
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.topbar h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -1.4px;
}

.user-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px 13px;
  font-weight: 900;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 18px;
}

.panel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 16px 42px rgba(15,23,42,.06);
}

.panel-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -.7px;
}

.server-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  margin-bottom: 10px;
  background: #f8fafc;
}

.server-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.server-menu {
  position: relative;
}

.dots {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  font-weight: 950;
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 38px;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15,23,42,.18);
  padding: 8px;
  z-index: 5;
}

.dropdown.open {
  display: grid;
}

.dropdown button {
  border: 0;
  background: transparent;
  padding: 11px;
  border-radius: 12px;
  text-align: left;
  font-weight: 850;
}

.dropdown button:hover {
  background: #f8fafc;
}

.server-meta {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
  margin-top: 13px;
}

.meta-box {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
}

.meta-box span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.meta-box b {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 9px;
}

.action-grid button {
  border: 0;
  border-radius: 15px;
  background: #f8fafc;
  padding: 12px;
  font-weight: 900;
  color: #334155;
}

.action-grid button:hover {
  background: #eff6ff;
  color: #2563eb;
}

.locked {
  opacity: .52;
  filter: grayscale(.4);
}

.client-search {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.client-search input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  outline: none;
}

.client-list {
  display: grid;
  gap: 10px;
}

.client-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
  overflow: hidden;
}

.client-summary {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  align-items: center;
}

.client-summary b {
  display: block;
}

.client-summary span {
  color: var(--muted);
  font-size: 12px;
}

.client-details {
  display: none;
  padding: 0 14px 14px;
}

.client-item.open .client-details {
  display: block;
}

.key-box {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 16px;
  padding: 12px;
  font-size: 12px;
  line-height: 1.55;
  word-break: break-all;
  margin: 10px 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-actions button {
  border: 0;
  border-radius: 13px;
  padding: 9px 11px;
  font-weight: 900;
  background: #fff;
  color: #334155;
}

.install-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.terminal {
  background: #0b1120;
  color: #dbeafe;
  border-radius: 22px;
  padding: 18px;
  min-height: 260px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow: auto;
}

.admin-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 17px;
}

.admin-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-stat b {
  display: block;
  margin-top: 7px;
  font-size: 28px;
  letter-spacing: -1px;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  padding: 13px 10px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.confirm-layer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,.58);
  padding: 20px;
}

.confirm-layer.open {
  display: flex;
}

.confirm-box {
  width: min(430px, 100%);
  background: #fff;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 34px 90px rgba(0,0,0,.25);
}

.confirm-box h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.confirm-box p {
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  padding: 30px 0 48px;
  color: #64748b;
  text-align: center;
  font-weight: 750;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .hero-grid, .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .cards, .pricing, .steps {
    grid-template-columns: 1fr;
  }
  .visual-grid {
    grid-template-columns: 1fr;
  }
  .app-shell {
    grid-template-columns: 1fr;
  }
  .sidebar {
    height: auto;
    position: static;
  }
  .side-menu {
    grid-template-columns: repeat(2,1fr);
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-layout {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 560px) {
  .hero h1 {
    letter-spacing: -2px;
  }
  .nav-inner {
    height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    padding: 12px 13px;
  }
  .side-menu {
    grid-template-columns: 1fr;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

/* X-Строй animated background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .14), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(14, 165, 233, .10), transparent 26%),
    radial-gradient(circle at 70% 82%, rgba(15, 23, 42, .06), transparent 24%);
}

body::after {
  content: "";
  position: fixed;
  inset: -60px;
  z-index: -1;
  pointer-events: none;
  opacity: .38;
  background-image:
    radial-gradient(circle, rgba(37, 99, 235, .42) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(15, 23, 42, .18) 1px, transparent 1.5px);
  background-size: 34px 34px, 58px 58px;
  background-position: 0 0, 20px 18px;
  animation: xstroyDotsMove 34s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.45), rgba(0,0,0,.15));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.45), rgba(0,0,0,.15));
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 4%;
  top: 110px;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, .16), transparent 65%);
  filter: blur(6px);
  animation: xstroyGlowFloat 8s ease-in-out infinite alternate;
}

.hero {
  position: relative;
  overflow: hidden;
}

.visual {
  position: relative;
}

.visual::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  border-radius: 34px;
  background: linear-gradient(120deg, transparent 20%, rgba(37, 99, 235, .18), transparent 80%);
  transform: translateX(-100%);
  animation: xstroyCardLight 7s ease-in-out infinite;
}

@keyframes xstroyDotsMove {
  0% {
    background-position: 0 0, 20px 18px;
  }
  100% {
    background-position: 520px 260px, 760px 420px;
  }
}

@keyframes xstroyGlowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .75;
  }
  100% {
    transform: translate3d(-34px, 28px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes xstroyCardLight {
  0%, 72% {
    transform: translateX(-120%);
    opacity: 0;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero::before,
  .visual::after {
    animation: none;
  }
}


/* X-Строй stronger animated dots */
body::after {
  opacity: .62 !important;
  background-image:
    radial-gradient(circle, rgba(37, 99, 235, .70) 1.35px, transparent 2px),
    radial-gradient(circle, rgba(15, 23, 42, .36) 1.2px, transparent 1.9px),
    radial-gradient(circle, rgba(30, 64, 175, .28) 1px, transparent 1.7px) !important;
  background-size: 30px 30px, 52px 52px, 82px 82px !important;
  background-position: 0 0, 18px 16px, 34px 28px !important;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.72), rgba(0,0,0,.24)) !important;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.72), rgba(0,0,0,.24)) !important;
}

@keyframes xstroyDotsMove {
  0% {
    background-position: 0 0, 18px 16px, 34px 28px;
  }
  100% {
    background-position: 520px 260px, 760px 420px, 980px 560px;
  }
}


/* X-Строй balanced animated dots */
body::after {
  opacity: .46 !important;
  background-image:
    radial-gradient(circle, rgba(37, 99, 235, .52) 1.15px, transparent 1.85px),
    radial-gradient(circle, rgba(15, 23, 42, .24) 1px, transparent 1.75px),
    radial-gradient(circle, rgba(30, 64, 175, .18) .9px, transparent 1.6px) !important;
  background-size: 32px 32px, 56px 56px, 86px 86px !important;
  background-position: 0 0, 19px 17px, 35px 29px !important;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.98), rgba(0,0,0,.58), rgba(0,0,0,.16)) !important;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.98), rgba(0,0,0,.58), rgba(0,0,0,.16)) !important;
}

@keyframes xstroyDotsMove {
  0% {
    background-position: 0 0, 19px 17px, 35px 29px;
  }
  100% {
    background-position: 520px 260px, 760px 420px, 960px 540px;
  }
}

