/* 1xslots-online5.shop | Арктика/Злато | Barlow Condensed + Work Sans | .sync-a8m3v */

:root {
  --bg: #050d18;
  --bg-card: #0a1628;
  --bg-section: #071220;
  --accent: #38bdf8;
  --gold: #fbbf24;
  --text: #e8f4fd;
  --text-muted: #93c5e8;
  --border: #0e2a44;
  --cta-bg: #38bdf8;
  --cta-text: #050d18;
  --cta2-bg: transparent;
  --cta2-text: #38bdf8;
  --radius: 8px;
}

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

body.sync-body-a8m3v {
  background: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.sync-nav-a8m3v {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,13,24,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.sync-nav-inner-a8m3v {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sync-logo-a8m3v {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .04em;
}
.sync-logo-a8m3v span { color: var(--accent); }
.sync-menu-a8m3v {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}
.sync-menu-a8m3v a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.sync-menu-a8m3v a:hover { color: var(--accent); }
.sync-nav-cta-a8m3v {
  background: var(--cta-bg);
  color: var(--cta-text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 9px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.sync-nav-cta-a8m3v:hover { opacity: .88; }

/* HERO */
.sync-hero-a8m3v {
  padding: 72px 24px 56px;
  background: radial-gradient(ellipse at 50% 0%, #0e2a44 0%, var(--bg) 70%);
  text-align: center;
}
.sync-hero-inner-a8m3v { max-width: 860px; margin: 0 auto; }
.sync-hero-badge-a8m3v {
  display: inline-block;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.3);
  color: var(--accent);
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: .06em;
}
.sync-h1-a8m3v {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.sync-h1-a8m3v em { color: var(--accent); font-style: normal; }
.sync-hero-sub-a8m3v {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* QUICK ACTIONS */
.sync-quick-a8m3v {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.sync-quick-card-a8m3v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-decoration: none;
  transition: border-color .2s;
}
.sync-quick-card-a8m3v:hover { border-color: var(--accent); }
.sync-qc-title-a8m3v { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--accent); }
.sync-qc-sub-a8m3v { font-size: 12px; color: var(--text-muted); }

/* KPI STRIP */
.sync-kpi-a8m3v {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.sync-kpi-cell-a8m3v { text-align: center; }
.sync-kpi-val-a8m3v { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; color: var(--gold); }
.sync-kpi-lbl-a8m3v { font-size: 12px; color: var(--text-muted); }

/* CTA BUTTONS */
.sync-hero-btns-a8m3v { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sync-btn-primary-a8m3v {
  background: var(--cta-bg);
  color: var(--cta-text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity .2s;
}
.sync-btn-primary-a8m3v:hover { opacity: .88; }
.sync-btn-secondary-a8m3v {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s;
}
.sync-btn-secondary-a8m3v:hover { background: rgba(56,189,248,.1); }

/* CONTENT */
.sync-content-a8m3v { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sync-section-a8m3v { padding: 52px 0; border-bottom: 1px solid var(--border); }
.sync-h2-a8m3v {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.sync-h3-a8m3v {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 10px;
}
.sync-p-a8m3v { color: var(--text-muted); margin-bottom: 14px; }
.sync-ul-a8m3v { color: var(--text-muted); padding-left: 20px; margin-bottom: 14px; line-height: 1.8; }

/* MIRROR BOX */
.sync-mirror-box-a8m3v {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
}

/* LINK BUTTON */
.sync-link-btn-a8m3v {
  display: inline-block;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 14px;
  transition: opacity .2s;
}
.sync-link-btn-a8m3v:hover { opacity: .88; }

/* BONUS GRID */
.sync-bonus-grid-a8m3v {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.sync-bonus-card-a8m3v {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.sync-dep-label-a8m3v { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.sync-bonus-amount-a8m3v { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; color: var(--gold); margin-bottom: 6px; }
.sync-bonus-pct-a8m3v { font-size: 14px; color: var(--accent); }

/* SLOT GRID */
.sync-slot-grid-a8m3v {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.sync-slot-card-a8m3v {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
}
.sync-slot-name-a8m3v { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; color: var(--text); margin-bottom: 6px; }
.sync-slot-info-a8m3v { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.sync-slot-cta-a8m3v {
  display: inline-block;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
}
.sync-slot-cta-a8m3v:hover { background: rgba(56,189,248,.22); }

/* TABLES */
.sync-table-wrap-a8m3v { overflow-x: auto; margin-top: 20px; }
.sync-table-a8m3v, .sync-vip-table-a8m3v {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sync-table-a8m3v th, .sync-vip-table-a8m3v th {
  background: var(--bg-card);
  color: var(--accent);
  padding: 12px 14px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.sync-table-a8m3v td, .sync-vip-table-a8m3v td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.sync-vip-top-a8m3v td { color: var(--gold); font-weight: 500; }

/* LICENSE */
.sync-license-grid-a8m3v {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.sync-lic-item-a8m3v {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.sync-lic-item-a8m3v p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* REVIEWS */
.sync-reviews-a8m3v { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.sync-review-a8m3v {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.sync-rv-header-a8m3v { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sync-rv-avatar-a8m3v {
  width: 40px; height: 40px;
  background: rgba(56,189,248,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}
.sync-rv-name-a8m3v { font-size: 14px; font-weight: 500; color: var(--text); }
.sync-rv-stars-a8m3v { font-size: 13px; color: var(--gold); }
.sync-rv-text-a8m3v { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* AUTHOR NOTE */
.sync-author-a8m3v {
  margin-top: 24px;
  padding: 16px;
  background: rgba(56,189,248,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.sync-faq-a8m3v { margin-top: 20px; }
.sync-faq-item-a8m3v { border-bottom: 1px solid var(--border); }
.sync-faq-q-a8m3v {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  text-align: left;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}
.sync-faq-q-a8m3v:hover { color: var(--accent); }
.sync-faq-icon-a8m3v { font-size: 20px; color: var(--accent); flex-shrink: 0; }
.sync-faq-ans-a8m3v { display: none; padding-bottom: 16px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* FINAL CTA */
.sync-cta-block-a8m3v {
  text-align: center;
  padding: 56px 24px;
  background: radial-gradient(ellipse at 50% 100%, #0e2a44 0%, var(--bg) 60%);
}
.sync-cta-title-a8m3v { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 30px; color: var(--text); margin-bottom: 10px; }
.sync-cta-sub-a8m3v { color: var(--text-muted); margin-bottom: 24px; }
.sync-cta-btn-a8m3v {
  display: inline-block;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity .2s;
}
.sync-cta-btn-a8m3v:hover { opacity: .88; }

/* FOOTER */
.sync-footer-a8m3v {
  background: #020810;
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.sync-footer-inner-a8m3v { max-width: 900px; margin: 0 auto; text-align: center; }
.sync-footer-logo-a8m3v { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--text-muted); margin-bottom: 14px; }
.sync-footer-legal-a8m3v { font-size: 12px; color: #4a7a9b; line-height: 1.8; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .sync-quick-a8m3v { grid-template-columns: repeat(2, 1fr); }
  .sync-bonus-grid-a8m3v { grid-template-columns: repeat(2, 1fr); }
  .sync-slot-grid-a8m3v { grid-template-columns: repeat(2, 1fr); }
  .sync-reviews-a8m3v { grid-template-columns: 1fr; }
  .sync-license-grid-a8m3v { grid-template-columns: 1fr; }
  .sync-menu-a8m3v { display: none; }
  .sync-kpi-a8m3v { max-width: 100%; }
}
@media (max-width: 600px) {
  .sync-quick-a8m3v { grid-template-columns: repeat(2, 1fr); }
  .sync-bonus-grid-a8m3v { grid-template-columns: 1fr 1fr; }
  .sync-slot-grid-a8m3v { grid-template-columns: 1fr; }
}
