:root{
  --bg:#050711;
  --bg2:#090d1a;
  --card:#0b1020;
  --card2:#11182c;
  --text:#eef3ff;
  --muted:#7f8aa3;
  --line:rgba(170,190,255,.12);
  --brand:#8f7cff;
  --brand2:#43d9ff;
  --warn:#ffd166;
  --shadow:0 26px 80px rgba(0,0,0,.55);
  --radius:22px;
  --radius2:34px;
  --max:1220px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  overflow-x:hidden;
  background:
    radial-gradient(circle at 12% -5%, rgba(67,217,255,.22), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(143,124,255,.25), transparent 30%),
    radial-gradient(circle at 50% 105%, rgba(41,80,255,.16), transparent 35%),
    linear-gradient(180deg,#050711 0%,#070918 48%,#03040a 100%);
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.75), transparent 78%);
}

body:after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.42) 100%);
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:none;color:#fff}
img{max-width:100%;display:block}

.container{
  width:min(var(--max),calc(100% - 32px));
  margin:0 auto;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(22px);
  background:rgba(5,7,17,.68);
  border-bottom:1px solid rgba(170,190,255,.12);
}

.topbar{
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.logo{
  width:46px;
  height:46px;
  border-radius:18px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, rgba(255,255,255,.35) 11%, transparent 23%),
    linear-gradient(135deg,#43d9ff 0%,#8f7cff 52%,#4027a8 100%);
  box-shadow:
    0 0 34px rgba(67,217,255,.23),
    0 0 44px rgba(143,124,255,.19),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.logo:after{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.28);
}

.brand h1{
  font-size:16px;
  line-height:1.15;
  margin:0;
  font-weight:900;
  letter-spacing:.2px;
}

.brand p{
  margin:3px 0 0;
  font-size:12px;
  color:var(--muted);
}

.search{
  flex:1;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 15px;
  border:1px solid rgba(170,190,255,.13);
  background:rgba(10,15,32,.64);
  border-radius:18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 18px 42px rgba(0,0,0,.24);
}

.search:focus-within{
  border-color:rgba(67,217,255,.48);
  box-shadow:
    0 0 0 4px rgba(67,217,255,.08),
    0 18px 42px rgba(0,0,0,.34);
}

.search svg{opacity:.8}

.search input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:var(--text);
  font-size:14px;
}

.search input::placeholder{color:rgba(127,138,163,.75)}

.header-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 13px;
  border-radius:16px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(10,15,32,.58);
  color:var(--text);
  font-size:13px;
  white-space:nowrap;
  user-select:none;
}

.chip strong{color:#43d9ff}

nav.breadcrumbs{
  padding:0 0 13px;
  font-size:12px;
  color:var(--muted);
}

nav.breadcrumbs a{color:var(--muted)}

.layout{
  display:grid;
  grid-template-columns:330px 1fr;
  gap:20px;
  padding:20px 0 38px;
}

aside{
  top:86px;
  align-self:start;
  display:grid;
  gap:18px;
}

.panel{
  background:
    linear-gradient(180deg, rgba(14,20,42,.76), rgba(7,10,24,.72));
  border:1px solid rgba(170,190,255,.12);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.panel .head{
  padding:18px 18px 12px;
  border-bottom:1px solid rgba(170,190,255,.1);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}

.panel .head h2{
  font-size:13px;
  margin:0;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.panel .head span{
  font-size:12px;
  color:var(--muted);
}

.filters{
  padding:16px 18px 18px;
  display:grid;
  gap:14px;
}

.filter-group{
  border:1px solid rgba(170,190,255,.11);
  background:rgba(255,255,255,.035);
  border-radius:20px;
  overflow:hidden;
}

.filter-group button.toggler{
  width:100%;
  border:0;
  background:transparent;
  color:var(--text);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
}

.filter-group button.toggler small{
  color:var(--muted);
  font-weight:600;
}

.filter-body{
  padding:0 14px 14px;
  display:grid;
  gap:9px;
}

.filter-row{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
}

.pill{
  border:1px solid rgba(170,190,255,.12);
  background:rgba(5,7,17,.44);
  color:#dfe6ff;
  padding:8px 11px;
  border-radius:13px;
  font-size:12px;
  cursor:pointer;
  user-select:none;
  transition:.15s ease;
}

.pill:hover{
  transform:translateY(-1px);
  border-color:rgba(67,217,255,.36);
  background:rgba(67,217,255,.08);
}

.pill[aria-pressed="true"]{
  border-color:rgba(143,124,255,.65);
  background:linear-gradient(135deg, rgba(143,124,255,.28), rgba(67,217,255,.12));
  color:#fff;
}

.filters .actions{
  display:flex;
  gap:10px;
}

.btn{
  border:1px solid rgba(170,190,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:11px 13px;
  border-radius:15px;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
  transition:.15s ease;
}

.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(67,217,255,.35);
}

.btn.primary{
  border-color:rgba(143,124,255,.55);
  background:linear-gradient(135deg, rgba(143,124,255,.35), rgba(67,217,255,.18));
}

main{min-width:0}

.hero{
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(170,190,255,.13);
  box-shadow:var(--shadow);
  background:
    radial-gradient(620px 240px at 18% 0%, rgba(67,217,255,.21), transparent 60%),
    radial-gradient(620px 240px at 82% 0%, rgba(143,124,255,.25), transparent 58%),
    linear-gradient(180deg, rgba(14,20,42,.82), rgba(7,10,24,.68));
  position:relative;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.07), transparent 34%, rgba(255,255,255,.025));
}

.hero .inner{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:16px;
  padding:20px;
  align-items:stretch;
  position:relative;
}

.hero h2{
  margin:0;
  font-size:25px;
  letter-spacing:-.45px;
  font-weight:950;
}

.hero p{
  margin:11px 0 0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  max-width:58ch;
}

.hero .quick{
  display:grid;
  gap:10px;
  justify-items:stretch;
}

.stat{
  border:1px solid rgba(170,190,255,.12);
  background:rgba(5,7,17,.34);
  border-radius:22px;
  padding:13px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}

.stat b{font-size:13px}
.stat span{color:var(--muted);font-size:12px}

.stat i{
  font-style:normal;
  color:#43d9ff;
  font-weight:950;
  letter-spacing:.2px;
}

.section{margin-top:16px}

.section-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-end;
  margin:20px 0 12px;
}

.section-head h3{
  margin:0;
  font-size:13px;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.section-head a{
  color:var(--muted);
  font-size:12px;
}

.rail{
  position:relative;
  border:1px solid rgba(170,190,255,.12);
  border-radius:30px;
  overflow:hidden;
  background:rgba(10,15,32,.56);
  box-shadow:var(--shadow);
}

.rail-track{
  display:flex;
  gap:13px;
  padding:15px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.rail-track::-webkit-scrollbar{display:none}

.mini-card{
  min-width:180px;
  max-width:180px;
  scroll-snap-align:start;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(255,255,255,.035);
  position:relative;
  transition:.18s ease;
}

.mini-card:hover{
  transform:translateY(-4px);
  border-color:rgba(67,217,255,.35);
}

.mini-card .thumb{
  aspect-ratio:2/3;
  background:linear-gradient(135deg, rgba(67,217,255,.14), rgba(143,124,255,.18));
  border-bottom:1px solid rgba(170,190,255,.1);
  overflow:hidden;
}

.mini-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.94;
  transform:scale(1.015);
}

.mini-card .meta{
  padding:11px 12px 13px;
  display:grid;
  gap:6px;
}

.mini-card .meta b{
  font-size:13px;
  line-height:1.25;
}

.mini-card .meta span{
  font-size:12px;
  color:var(--muted);
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 9px;
  border-radius:12px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(5,7,17,.35);
  font-size:11px;
  color:var(--muted);
}

.badge.hot{
  border-color:rgba(67,217,255,.42);
  color:#8cecff;
  background:rgba(67,217,255,.1);
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

article.game{
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(170,190,255,.12);
  background:
    linear-gradient(180deg, rgba(14,20,42,.76), rgba(7,10,24,.76));
  box-shadow:var(--shadow);
  display:grid;
  grid-template-rows:auto 1fr;
  min-height:520px;
  cursor:pointer;
  transition:.2s ease;
}

article.game:hover{
  transform:translateY(-6px);
  border-color:rgba(143,124,255,.45);
  box-shadow:
    0 34px 90px rgba(0,0,0,.62),
    0 0 0 1px rgba(67,217,255,.08);
}

.cover{
  position:relative;
  aspect-ratio:2/3;
  background:linear-gradient(135deg, rgba(67,217,255,.14), rgba(143,124,255,.18));
}

.cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.95;
  filter:saturate(1.04) contrast(1.04);
  transform:scale(1.015);
}

.cover .overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,7,17,0) 36%, rgba(5,7,17,.82) 100%);
}

.cover .topline{
  position:absolute;
  left:13px;
  right:13px;
  top:13px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.tagrow{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.corner{
  display:flex;
  gap:8px;
  align-items:center;
  color:rgba(238,243,255,.95);
  font-size:12px;
  padding:7px 10px;
  border-radius:13px;
  border:1px solid rgba(170,190,255,.16);
  background:rgba(5,7,17,.48);
  backdrop-filter:blur(12px);
  white-space:nowrap;
}

.body{
  padding:15px;
  display:grid;
  gap:10px;
}

.title{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.title h4{
  margin:0;
  font-size:16px;
  line-height:1.25;
  font-weight:950;
  letter-spacing:-.2px;
}

.rating{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:13px;
  border:1px solid rgba(67,217,255,.36);
  background:rgba(67,217,255,.1);
  color:#eefdff;
  font-weight:950;
  font-size:12px;
  white-space:nowrap;
}

.desc{
  margin:0;
  color:var(--muted);
  line-height:1.58;
  font-size:13px;
  min-height:42px;
}

ul.info{
  list-style:none;
  padding:10px 0 0;
  margin:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 10px;
  border-top:1px solid rgba(170,190,255,.1);
}

ul.info li{
  font-size:12px;
  color:var(--muted);
  display:flex;
  gap:8px;
  align-items:baseline;
  min-width:0;
}

ul.info li b{
  color:rgba(238,243,255,.95);
  font-weight:900;
  flex:0 0 auto;
}

ul.info li span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  min-width:0;
}

.cta{
  margin-top:auto;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid rgba(170,190,255,.1);
  padding-top:10px;
}

.download{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 13px;
  border-radius:16px;
  font-weight:950;
  font-size:13px;
  border:1px solid rgba(67,217,255,.48);
  background:linear-gradient(135deg, rgba(67,217,255,.28), rgba(143,124,255,.3));
  color:#fff;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  box-shadow:0 14px 34px rgba(67,217,255,.12);
  transition:.16s ease;
}

.download:hover{
  transform:translateY(-1px);
  border-color:rgba(67,217,255,.7);
  box-shadow:0 18px 42px rgba(67,217,255,.18);
}

.meta-actions{
  display:flex;
  gap:10px;
  color:var(--muted);
  font-size:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  text-align:right;
}

.meta-actions .m{
  display:inline-flex;
  gap:6px;
  align-items:center;
  padding:7px 10px;
  border-radius:13px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(5,7,17,.34);
}

.pagination{
  margin-top:16px;
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
}

.pagebtn{
  min-width:40px;
  padding:10px 14px;
  border-radius:15px;
  border:1px solid rgba(170,190,255,.14);
  background:rgba(10,15,32,.56);
  color:var(--text);
  cursor:pointer;
  font-weight:900;
}

.pagebtn[aria-current="page"]{
  border-color:rgba(143,124,255,.58);
  background:linear-gradient(135deg, rgba(143,124,255,.32), rgba(67,217,255,.13));
}

footer{
  border-top:1px solid rgba(170,190,255,.1);
  background:rgba(3,4,10,.72);
  padding:28px 0;
  color:var(--muted);
}

footer h5{
  margin:0 0 10px;
  color:rgba(238,243,255,.94);
  font-size:13px;
  letter-spacing:.2px;
}

footer p,
footer a{
  margin:0;
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
}

.top-sidebar{
  padding:12px 14px 16px;
  display:grid;
  gap:11px;
}

.top-item{
  display:flex;
  gap:11px;
  align-items:stretch;
  border-radius:20px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(255,255,255,.035);
  overflow:hidden;
  transition:.16s ease;
}

.top-item:hover{
  transform:translateX(3px);
  border-color:rgba(67,217,255,.34);
}

.top-item-thumb{
  flex:0 0 72px;
  aspect-ratio:2/3;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(67,217,255,.14), rgba(143,124,255,.18));
}

.top-item-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.95;
}

.top-item-body{
  display:grid;
  padding:9px 11px 9px 0;
  gap:4px;
  align-content:center;
}

.top-item-body b{
  font-size:13px;
  line-height:1.3;
}

.top-item-body span{
  font-size:11px;
  color:var(--muted);
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}

.ss-lightbox{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  padding:18px;
  z-index:9999;
  background:rgba(2,3,8,.84);
  backdrop-filter:blur(10px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}

.ss-lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}

.ss-lightbox-inner{
  max-width:min(1200px,calc(100vw - 36px));
  max-height:calc(100vh - 36px);
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(170,190,255,.16);
  box-shadow:0 32px 90px rgba(0,0,0,.72);
  background:rgba(7,10,24,.94);
}

.ss-lightbox-inner img{
  width:100%;
  height:100%;
  max-height:calc(100vh - 36px);
  object-fit:contain;
  display:block;
}

.ss-lightbox-hint{
  position:fixed;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  font-size:12px;
  color:rgba(238,243,255,.76);
  background:rgba(7,10,24,.72);
  border:1px solid rgba(170,190,255,.14);
  padding:8px 11px;
  border-radius:999px;
  user-select:none;
}

@media (max-width:1100px){
  .layout{grid-template-columns:1fr}
  aside{position:relative;top:auto}
  .grid{grid-template-columns:1fr}
  .hero .inner{grid-template-columns:1fr}
  .brand{min-width:auto}
}

@media (max-width:560px){
  .container{
    width:min(var(--max),calc(100% - 24px));
  }

  .topbar{
    gap:10px;
  }

  .chip{
    display:none;
  }

  article.game{
    min-height:0;
  }

  ul.info{
    grid-template-columns:1fr;
  }

  .panel,
  .hero,
  .rail,
  article.game{
    border-radius:24px;
  }
}

:root{
  --radius:8px;
  --radius2:12px;
}

/* Общая геометрия: меньше округлости */
.panel,
.hero,
.rail,
article.game,
.mini-card,
.filter-group,
.stat,
.top-item,
.search,
.chip,
.btn,
.pagebtn,
.download,
.rating,
.corner,
.badge,
.meta-actions .m{
  border-radius:10px;
}

/* Более строгий header */
header{
  border-bottom:1px solid rgba(170,190,255,.14);
}

.logo{
  border-radius:12px;
}

.logo:after{
  border-radius:8px;
}

/* Компоновка: сайдбар уже, контент шире */
.layout{
  grid-template-columns:290px 1fr;
  gap:24px;
}

/* Hero теперь больше как промо-блок, а не обычная карточка */
.hero{
  border-radius:8px;
}

.hero .inner{
  grid-template-columns:1fr 320px;
  padding:28px;
}

.hero h2{
  font-size:32px;
  line-height:1.08;
}

.hero p{
  font-size:15px;
  max-width:62ch;
}

/* Правая колонка hero плотнее и аккуратнее */
.hero .quick{
  align-content:start;
}

.stat{
  border-radius:8px;
  padding:14px 15px;
}

/* Сайдбар становится более “панельным” */
.panel{
  border-radius:8px;
}

.panel .head{
  padding:15px 16px 11px;
}

.filters{
  padding:14px 16px 16px;
}

.filter-group{
  border-radius:8px;
}

/* Фильтры меньше похожи на чипсы */
.pill{
  border-radius:6px;
  padding:8px 10px;
}

/* Сетка карточек: более журнальная */
.grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

article.game{
  border-radius:8px;
  min-height:auto;
}

/* Карточка игры теперь не “капсула”, а строгий постер */
.cover{
  aspect-ratio:3 / 4.15;
}

.cover .topline{
  left:10px;
  right:10px;
  top:10px;
}

.body{
  padding:16px;
  gap:12px;
}

.title h4{
  font-size:17px;
}

.desc{
  min-height:auto;
}

/* Инфо блок — более табличный */
ul.info{
  grid-template-columns:1fr;
  gap:7px;
}

ul.info li{
  justify-content:space-between;
  gap:12px;
}

ul.info li b{
  color:#b8c4dd;
}

ul.info li span{
  text-align:right;
}

/* CTA — кнопка заметнее */
.cta{
  align-items:stretch;
  flex-direction:column;
}

.download{
  width:100%;
  border-radius:8px;
  padding:12px 14px;
}

.meta-actions{
  justify-content:space-between;
  text-align:left;
}

.meta-actions .m{
  border-radius:8px;
}

/* Горизонтальная лента — меньше округлости, больше плотности */
.rail{
  border-radius:12px;
}

.rail-track{
  gap:14px;
  padding:16px;
}

.mini-card{
  border-radius:8px;
}

.mini-card .thumb{
  aspect-ratio:3 / 4.15;
}

/* Топ в сайдбаре — строгий список */
.top-sidebar{
  padding:10px 12px 14px;
}

.top-item{
  border-radius:8px;
}

.top-item-thumb{
  flex:0 0 64px;
  aspect-ratio:3 / 4.15;
}

/* Пагинация — квадратнее */
.pagination{
  gap:7px;
}

.pagebtn{
  border-radius:8px;
}

/* Lightbox */
.ss-lightbox-inner{
  border-radius:8px;
}

.ss-lightbox-hint{
  border-radius:8px;
}

/* Адаптив */
@media (max-width:1100px){
  .layout{
    grid-template-columns:1fr;
  }

  .grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .hero .inner{
    grid-template-columns:1fr;
  }
}

@media (max-width:700px){
  .grid{
    grid-template-columns:1fr;
  }

  .hero .inner{
    padding:20px;
  }

  .hero h2{
    font-size:25px;
  }
}

.navigation{
  margin-top:22px;
  display:flex;
  justify-content:center;
}

.navigation .pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(7,10,24,.58);
  box-shadow:0 18px 55px rgba(0,0,0,.38);
}

.navigation .pagination a,
.navigation .pagination span{
  min-width:38px;
  height:38px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(5,7,17,.48);
  color:#dfe6ff;
  font-size:13px;
  font-weight:900;
  line-height:1;
  text-decoration:none;
  transition:.16s ease;
}

.navigation .pagination a:hover{
  transform:translateY(-1px);
  border-color:rgba(67,217,255,.42);
  background:rgba(67,217,255,.10);
  color:#fff;
  box-shadow:0 12px 30px rgba(67,217,255,.12);
}

.navigation .pagination .current{
  border-color:rgba(67,217,255,.58);
  background:linear-gradient(135deg, rgba(67,217,255,.28), rgba(143,124,255,.34));
  color:#fff;
  box-shadow:0 14px 34px rgba(67,217,255,.14);
}

.navigation .pagination .dots{
  min-width:28px;
  padding:0 4px;
  border-color:transparent;
  background:transparent;
  color:var(--muted);
  box-shadow:none;
}

@media (max-width:560px){
  .navigation{
    margin-top:16px;
  }

  .navigation .pagination{
    gap:6px;
    padding:8px;
    max-width:100%;
    overflow-x:auto;
    justify-content:flex-start;
  }

  .navigation .pagination a,
  .navigation .pagination span{
    min-width:34px;
    height:34px;
    padding:0 10px;
    font-size:12px;
    flex:0 0 auto;
  }
}