/* ===========================
   World Edit Store — NEW UI
   Dark / Neon / Glass + Mobile
   =========================== */

:root{
  --bg0:#05060f;
  --bg1:#070a16;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --accent:#7c3aed;      /* фиолетовый */
  --accent2:#22d3ee;     /* голубой */
  --good:#22c55e;
  --bad:#ef4444;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadow2: 0 10px 30px rgba(0,0,0,.35);

  --r12:12px;
  --r16:16px;
  --r20:20px;

  --max: 1200px;
}

/* base */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;

  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(124,58,237,.35), transparent 55%),
    radial-gradient(900px 520px at 90% 10%, rgba(34,211,238,.25), transparent 55%),
    radial-gradient(900px 520px at 55% 95%, rgba(124,58,237,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* links */
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

/* container */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 16px 28px;
}

/* ===========================
   Header / Nav
   =========================== */

header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 8, 20, .55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nav{
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  gap:12px;
}

/* brand to the very left */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand-link{ display:flex; align-items:center; gap:10px; }
.brand h1{
  margin:0;
  font-size: 16px;
  letter-spacing: .2px;
  font-weight: 800;
}
.badge{
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(124,58,237,.35), rgba(34,211,238,.18));
  color: rgba(255,255,255,.92);
}

/* links on the right */
.links{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

/* nav items */
.links a{
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.86);
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.links a:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.96);
  transform: translateY(-1px);
}
.links a.active{
  background: linear-gradient(90deg, rgba(124,58,237,.28), rgba(34,211,238,.18));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
}

/* cart pill */
.cart-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.cart-count{
  display:inline-flex;
  min-width: 22px;
  height: 22px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(34,211,238,.22);
  border: 1px solid rgba(34,211,238,.35);
  font-size: 12px;
  font-weight: 800;
}

/* burger button (mobile) */
.menu-btn{
  display:none;
  margin-left:auto;
  width:44px;
  height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  position: relative;
}
.menu-btn span{
  position:absolute;
  left:12px; right:12px;
  height:2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.menu-btn span:nth-child(1){ top:14px; }
.menu-btn span:nth-child(2){ top:21px; }
.menu-btn span:nth-child(3){ top:28px; }

.nav.is-open .menu-btn span:nth-child(1){ top:21px; transform: rotate(45deg); }
.nav.is-open .menu-btn span:nth-child(2){ opacity:0; }
.nav.is-open .menu-btn span:nth-child(3){ top:21px; transform: rotate(-45deg); }

/* ===========================
   Hero / Cards / Buttons
   =========================== */

.hero{
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius: var(--r20);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(124,58,237,.32), transparent 60%),
    radial-gradient(520px 240px at 90% 20%, rgba(34,211,238,.22), transparent 60%);
  pointer-events:none;
  opacity:.9;
}
.hero > *{ position: relative; }

.hero h2{
  margin: 0 0 6px 0;
  font-size: 22px;
  letter-spacing: .2px;
}
.hero p{
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.hero-center{ text-align:center; }

.small{ color: var(--muted); font-size: 13px; }
.sum{ font-size: 26px; font-weight: 900; letter-spacing:.2px; }

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(124,58,237,.60), rgba(34,211,238,.26));
  color: rgba(255,255,255,.95);
  font-weight: 800;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 10px 30px rgba(124,58,237,.18);
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn:active{ transform: translateY(0px) scale(.99); }

.btn.secondary{
  background: rgba(255,255,255,.06);
  box-shadow:none;
}
.btn.danger{
  background: rgba(239,68,68,.20);
  border-color: rgba(239,68,68,.35);
  box-shadow:none;
}

/* generic card (used in cart payment block etc.) */
.card{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--r16);
  padding: 14px 14px;
  box-shadow: var(--shadow2);
}

/* pay option */
.pay-option{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.pay-option input{ transform: scale(1.1); }
.cards{ margin-left:auto; display:flex; gap:8px; flex-wrap:wrap; }
.card-badge{
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

/* ===========================
   Products grid / Product card
   =========================== */

.products{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* if your products are rendered as .product blocks */
.product{
  grid-column: span 12;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--r16);
  padding: 14px;
  box-shadow: var(--shadow2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  transition: transform .15s ease, background .15s ease;
}
.product:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
}
.product h4{
  margin:0 0 6px 0;
  font-size: 16px;
}
.product .meta{ color: var(--muted); font-size: 13px; line-height: 1.35; }
.product .price{ margin-top: 8px; font-weight: 900; }

.product .actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.qty{
  width: 86px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  outline:none;
}

/* ===========================
   Cart table
   =========================== */

.table{
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--r16);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.row{
  display:grid;
  grid-template-columns: 2.2fr 1fr .8fr 1fr auto;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items:center;
}
.row:last-child{ border-bottom:none; }
.row.header{
  background: rgba(255,255,255,.04);
  font-weight: 900;
  color: rgba(255,255,255,.90);
}

.hide-sm{ display:block; }

.total{
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--r16);
  padding: 14px;
  box-shadow: var(--shadow2);
  display:flex;
  justify-content:space-between;
  gap: 14px;
  align-items:flex-start;
}
.total .actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===========================
   Modal
   =========================== */
.modal{ position: fixed; inset:0; z-index: 1000; }
.modal__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.65); }
.modal__card{
  position: relative;
  width: min(92vw, 420px);
  margin: 12vh auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(12,10,20,.92);
  box-shadow: var(--shadow);
  padding: 16px;
}
.input{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  outline:none;
  margin: 10px 0;
}

/* ===========================
   Footer (под твой стиль)
   =========================== */
.footer-bar{
  margin-top: 28px;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(124,58,237,.35), rgba(34,211,238,.18));
  box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
}
.footer-bar__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 16px 16px;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.45;
}
.footer-bar__inner a{ color: rgba(255,255,255,0.95); text-decoration: underline; }
.footer-bar__note{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
}

/* ===========================
   Mobile: burger menu + bottom tabbar
   =========================== */

.tabbar{
  display:none;
}

@media (max-width: 860px){
  .brand{ min-width: 0; }
  .brand h1{ font-size: 15px; }
}

@media (max-width: 720px){
  .menu-btn{ display:inline-block; }

  /* прячем обычные ссылки, открываем как выпадающее меню */
  .links{
    position: fixed;
    left: 12px; right: 12px;
    top: 68px;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(10, 8, 18, .92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav.is-open .links{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .links a{
    width: 100%;
    padding: 12px 12px;
  }

  .total{
    flex-direction: column;
    align-items: stretch;
  }
  .row{
    grid-template-columns: 1.8fr .9fr 1fr auto;
  }
  .hide-sm{ display:none; }

  /* нижняя панель — фишка для телефона */
  .tabbar{
    display:flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 55;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(10, 8, 18, .88);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
  }
  .tabbar a{
    flex: 1;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    font-size: 12px;
    color: rgba(255,255,255,.86);
  }
  .tabbar a.active{
    background: linear-gradient(90deg, rgba(124,58,237,.30), rgba(34,211,238,.18));
    border-color: rgba(255,255,255,.14);
  }

  /* чтобы контент не прятался за нижней панелью */
  .container{ padding-bottom: 92px; }
}

/* =========================
   Главная: карточки игр
   ========================= */

.games-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px){
  .games-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .games-grid{ grid-template-columns: 1fr; }
}

.game-card{
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  display: block;
  isolation: isolate;
  transform: translateZ(0);
}

@media (max-width: 720px){
  .game-card{ min-height: 210px; }
}

.game-card__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
  transition: transform .22s ease;
  z-index: 0;
}

/* запасной красивый фон, если баннер не загрузился */
.game-card.coc .game-card__bg{ background-image: radial-gradient(600px 220px at 20% 0%, rgba(124,58,237,.45), transparent 55%), radial-gradient(600px 220px at 90% 20%, rgba(34,211,238,.25), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); }
.game-card.cr  .game-card__bg{ background-image: radial-gradient(600px 220px at 20% 0%, rgba(34,211,238,.40), transparent 55%), radial-gradient(600px 220px at 90% 20%, rgba(124,58,237,.22), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); }
.game-card.bs  .game-card__bg{ background-image: radial-gradient(600px 220px at 20% 0%, rgba(124,58,237,.35), transparent 55%), radial-gradient(600px 220px at 90% 20%, rgba(34,211,238,.30), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); }

.game-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.40) 55%,
    rgba(0,0,0,.70) 100%
  );
  z-index: 1;
}

.game-card__content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.game-card__top{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
}

.game-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  object-fit: cover;
}

.chip{
  font-size: 12px;
  color: rgba(255,255,255,.88);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.game-card h3{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .2px;
}

.game-card p{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.35;
  max-width: 48ch;
}

.game-card__cta{
  margin-top: 6px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(124,58,237,.55), rgba(34,211,238,.20));
  color: rgba(255,255,255,.95);
  font-weight: 900;
}

.game-card:hover .game-card__bg{ transform: scale(1.12); }
.game-card:hover{ transform: translateY(-2px); transition: transform .18s ease; }
@media (max-width: 720px){
  /* на телефоне ховер не нужен */
  .game-card:hover{ transform:none; }
}

/* =========================
   Мобилка: товары и корзина
   ========================= */

/* товары на страницах игр */
@media (max-width: 720px){
  .product{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .product .actions{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .qty{
    width: 100%;
  }
}

/* корзина: строки компактнее */
@media (max-width: 720px){
  .table .row{
    grid-template-columns: 1fr 110px;
    gap: 10px;
  }
  .table .row > div:nth-child(1){ grid-column: 1 / -1; }
  .table .row > div:nth-child(3){ grid-column: 1 / 2; } /* qty */
  .table .row > div:nth-child(4){ grid-column: 2 / 3; justify-self:end; } /* sum */
  .table .row > div:nth-child(5){ grid-column: 1 / -1; } /* delete btn */
  .table .row > div:nth-child(5) .btn{
    width: 100%;
  }
  .row.header{ display:none; } /* на мобиле шапку таблицы скрываем */
}

.site-footer{
  margin-top: 18px;
}

.site-footer__inner{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  text-align: center;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer__inner a{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
}

.site-footer__note{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
}

.game-icon{
  background: rgba(255,255,255,.10);
}
.game-icon:not([src]), .game-icon[src=""]{
  display:none;
}

/* =========================
   THEME v2 (цвета)
   Просто вставь в конец styles.css
========================= */
:root{
  --bg-0: #070A12;
  --bg-1: #0B1022;
  --bg-2: #0B1A2A;

  --card: rgba(255,255,255,.06);
  --card-2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);

  --accent: #8B5CF6;      /* фиолетовый */
  --accent2: #22D3EE;     /* неоновый голубой */
  --accent3: #34D399;     /* мягкий зелёный */
  --danger: #FB7185;

  --glow: 0 0 30px rgba(139,92,246,.25), 0 0 60px rgba(34,211,238,.12);
}

/* Фон сайта */
html, body{
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(900px 500px at 85% 5%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(800px 700px at 70% 90%, rgba(52,211,153,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
}

/* Общие карточки/панели */
.hero, .card, .product, .table, .modal__card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

/* Шапка */
header{
  background: rgba(0,0,0,.12);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

/* Кнопки */
.btn{
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(139,92,246,.22), rgba(34,211,238,.14));
  box-shadow: var(--glow);
}
.btn.secondary{
  background: rgba(255,255,255,.06);
  box-shadow: none;
}
.btn.danger{
  background: linear-gradient(135deg, rgba(251,113,133,.25), rgba(251,113,133,.12));
}

/* Ссылки в навбаре */
.nav .links a{
  color: var(--text);
  opacity: .9;
}
.nav .links a:hover{
  opacity: 1;
}
.badge, .chip{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

/* Футер если используешь site-footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(62, 12, 96, 0.70), rgba(10, 18, 40, 0.80));
}

/* =========================
   ANIMATIONS (больше движения)
========================= */
*{
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0 rgba(0,0,0,0); }
  50%     { box-shadow: var(--glow); }
}

/* Плавное появление для основных блоков */
.hero, .card, .product, .table, .games-grid, .site-footer{
  animation: fadeUp .55s ease both;
}

/* Навбар: подчёркивание “как в приложениях” */
.nav .links a{
  position: relative;
}
.nav .links a::after{
  content:"";
  position:absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: transform .25s ease;
  opacity: .9;
}
.nav .links a:hover::after{
  transform: scaleX(1);
}

/* Кнопки: микро-анимации */
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.btn:active{
  transform: translateY(0px) scale(.99);
}

/* Карточки игр (если есть game-card): лёгкий “tilt” */
.game-card{
  transform: translateZ(0);
  will-change: transform;
}
.game-card:hover{
  transform: translateY(-4px) scale(1.01);
}
.game-card__bg{
  animation: floaty 6s ease-in-out infinite;
  filter: saturate(1.05) contrast(1.03);
}

/* Пульсация бейджа корзины при обновлении */
.cart-count.pulse{
  animation: glowPulse .45s ease;
}

/* Scroll-reveal (JS добавит классы) */
.reveal{
  opacity: 0;
  transform: translateY(16px);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

/* На всякий случай — уважение к настройке “без анимаций” */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; }
  .reveal{ opacity: 1; transform: none; }
}
