:root{
  --bg0:#050611;
  --bg1:#0b1230;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --accent:#7c5cff;
  --accent2:#27e0ff;
  --good:#38f2a4;
  --warn:#ffd36a;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --r16:16px;
  --r20:20px;
  --max:1100px;
  --hover:#2bd9ff; /* бірюзовий ТІЛЬКИ для hover */

}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 18% 10%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 600px at 88% 25%, rgba(39,224,255,.18), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height:100vh;
}

a{color:inherit}
.container{width:min(var(--max),100%); margin:0 auto; padding:0 16px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(5,6,17,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800;
  letter-spacing:.02em; text-decoration:none;
}
.dot{
  width:12px;height:12px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 0 28px rgba(124,92,255,.55);
}
.nav{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
  color:rgba(234,240,255,.82);
  border:1px solid transparent;
}
.nav a:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
  color:#fff;
}
.nav a.active{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  color:#fff;
}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.cta:hover{transform:translateY(-1px); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.22)}
.cta.primary{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border-color:transparent;
  color:#061018;
  box-shadow:0 10px 30px rgba(124,92,255,.25);
}
.cta.primary:hover{transform:translateY(-1px) scale(1.01)}
.badge{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  padding:8px 10px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.82);
}

.hero{
  padding:28px 0 10px;
}
.hero-card{
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 280px at 25% 0%, rgba(124,92,255,.35), transparent 60%),
    radial-gradient(700px 280px at 75% 0%, rgba(39,224,255,.20), transparent 60%);
  pointer-events:none;
  filter:blur(2px);
  opacity:.9;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  padding:24px;
}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
}
.h-title{
  margin:10px 0 10px;
  font-size:54px; line-height:1;
  letter-spacing:-.02em;
}
.h-sub{
  color:var(--muted);
  font-size:18px;
  max-width:65ch;
  margin:0 0 18px;
}
.actions{display:flex; flex-wrap:wrap; gap:12px; margin:16px 0 6px}

.panel{
  border-radius:18px;
  background:var(--card);
  border:1px solid rgba(255,255,255,.12);
  padding:14px;
}
.panel h3{margin:0 0 8px; font-size:16px}
.panel p, .panel li{color:var(--muted); line-height:1.55}
.panel ul{margin:0; padding-left:18px}
.panel li{margin:6px 0}

.kpis{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.kpi{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
  color:rgba(255,255,255,.82);
}

.section{padding:14px 0}
.section h2{
  margin:14px 0 10px;
  font-size:22px;
  letter-spacing:-.01em;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width:900px){ .grid3{grid-template-columns:1fr} }
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (max-width:900px){ .grid2{grid-template-columns:1fr} }

.card{
  border-radius:var(--r20);
  background:var(--card);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.hr{
  margin:18px 0;
  height:1px;
  background:rgba(255,255,255,.10);
  border:0;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
@media (max-width:1000px){ .gallery{grid-template-columns:repeat(3,1fr)} }
@media (max-width:700px){ .gallery{grid-template-columns:repeat(2,1fr)} }
.g-item{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  cursor:pointer;
  position:relative;
}
.g-item img{
  width:100%; height:170px; object-fit:cover; display:block;
  transform:scale(1.01);
  transition:transform .15s ease, opacity .15s ease;
  opacity:.95;
}
.g-item:hover img{transform:scale(1.05); opacity:1}
.g-cap{
  position:absolute; left:10px; bottom:10px;
  background:rgba(5,6,17,.55);
  border:1px solid rgba(255,255,255,.12);
  padding:6px 8px;
  border-radius:12px;
  font-size:12px;
  color:rgba(234,240,255,.86);
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:999;
  background:rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.lightbox.open{display:flex}
.lb-inner{
  width:min(1100px,100%);
  background:rgba(10,12,28,.65);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.lb-top{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.lb-title{font-size:13px; color:rgba(234,240,255,.8)}
.lb-actions{display:flex; gap:8px}
.lb-btn{
  width:38px; height:36px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}
.lb-btn:hover{background:rgba(255,255,255,.10)}
.lb-img{
  width:100%;
  max-height:75vh;
  object-fit:contain;
  display:block;
  background:rgba(0,0,0,.25);
}

.footer{
  padding:26px 0 34px;
  color:rgba(234,240,255,.65);
  font-size:13px;
}
.footer a{
  color:rgba(234,240,255,.8);
  text-decoration:none;
  border-bottom:1px dashed rgba(234,240,255,.35);
}
.footer a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.6)}
.small{font-size:12px;color:rgba(234,240,255,.65)}
/* =========================
   VeilOnline — Indigo/Purple (like your screenshot)
   Paste at END to override everything
   ========================= */

:root{
  --bg0:#060915;
  --bg1:#0a1030;
  --bg2:#0b1640;

  --text:#eef2ff;
  --muted:rgba(238,242,255,.72);

  --cardA:rgba(14, 24, 62, .62);
  --cardB:rgba(12, 18, 44, .45);

  --stroke:rgba(168, 185, 255, .18);
  --stroke2:rgba(168, 185, 255, .10);

  /* accents = purple (NO cyan) */
  --accent:#a78bfa;     /* soft purple */
  --accent2:#7c3aed;    /* deep purple */
  --accent3:#93c5fd;    /* very soft blue, not neon */

  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

/* background like screenshot */
body{
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(124,58,237,.20), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(147,197,253,.10), transparent 62%),
    radial-gradient(900px 700px at 50% 120%, rgba(255,255,255,.05), transparent 65%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 55%, var(--bg2));
  color:var(--text);
}

/* top bar */
.topbar{
  background: rgba(6,9,21,.55);
  border-bottom: 1px solid var(--stroke2);
  backdrop-filter: blur(10px);
}
.nav a{ color: rgba(238,242,255,.82); }
.nav a:hover{
  background: rgba(255,255,255,.06);
  border-color: var(--stroke);
}
.nav a.active{
  background: rgba(255,255,255,.08);
  border-color: var(--stroke);
}

/* panels/cards */
.card, .panel, .box, .hero-card{
  background: linear-gradient(180deg, var(--cardA), var(--cardB));
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 14px 50px rgba(0,0,0,.35);
}
.card:hover, .panel:hover, .box:hover{
  border-color: rgba(168,185,255,.28);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 18px 60px rgba(0,0,0,.42),
    0 0 38px rgba(124,58,237,.14);
}

/* buttons */
.cta{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,185,255,.18);
  color: rgba(238,242,255,.92);
}
.cta:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(168,185,255,.28);
  box-shadow: 0 0 26px rgba(124,58,237,.14);
}
.cta.primary{
  background: linear-gradient(135deg, rgba(167,139,250,.95), rgba(124,58,237,.90));
  border-color: transparent;
  color:#0a0f22;
  box-shadow:
    0 16px 50px rgba(124,58,237,.16),
    0 12px 40px rgba(0,0,0,.35);
}

/* small tags */
.tag, .badge, .kpi{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,185,255,.16);
  color: rgba(238,242,255,.82);
}

/* gallery tiles */
.g-item{
  background: linear-gradient(180deg, rgba(14,24,62,.52), rgba(12,18,44,.40));
  border: 1px solid rgba(168,185,255,.18);
  border-radius: 16px;
}
.g-item:hover{
  border-color: rgba(168,185,255,.28);
  box-shadow: 0 16px 46px rgba(0,0,0,.35), 0 0 30px rgba(124,58,237,.12);
}
.g-cap{
  background: rgba(6,9,21,.55);
  border: 1px solid rgba(168,185,255,.16);
}

.small, .subtitle, .card p, .panel p{ color: var(--muted); }
/* buttons hover */
.cta:hover{
  border-color: var(--hover);
  box-shadow:
    0 0 0 1px rgba(43,217,255,.35) inset,
    0 0 26px rgba(43,217,255,.25);
}
.bottombar {
  margin-top: 80px;
  padding: 16px 0;
  background: rgba(10, 20, 45, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.bottombar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bottom-left .brand {
  font-weight: 600;
  color: #cfd8ff;
}

.bottom-center {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.bottom-right .status {
  font-size: 13px;
  color: rgba(180, 200, 255, 0.7);
}
/* Manifest / statement block (not a card) */
.manifest {
  margin: 24px 0 10px;
}

.manifest__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 18px 16px;
  border-left: 3px solid rgba(186, 160, 255, 0.75);
  background: linear-gradient(
    90deg,
    rgba(186, 160, 255, 0.10),
    rgba(186, 160, 255, 0.00)
  );
  border-radius: 14px;
}

.manifest__kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.manifest__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.manifest__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons (safe defaults) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.btn-primary {
  background: rgba(186, 160, 255, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-1px);
}
/* ===== FAQ (без карток) ===== */
.faq-hero {
  margin: 28px 0 18px;
}

.faq-hero .kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}

.faq-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
}

.faq-hero .lead {
  max-width: 850px;
  opacity: 0.86;
  line-height: 1.6;
}

.faq {
  margin: 18px 0 34px;
}

.faq-group {
  border-top: 1px solid rgba(255,255,255,0.10);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 6px 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
  border-radius: 12px;
  transition: background 160ms ease, transform 160ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  background: rgba(255,255,255,0.04);
}

.faq-item[open] summary {
  background: rgba(255,255,255,0.05);
}

.faq-item .q {
  font-weight: 650;
  line-height: 1.35;
}

.faq-item .icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  position: relative;
  flex: 0 0 auto;
}

.faq-item .icon::before,
.faq-item .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.faq-item .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease, opacity 160ms ease;
  opacity: 0.95;
}

.faq-item[open] .icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-item .a {
  padding: 0 10px 16px;
  max-width: 980px;
  opacity: 0.88;
  line-height: 1.7;
}

/* Плавна “анімація” відкриття через відступи */
.faq-item .a {
  animation: faqFade 160ms ease;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 0.88; transform: translateY(0); }
}

.faq-note {
  margin-top: 18px;
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.faq-note-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-note-text {
  opacity: 0.85;
  line-height: 1.6;
}

.faq-note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 3px;
}

.faq-note a:hover {
  text-decoration-color: rgba(255,255,255,0.7);
}
/* === CTA: Стежити === */
.cta-follow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:10px 18px;
  border-radius:14px;

  font-weight:700;
  font-size:14px;
  letter-spacing:0.2px;
  text-decoration:none;

  color:#0b1020;

  background: linear-gradient(135deg,
    rgba(196, 181, 253, 1) 0%,
    rgba(167, 139, 250, 1) 45%,
    rgba(124, 58, 237, 1) 100%
  );

  border:1px solid rgba(255,255,255,0.35);

  box-shadow:
    0 10px 30px rgba(124, 58, 237, 0.35),
    0 0 0 1px rgba(255,255,255,0.15) inset;

  position:relative;
  overflow:hidden;

  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* легкий блиск (рухається при hover) */
.cta-follow::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 20% 20%,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0) 40%
  );
  opacity:0.55;
  pointer-events:none;
  transform: translateX(-30%);
  transition: transform .35s ease, opacity .2s ease;
}

/* м’який glow під кнопкою */
.cta-follow::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:-18px;
  height:28px;
  background: radial-gradient(circle,
    rgba(168, 85, 247, 0.45),
    rgba(168, 85, 247, 0) 70%
  );
  filter: blur(2px);
  opacity:0.9;
  pointer-events:none;
}

.cta-follow:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 14px 38px rgba(124, 58, 237, 0.45),
    0 0 0 1px rgba(255,255,255,0.18) inset;
}

.cta-follow:hover::before{
  transform: translateX(0%);
  opacity:0.7;
}

.cta-follow:active{
  transform: translateY(0px) scale(0.99);
}

.cta-follow:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(196, 181, 253, 0.35),
    0 14px 38px rgba(124, 58, 237, 0.45),
    0 0 0 1px rgba(255,255,255,0.18) inset;
}
/* === FOLLOW PAGE === */

.follow-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.follow-hero {
  margin-bottom: 48px;
}

.follow-badge {
  display: inline-block;
  background: rgba(160, 140, 255, 0.15);
  color: #b9adff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
}

.follow-hero h1 {
  font-size: 38px;
  margin-bottom: 14px;
}

.follow-intro {
  max-width: 620px;
  opacity: 0.85;
}

.follow-channels h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.follow-note {
  opacity: 0.7;
  margin-bottom: 24px;
}

.follow-list {
  display: grid;
  gap: 16px;
}

.follow-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.follow-item strong {
  font-weight: 600;
}

.follow-item span {
  opacity: 0.8;
}

.follow-item em {
  font-style: normal;
  font-size: 13px;
  opacity: 0.5;
}

.follow-item a {
  font-size: 14px;
  color: #a99cff;
  text-decoration: none;
}

.follow-item a:hover {
  text-decoration: underline;
}

.follow-footer-note {
  margin-top: 60px;
  opacity: 0.6;
  font-size: 14px;
}
.about-logo-block.left{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

.about-logo-text{
  display: block;
}


.about-logo{
  width: 120px;       /* змінюй під себе: 90-160 */
  height: auto;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px rgba(170, 120, 255, 0.35));
}

.about-logo-title{
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 0 18px rgba(170, 120, 255, 0.18);
}

.about-logo-subtitle{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
}
/* ==== VO INLINE LOGO (NON-HEADER) ==== */
.vo-inline{
  width: 100%;
  margin: 10px 0 22px;
  display: flex;
  justify-content: flex-start;
}

.vo-inline-link{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.vo-inline-logo{
  width: 56px;           /* 48–72 */
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(170,120,255,0.35));
}

.vo-inline-title{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.vo-inline-subtitle{
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Mobile — по центру */
@media (max-width: 768px){
  .vo-inline{
    justify-content: center;
  }
}
/* ==== /VO INLINE LOGO ==== */
/* Systems page helpers (no cards) */
.doc h1 { font-size: 42px; margin: 0 0 16px; }
.doc h2 { font-size: 26px; margin: 42px 0 12px; }
.doc h3 { font-size: 18px; margin: 22px 0 8px; opacity: .95; }
.doc p  { line-height: 1.65; font-size: 16.5px; opacity: .92; }
.doc hr { margin: 46px 0; opacity: .18; }

.kicker { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-bottom: 10px; }
.note   { font-size: 14px; opacity: .8; }

.badge {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  opacity: .9;
}

.badge.soon {
  border-color: rgba(166, 110, 255, .35);
  background: rgba(166, 110, 255, .12);
}

.toc {
  margin: 26px 0 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.toc a { text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,.25); }
.toc a:hover { border-bottom-color: rgba(255,255,255,.6); }

.divider {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.direct-contact {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.direct-contact .note {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 14px;
  max-width: 520px;
}

.mail-button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c6cff, #9b8cff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease;
}

.mail-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,108,255,0.35);
}

.mail-hint {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.6;
}
/* ===== Support page (VeilOnline style) ===== */
.support-page {
  padding-top: 40px;
  padding-bottom: 90px;
}

.support-hero {
  padding-top: 10px;
}

.support-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 12px;
}

.support-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.support-lead {
  max-width: 820px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.support-lead.small { font-size: 16px; }

.support-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}

.support-mini {
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.support-mini-label { color: rgba(255,255,255,.55); }
.support-mini-link { color: rgba(210,190,255,.95); text-decoration: none; }
.support-mini-link:hover { text-decoration: underline; }
.support-mini-sep { margin: 0 8px; opacity: .5; }
.support-mini-text { color: rgba(255,255,255,.85); }

.support-h2 {
  font-size: 26px;
  margin: 0 0 14px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .support-grid { grid-template-columns: 1fr; }
  .support-title { font-size: 34px; }
}

.support-panel {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  padding: 16px;
}

.support-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.support-panel h3 {
  margin: 0;
  font-size: 18px;
}

.support-panel p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.support-hint {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.58);
}

.support-link {
  display: inline-block;
  color: rgba(210,190,255,.95);
  text-decoration: none;
}

.support-link:hover { text-decoration: underline; }

.support-crypto {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

.support-crypto-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.support-crypto-row:first-child { border-top: 0; }

.support-crypto-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.support-crypto-sub {
  margin-top: 6px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.support-crypto-addr {
  display: block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.88);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  word-break: break-all;
}

.support-crypto-note {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.support-crypto-note a {
  color: rgba(210,190,255,.95);
  text-decoration: none;
}
.support-crypto-note a:hover { text-decoration: underline; }

.support-legal {
  margin-top: 12px;
  color: rgba(255,255,255,.52);
  font-size: 12.5px;
}

/* badges (якщо у тебе вже є — цей блок можна не додавати) */
.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(190,170,255,.55);
  color: rgba(210,190,255,.95);
  background: rgba(190,170,255,.12);
  white-space: nowrap;
}

.badge.soft {
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
}
.collaboration {
  max-width: 900px;
  margin: 0 auto;
}

.collaboration h2 {
  margin-bottom: 1rem;
}

.collaboration .lead {
  font-size: 1.05rem;
  opacity: 0.9;
}

.collaboration h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.collaboration ul {
  margin-left: 1.2rem;
  line-height: 1.7;
}

.collaboration li {
  margin-bottom: 0.4rem;
}

.collaboration .contact {
  margin-top: 1.5rem;
  font-weight: 500;
}

.collaboration .contact a {
  color: var(--accent);
  text-decoration: none;
}

.collaboration .contact a:hover {
  text-decoration: underline;
}

.collaboration .note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.6;
}
.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang-switch{ position:relative; }
.lang-toggle{
  display:flex; align-items:center; gap:6px;
  padding:6px 10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  color:#fff; cursor:pointer;
}
.lang-toggle:hover{ background:rgba(255,255,255,.10); }
.lang-arrow{ opacity:.6; transition:transform .25s ease; }

.lang-dropdown{
  position:absolute; right:0; top:calc(100% + 8px);
  min-width:160px;
  background:rgba(18,18,28,.98);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  z-index:1000;
  overflow:hidden;
}
.lang-switch.open .lang-dropdown{
  opacity:1; transform:translateY(0);
  pointer-events:auto;
}
.lang-switch.open .lang-arrow{ transform:rotate(180deg); }

.lang-dropdown a, .lang-disabled{
  display:block; padding:10px 14px;
  font-size:14px; color:#fff;
  text-decoration:none;
}
.lang-dropdown a:hover{ background:rgba(255,255,255,.08); }
.lang-disabled{ opacity:.4; cursor:default; }
/* ===== Floating language switch ===== */

.floating-lang{
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 9999;
  font-family: inherit;
}

.lang-current{
  background: rgba(20,25,55,0.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lang-current:hover{
  background: rgba(30,35,75,0.9);
}

.lang-menu{
  margin-top: 8px;
  display: none;
  flex-direction: column;
  background: rgba(15,20,45,0.95);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.lang-menu a,
.lang-menu span{
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.lang-menu a:hover{
  background: rgba(255,255,255,0.08);
}

.lang-disabled{
  opacity: 0.4;
  cursor: not-allowed;
}

/* active state */
.floating-lang.open .lang-menu{
  display: flex;
}
.lang-switch{
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100000;
}

.lang-current{
  background: rgba(20,25,40,.8);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.lang-menu{
  display: none;
  margin-top: 8px;
  background: rgba(20,25,40,.95);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
}

.lang-switch.open .lang-menu{
  display: block;
}
/* Мова — НЕ плаваюча, просто блок у верхній частині сторінки */
.langbar{
  width: 100%;
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 0 16px;
  display: flex;
  justify-content: flex-start;
  position: relative; /* для меню */
  z-index: 10;
}

.langbar-btn{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .3px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.langbar-btn:active{
  transform: translateY(1px);
}

.langbar-arrow{
  opacity: .8;
}

/* Випадаюче меню під кнопкою */
.langbar-menu{
  position: absolute;
  top: 52px;
  left: 16px;
  min-width: 180px;
  background: rgba(10,14,25,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 8px;
  display: none;
  backdrop-filter: blur(10px);
}

.langbar-menu.open{
  display: block;
}

.langbar-menu a,
.langbar-menu span{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.langbar-menu a:hover{
  background: rgba(255,255,255,.08);
}

.langbar-menu .disabled{
  opacity: .45;
  cursor: not-allowed;
}
/* Блок дій у правому верхньому куті */
.top-actions{
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 20;
}

/* Щоб мова була НЕ плаваюча по сторінці (вона рухається разом із hero) */
.world-hero, .hero, .page-hero {
  position: relative; /* якщо в тебе hero має іншу назву — постав на той блок де лого */
}

/* Кнопка мови */
.lang-switch{ position: relative; }

.lang-btn{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.lang-menu{
  position: absolute;
  top: 48px;
  right: 0;
  min-width: 50px;
  background: rgba(10,14,25,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 8px;
  display: none;
  backdrop-filter: blur(10px);
}

.lang-menu.open{ display: block; }

.lang-menu a,
.lang-menu span{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.lang-menu a:hover{ background: rgba(255,255,255,.08); }

.lang-disabled{
  opacity: .45;
  cursor: not-allowed;
}
.follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.04);
  color: #ffffff;

  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;

  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.follow-button.discord {
  background: #5865F2;
  border-color: rgba(88, 101, 242, 0.4);
}

.follow-button.discord:hover {
  background: #4752C4;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.35);
  transform: translateY(-1px);
}
.follow-button.youtube {
  background: #FF0000;
  border-color: rgba(255,0,0,0.4);
}

.follow-button.youtube:hover {
  background: #CC0000;
  box-shadow: 0 0 14px rgba(255,0,0,0.35);
}
.follow-button.tiktok {
  background: #0F0F0F;
  border-color: rgba(255,255,255,0.25);
}

.follow-button.tiktok:hover {
  box-shadow:
    -2px 0 8px rgba(37,244,238,0.6),
     2px 0 8px rgba(254,44,85,0.6);
  transform: translateY(-1px);
}
.follow-button.x {
    background-color: #1a1a1a;
    color: #ffffff;
}

.follow-button.x:hover {
    background-color: #222222;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255,255,255,0.12);
}
