/* =========================
   AniLight Live2D — Premium Black UI
   ========================= */

:root{
  --anl2d-z: 1400;

  --anl2d-bg: rgba(8, 8, 12, .92);
  --anl2d-bg-2: rgba(14, 14, 20, .96);
  --anl2d-bg-3: rgba(255,255,255,.04);

  --anl2d-line: rgba(255,255,255,.08);
  --anl2d-line-2: rgba(255,255,255,.14);
  --anl2d-line-3: rgba(139,92,246,.22);

  --anl2d-text: rgba(255,255,255,.94);
  --anl2d-text-2: rgba(255,255,255,.76);
  --anl2d-text-3: rgba(255,255,255,.52);

  --anl2d-accent: #8b5cf6;
  --anl2d-accent-2: #6d28d9;
  --anl2d-danger: #ef4444;

  --anl2d-shadow:
    0 24px 80px rgba(0,0,0,.48),
    0 8px 24px rgba(0,0,0,.32);

  --anl2d-shadow-soft:
    0 14px 34px rgba(0,0,0,.28);

  --anl2d-radius-xl: 26px;
  --anl2d-radius-lg: 18px;
  --anl2d-radius-md: 14px;
  --anl2d-radius-sm: 12px;

  --anl2d-ease: cubic-bezier(.2,.8,.2,1);
}

/* root */
.anl2d{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 244px;
  z-index: var(--anl2d-z);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  isolation: isolate;
}

.anl2d.is-hidden{
  display: none !important;
}

.anl2d.is-collapsed{
  width: 108px;
}

/* stage */
.anl2d__stage{
  position: relative;
  width: 244px;
  height: 352px;
  pointer-events: auto;
  overflow: visible;
}

.anl2d.is-collapsed .anl2d__stage{
  width: 108px;
  height: 152px;
}

/* subtle shell */
.anl2d__stage::before{
  content:"";
  position:absolute;
  inset: 8px 4px 0 4px;
  border-radius: 28px;
  background:
    radial-gradient(120px 90px at 50% 16%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.05);
  box-shadow: var(--anl2d-shadow-soft);
  pointer-events: none;
}

.anl2d.is-collapsed .anl2d__stage::before{
  border-radius: 22px;
}

/* canvas */
.anl2d__canvas{
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--anl2d-radius-xl);
  background: transparent;
  pointer-events: auto;
}

/* controls */
.anl2d__controls{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 30;
  display: grid;
  grid-auto-flow: row;
  gap: 8px;
  pointer-events: auto;
}

.anl2d.is-collapsed .anl2d__controls{
  top: 8px;
  right: 8px;
  gap: 6px;
}

.anl2d__btn{
  appearance: none;
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--anl2d-line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(20,20,28,.96), rgba(8,8,12,.98)) !important;
  color: var(--anl2d-text-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow:
    0 10px 26px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .16s var(--anl2d-ease),
    background .16s var(--anl2d-ease),
    border-color .16s var(--anl2d-ease),
    color .16s var(--anl2d-ease),
    box-shadow .16s var(--anl2d-ease),
    opacity .16s var(--anl2d-ease);
  -webkit-tap-highlight-color: transparent;
}

.anl2d__btn:hover{
  transform: translateY(-1px);
  color: var(--anl2d-text);
  border-color: var(--anl2d-line-2);
  background:
    linear-gradient(180deg, rgba(28,28,36,.98), rgba(10,10,16,.98));
  box-shadow:
    0 14px 32px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.anl2d__btn:active{
  transform: scale(.97);
}

.anl2d__btn:focus-visible{
  outline: none;
  border-color: rgba(139,92,246,.32);
  box-shadow:
    0 0 0 4px rgba(139,92,246,.18),
    0 14px 32px rgba(0,0,0,.34);
}

.anl2d__btn--danger:hover{
  border-color: rgba(239,68,68,.24);
  color: #fff;
  box-shadow:
    0 14px 32px rgba(0,0,0,.34),
    0 0 0 1px rgba(239,68,68,.16) inset;
}

.anl2d__btn.is-active{
  color: #fff;
  border-color: rgba(139,92,246,.28);
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(139,92,246,.28), transparent 60%),
    linear-gradient(180deg, rgba(24,20,34,.98), rgba(10,8,16,.98));
  box-shadow:
    0 16px 34px rgba(0,0,0,.34),
    0 0 0 1px rgba(139,92,246,.14) inset;
}

/* icons */
.anl2d__icon{
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  pointer-events: none;
}

/* bubble */
.anl2d__bubble{
  position: absolute;
  left: 0;
  bottom: 144px;
  min-width: 226px;
  max-width: 340px;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transform-origin: left bottom;
  transition:
    opacity .2s var(--anl2d-ease),
    transform .2s var(--anl2d-ease);
  pointer-events: none;
  z-index: 20;
}

.anl2d__bubble.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.anl2d__bubbleInner{
  position: relative;
  padding: 14px 14px 13px;
  border-radius: 18px;
  background:
    radial-gradient(140px 60px at 18% 0%, rgba(139,92,246,.12), transparent 60%),
    linear-gradient(180deg, rgba(16,16,22,.96), rgba(10,10,14,.98));
  border: 1px solid var(--anl2d-line);
  box-shadow: var(--anl2d-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.anl2d__bubbleInner::after{
  content:"";
  position:absolute;
  left: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: rgba(10,10,14,.98);
  border-right: 1px solid var(--anl2d-line);
  border-bottom: 1px solid var(--anl2d-line);
  transform: rotate(45deg);
}

.anl2d__btn,
.anl2d__showBtn{
  touch-action: manipulation;
}

.anl2d__canvas{
  touch-action: none;
}

@media (max-width: 768px){
  .anl2d{
    overflow: visible;
  }

  .anl2d__stage{
    overflow: visible;
  }

  .anl2d__bubble{
    min-width: 0;
    width: min(220px, calc(100vw - 20px));
    max-width: min(220px, calc(100vw - 20px));
    bottom: calc(100% + 10px);
    z-index: 50;
  }

  .anl2d__bubbleInner{
    padding: 10px 11px 10px;
    border-radius: 14px;
  }

  .anl2d__bubbleInner::after{
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) rotate(45deg);
  }

  .anl2d__bubbleName{
    font-size: 10px;
    margin-bottom: 4px;
  }

  .anl2d__bubbleText{
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
  }
}

.anl2d__bubbleName{
  margin-bottom: 6px;
  color: var(--anl2d-text);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.anl2d__bubbleText{
  color: var(--anl2d-text-2);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  word-break: break-word;
}

/* show button */
.anl2d__showBtn{
  appearance: none;
  -webkit-appearance: none;
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: calc(var(--anl2d-z) + 100);
  width: 60px;
  height: 60px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(80% 80% at 28% 20%, rgba(139,92,246,.32), transparent 62%),
    linear-gradient(180deg, rgba(22,22,30,.98), rgba(8,8,12,.98));
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  box-shadow:
    0 18px 40px rgba(0,0,0,.42),
    0 0 0 1px rgba(139,92,246,.12) inset;
  transition:
    transform .16s var(--anl2d-ease),
    border-color .16s var(--anl2d-ease),
    box-shadow .16s var(--anl2d-ease),
    opacity .16s var(--anl2d-ease);
  isolation: isolate;
}

.anl2d__showBtn:hover{
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 46px rgba(0,0,0,.46),
    0 0 0 1px rgba(139,92,246,.18) inset;
}

.anl2d__showBtn:active{
  transform: scale(.97);
}

.anl2d__showBtn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(139,92,246,.18),
    0 22px 46px rgba(0,0,0,.46);
}

.anl2d__icon--show{
  width: 28px;
  height: 28px;
  display:block;
  pointer-events:none;
}

/* dragging */
.anl2d.is-dragging{
  cursor: grabbing;
}

.anl2d.is-dragging .anl2d__stage{
  cursor: grabbing;
}

/* mobile */
@media (max-width: 1024px){
  .anl2d{
    width: 208px;
    right: 14px;
    bottom: 14px;
  }

  .anl2d__stage{
    width: 208px;
    height: 300px;
  }

  .anl2d.is-collapsed{
    width: 96px;
  }

  .anl2d.is-collapsed .anl2d__stage{
    width: 96px;
    height: 138px;
  }

  .anl2d__bubble{
    min-width: 210px;
    max-width: 290px;
  }
}

@media (max-width: 768px){
  .anl2d{
    width: 176px;
    right: 10px;
    bottom: 10px;
  }

  .anl2d__stage{
    width: 176px;
    height: 246px;
  }

  .anl2d.is-collapsed{
    width: 86px;
  }

  .anl2d.is-collapsed .anl2d__stage{
    width: 86px;
    height: 118px;
  }

  .anl2d__controls{
    top: 8px;
    right: 8px;
    gap: 6px;
  }

  .anl2d__btn{
    width: 34px;
    height: 34px;
  }

  .anl2d__icon{
    width: 15px;
    height: 15px;
  }

  .anl2d__bubble{
    min-width: 184px;
    max-width: 250px;
    bottom: 110px;
  }

  .anl2d__bubbleInner{
    padding: 12px 12px 11px;
    border-radius: 16px;
  }

  .anl2d__bubbleText{
    font-size: 12px;
  }

  .anl2d__showBtn{
    left: 10px;
    bottom: 10px;
    width: 54px;
    height: 54px;
  }

  .anl2d__icon--show{
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce){
  .anl2d__btn,
  .anl2d__showBtn,
  .anl2d__bubble{
    transition: none !important;
  }
}

/////////////////// ДОСТИЖЕНИЯ ///////////////
/* =========================
   ACHIEVEMENT TOAST
========================= */

.achtoast-stack{
  position: fixed;
  top: 86px;
  right: 20px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.achtoast{
  width: min(420px, calc(100vw - 24px));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.achtoast__top{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(167,139,250,.14), rgba(255,255,255,.02));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.achtoast__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: rgba(233,213,255,1);
}

.achtoast__eyebrowDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgb(167,139,250);
  box-shadow: 0 0 0 4px rgba(167,139,250,.18);
}

.achtoast__close{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.achtoast__close:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.achtoast__body{
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.achtoast__media{
  flex: 0 0 auto;
}

.achtoast__icon{
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 30% 30%, rgba(167,139,250,.24), transparent 58%),
    rgba(255,255,255,.04);
}

.achtoast__main{
  min-width: 0;
  flex: 1;
}

.achtoast__title{
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.achtoast__tier{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(233,213,255,1);
}

.achtoast__text{
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
}

.achtoast__meta{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.achtoast__chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.achtoast__foot{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.achtoast__link,
.achtoast__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.achtoast__link:hover,
.achtoast__btn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.achtoast__btn--primary{
  border-color: rgba(167,139,250,.25);
  background: rgba(167,139,250,.12);
  color: rgba(233,213,255,1);
}

.achtoast__btn--primary:hover{
  background: rgba(167,139,250,.18);
  border-color: rgba(167,139,250,.35);
}

@media (max-width: 640px){
  .achtoast-stack{
    top: 74px;
    right: 12px;
    left: 12px;
  }

  .achtoast{
    width: 100%;
  }

  .achtoast__body{
    align-items: center;
  }

  .achtoast__icon{
    width: 64px;
    height: 64px;
  }

  .achtoast__foot{
    flex-direction: column;
    align-items: stretch;
  }
}
/////////////////ДОСТИЖЕНИЯ ///////////////////
///////////////// ПРОФИЛЬ ДОСТИЖЕНИЯ///////////////
.anlBodyLock{
    overflow:hidden;
}

.anla-page{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:20px 16px 36px;
}

.anla-shell{
    position:relative;
    border-radius:22px;
    overflow:hidden;
}

.anla-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:18px 18px 16px;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.anla-head__left{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.anla-head__titleBox{
    min-width:0;
}

.anla-back{
    width:36px;
    height:36px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.06);
    transition:.2s ease;
    flex:none;
}

.anla-back:hover{
    background:rgba(255,255,255,.1);
    transform:translateY(-1px);
}

.anla-title{
    margin:0;
    color:#fff;
    font-size:31px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-.03em;
}

.anla-title span{
    color:rgba(255,255,255,.58);
    font-size:.58em;
    font-weight:700;
}

.anla-head__right{
    flex:none;
}

.anla-switch{
    display:inline-flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    user-select:none;
}

.anla-switch input{
    display:none;
}

.anla-switch__ui{
    width:42px;
    height:24px;
    border-radius:999px;
    position:relative;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    transition:.22s ease;
    box-shadow:inset 0 1px 3px rgba(0,0,0,.3);
}

.anla-switch__ui::after{
    content:"";
    position:absolute;
    top:2px;
    left:2px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#fff;
    transition:.22s ease;
    box-shadow:0 4px 10px rgba(0,0,0,.25);
}

.anla-switch input:checked + .anla-switch__ui{
    background:linear-gradient(90deg, #557bff 0%, #6d5dff 100%);
    border-color:rgba(109,93,255,.5);
}

.anla-switch input:checked + .anla-switch__ui::after{
    transform:translateX(18px);
}

.anla-switch__text{
    color:rgba(255,255,255,.84);
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}

.anla-content{
    padding:10px 14px 18px;
}

.anla-group + .anla-group{
    margin-top:18px;
    padding-top:18px;
    border-top:1px dashed rgba(255,255,255,.08);
}

.anla-group__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:12px;
    padding:0 2px;
}

.anla-group__title{
    margin:0;
    display:flex;
    align-items:baseline;
    gap:6px;
    color:#fff;
    font-size:17px;
    font-weight:800;
    letter-spacing:-.01em;
}

.anla-group__title span{
    color:rgba(255,255,255,.5);
    font-size:.88em;
    font-weight:700;
}

.anla-grid{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:16px;
}

.anla-card{
    appearance:none;
    border:none;
    text-align:left;
    width:100%;
    overflow:hidden;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(13,14,20,.98) 0%, rgba(20,21,29,.98) 100%);
    border:1px solid rgba(255,255,255,.08);
    padding:0;
    cursor:pointer;
    transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease, opacity .22s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.anla-card:hover{
    transform:translateY(-3px);
    border-color:rgba(102,122,255,.35);
    box-shadow:0 18px 40px rgba(0,0,0,.3);
}

.anla-card--locked{
    opacity:.42;
    filter:saturate(.72);
}

.anla-card--locked:hover{
    opacity:.62;
}

.anla-card__art{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
    background: radial-gradient(circle at center, rgb(191 93 255 / 10%), transparent 55%), linear-gradient(180deg, rgb(14 14 14 / 98%) 0%, rgb(13 14 14 / 98%) 100%);
}

.anla-card__art img{
    width:100%;
    height:100%;
    object-fit:contain;
    image-rendering:auto;
    filter:drop-shadow(0 8px 20px rgba(0,0,0,.28));
}

.anla-card__body{
    padding:14px 14px 12px;
    background: linear-gradient(180deg, rgb(12 13 13) 0%, rgb(44 34 58 / 98%) 100%);
    min-height:108px;
    display:flex;
    flex-direction:column;
}

.anla-card__title{
    margin:0 0 10px;
    color:#fff;
    font-size:15px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:-.01em;
    min-height:38px;
}

.anla-card__rewardLabel{
    margin-top:auto;
    margin-bottom:6px;
    font-size:12px;
    font-weight:800;
    color:rgba(255,255,255,.54);
    text-transform:uppercase;
    letter-spacing:.05em;
}

.anla-card__rewards,
.anla-modal__rewards{
    display:flex;
    align-items:center;
    gap:18px;
}

.anla-reward{
    display:flex;
    align-items:center;
    gap:6px;
    color:#fff;
    font-size:14px;
    font-weight:800;
}

.anla-reward__icon{
    width:22px;
    height:22px;
    border-radius:7px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:none;
    overflow:hidden;
    font-size:12px;
    font-weight:900;
}

.anla-reward__icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.anla-reward__icon--xp{
    background:linear-gradient(180deg, rgba(93, 183, 109, .18), rgba(93, 183, 109, .08));
    color:#9effa3;
    border:1px solid rgba(133,255,145,.18);
}

.anla-reward__icon--coins{
    background:linear-gradient(180deg, rgba(255, 190, 67, .2), rgba(255, 190, 67, .08));
    border:1px solid rgba(255, 194, 88, .18);
}

.anla-empty{
    padding:24px;
    border-radius:18px;
    background:rgba(255,255,255,.03);
    border:1px dashed rgba(255,255,255,.08);
    color:rgba(255,255,255,.72);
}

.anla-modal{
    position:fixed;
    inset:0;
    z-index:1200;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
}

.anla-modal__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(6px);
}

.anla-modal__dialog{
    position:relative;
    z-index:1;
    width:100%;
    max-width:430px;
}

.anla-modal__box{
    overflow:hidden;
    border-radius:22px;
        background: linear-gradient(180deg, rgb(47 47 47 / 52%) 0%, rgb(10 10 10 / 98%) 100%);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 28px 80px rgba(0,0,0,.48);
}

.anla-modal__hero{
    position:relative;
    min-height:168px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px 54px 10px;
}

.anla-modal__sparkles{
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.55;
    background-image:
        radial-gradient(circle at 18% 28%, rgba(255,255,255,.9) 0 2px, transparent 3px),
        radial-gradient(circle at 76% 22%, rgba(255,255,255,.8) 0 2px, transparent 3px),
        radial-gradient(circle at 28% 66%, rgba(255,255,255,.75) 0 2px, transparent 3px),
        radial-gradient(circle at 86% 60%, rgba(255,255,255,.75) 0 1.8px, transparent 3px),
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.9) 0 3px, transparent 4px);
}

.anla-modal__center{
    text-align:center;
}

.anla-modal__img{
    width:232px;
    height:232px;
    object-fit:contain;
    display:block;
    margin:0 auto 10px;
    filter:drop-shadow(0 10px 25px rgba(0,0,0,.3));
}

.anla-modal__title{
    margin:0;
    color:#fff;
    font-size:18px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-.02em;
}

.anla-modal__subtitle{
    margin-top:4px;
    color:rgba(255,255,255,.86);
    font-size:14px;
    font-weight:700;
}

.anla-modal__nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:none;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    cursor:pointer;
    transition:.2s ease;
}

.anla-modal__nav:hover{
    background:rgba(255,255,255,.1);
}

.anla-modal__nav--left{
    left:14px;
}

.anla-modal__nav--right{
    right:14px;
}

.anla-modal__content{
    padding:0 18px 18px;
}

.anla-progress{
    width:100%;
    height:7px;
    border-radius:999px;
    overflow:hidden;
    background:rgba(255,255,255,.06);
    margin-top:4px;
}

.anla-progress span{
    display:block;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg, #7a6dff 0%, #5a86ff 100%);
    box-shadow:0 0 16px rgba(90,134,255,.45);
}

.anla-progressMeta{
    margin-top:8px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    color:rgba(255,255,255,.72);
    font-size:13px;
    font-weight:700;
}

.anla-modal__chips{
    margin-top:14px;
    display:flex;
    justify-content:center;
}

.anla-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:28px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.anla-modal__desc{
    margin:16px 0 0;
    text-align:center;
    color:rgba(255,255,255,.92);
    font-size:16px;
    line-height:1.45;
    font-weight:500;
}

.anla-modal__rewardTitle{
    margin-top:14px;
    text-align:center;
    color:rgba(255,255,255,.55);
    font-size:12px;
    line-height:1;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.anla-modal__rewards{
    margin-top:10px;
    justify-content:center;
}

.anla-modal__close{
    margin-top:14px;
    width:100%;
    height:36px;
    border:none;
    border-radius:11px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:.2s ease;
}

.anla-modal__close:hover{
    background:rgba(255,255,255,.12);
}

.anla-strip{
    margin-top:18px;
    padding:14px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    background: radial-gradient(circle at top left, rgb(30 18 51 / 0%), transparent 36%), linear-gradient(180deg, rgb(39 39 39 / 20%) 0%, rgb(12 13 18 / 0%) 100%);
    box-shadow:0 16px 40px rgba(0,0,0,.18);
}

.anla-strip__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:12px;
}

.anla-strip__title{
    display:flex;
    align-items:center;
    gap:8px;
}

.anla-strip__title h3{
    margin:0;
    color:#fff;
    font-size:17px;
    font-weight:800;
    letter-spacing:-.01em;
}

.anla-strip__title span{
    color:rgba(255,255,255,.55);
    font-size:15px;
    font-weight:800;
}

.anla-strip__link{
    height:34px;
    padding:0 12px;
    border-radius:11px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#fff;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.07);
    transition:.2s ease;
}

.anla-strip__link:hover{
    background:rgba(255,255,255,.1);
}

.anla-strip__rail{
    display:flex;
    align-items:center;
    gap:10px;
    overflow-x:auto;
    scrollbar-width:none;
}

.anla-strip__rail::-webkit-scrollbar{
    display:none;
}

.anla-strip__badge{
    width:75px;
    height:75px;
    border-radius:14px;
    flex:none;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    transition:.2s ease;
}

.anla-strip__badge:hover{
    transform:translateY(-2px);
    border-color:rgba(109,93,255,.34);
}

.anla-strip__badge img{
    width:78%;
    height:78%;
    object-fit:contain;
    display:block;
}

@media (max-width: 1180px){
    .anla-grid{
        grid-template-columns:repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 920px){
    .anla-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }

    .anla-title{
        font-size:26px;
    }
}

@media (max-width: 640px){
    .anla-page{
        padding:12px 10px 24px;
    }

    .anla-head{
        padding:14px 12px;
        align-items:flex-start;
        flex-direction:column;
    }

    .anla-head__right{
        width:100%;
    }

    .anla-switch{
        justify-content:flex-end;
        width:100%;
    }

    .anla-content{
        padding:10px 10px 14px;
    }

    .anla-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
    }

    .anla-card__art{
        height:132px;
        padding:12px;
    }

    .anla-card__body{
        padding:12px;
        min-height:104px;
    }

    .anla-card__title{
        font-size:14px;
        min-height:34px;
    }

    .anla-title{
        font-size:22px;
    }

    .anla-modal__dialog{
        max-width:100%;
    }

    .anla-modal__hero{
        padding:26px 44px 8px;
        min-height:156px;
    }

    .anla-modal__img{
        width:100px;
        height:100px;
    }
}

@media (max-width: 420px){
    .anla-grid{
        grid-template-columns:1fr 1fr;
    }

    .anla-card__art{
        height:118px;
    }

    .anla-card__title{
        font-size:13px;
    }

    .anla-reward{
        font-size:13px;
    }
}

.anlBodyLock{
    overflow:hidden;
}

.anla-progress{
    width:100%;
    height:7px;
    border-radius:999px;
    overflow:hidden;
    background:rgba(255,255,255,.06);
    margin-top:4px;
}

.anla-progress span{
    display:block;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg, #7a6dff 0%, #5a86ff 100%);
    box-shadow:0 0 16px rgba(90,134,255,.45);
}

.anla-progressMeta{
    margin-top:8px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    color:rgba(255,255,255,.72);
    font-size:13px;
    font-weight:700;
}
///////////////// ПРОФИЛЬ ДОСТИЖЕНИЯ///////////////
///////////////НОВОСТИ ЕЩЕ////////////////////////

.anxArticleProgress{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255,255,255,.28);
}

/* page */

.anxArticlePage{
  position: relative;
  padding: 24px 0 40px;
  color: #fff;
}

.anxArticleLayout{
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.anxArticleMain{
  min-width: 0;
}

.anxArticleSidebar{
  min-width: 0;
  position: sticky;
  top: 24px;
}

/* article shell */

.anxArticle{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.018) 100%);
  box-shadow:
    0 24px 64px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* hero */

.anxArticleHero{
  padding: 34px 34px 26px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.anxArticleHero__meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -.01em;
}

.anxArticleHero__pill{
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 8px 22px rgba(0,0,0,.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.anxArticleHero__sep{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
  flex: 0 0 auto;
}

.anxArticleHero__title{
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: .98;
  font-weight: 1000;
  letter-spacing: -.06em;
  max-width: 980px;
  text-wrap: balance;
}

.anxArticleHero__lead{
  margin: 18px 0 0;
  max-width: 900px;
  color: rgba(255,255,255,.74);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  font-weight: 500;
}

/* cover */

.anxArticleCover{
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #090909;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.anxArticleCover::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 100%);
}

.anxArticleCover img{
  width: 100%;
  max-height: 300px;
  display: block;
  object-fit: cover;
  filter: grayscale(.03) contrast(1.04) brightness(.92);
}

/* article body */

.anxArticleBody{
  padding: 36px 34px 38px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.anxArticleBody > *:first-child{
  margin-top: 0 !important;
}

.anxArticleBody > *:last-child{
  margin-bottom: 0 !important;
}

.anxArticleBody h2,
.anxArticleBody h3,
.anxArticleBody h4{
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.15;
  font-weight: 950;
}

.anxArticleBody h2{
  margin: 2.2em 0 .7em;
  font-size: clamp(24px, 2vw, 34px);
}

.anxArticleBody h3{
  margin: 2em 0 .7em;
  font-size: clamp(20px, 1.6vw, 28px);
}

.anxArticleBody h4{
  margin: 1.8em 0 .6em;
  font-size: clamp(18px, 1.3vw, 22px);
}

.anxArticleBody p{
  margin: 1.15em 0;
}

.anxArticleBody strong,
.anxArticleBody b{
  color: #fff;
  font-weight: 850;
}

.anxArticleBody em{
  color: rgba(255,255,255,.86);
}

.anxArticleBody a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: border-color .18s ease, opacity .18s ease;
}

.anxArticleBody a:hover{
  border-color: rgba(255,255,255,.56);
  opacity: 1;
}

.anxArticleBody ul,
.anxArticleBody ol{
  margin: 1.3em 0 1.3em 0;
  padding-left: 1.35em;
}

.anxArticleBody li{
  margin: .6em 0;
}

.anxArticleBody blockquote{
  margin: 1.8em 0;
  padding: 18px 18px 18px 20px;
  border-left: 2px solid rgba(255,255,255,.18);
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 14px 30px rgba(0,0,0,.20);
}

.anxArticleBody img{
  width: 100%;
  height: auto;
  display: block;
  margin: 1.8em 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.anxArticleBody figure{
  margin: 1.8em 0;
}

.anxArticleBody figure img{
  margin: 0;
}

.anxArticleBody figcaption{
  margin-top: 10px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.anxArticleBody hr{
  margin: 2.2em 0;
  border: 0;
  height: 1px;
  background: rgba(255,255,255,.09);
}

.anxArticleBody table{
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

.anxArticleBody table th,
.anxArticleBody table td{
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.5;
}

.anxArticleBody table th{
  color: #fff;
  font-weight: 800;
  background: rgba(255,255,255,.03);
}

.anxArticleBody pre{
  margin: 1.8em 0;
  padding: 18px;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0b0b0b;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.7;
}

.anxArticleBody code{
  font-size: .94em;
  padding: .18em .4em;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #fff;
}

.anxArticleBody pre code{
  padding: 0;
  background: transparent;
}

/* block titles */

.anxArticleBlockTitle{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.anxArticleBlockTitle__line{
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.22);
  flex: 0 0 auto;
}

.anxArticleBlockTitle h2{
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
}

/* tags */

.anxArticleTagsBlock{
  padding: 0 34px 34px;
}

.anxArticleTags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.anxArticleTag{
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 10px 24px rgba(0,0,0,.18);
  font-size: 13px;
  font-weight: 750;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.anxArticleTag:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 14px 28px rgba(0,0,0,.26);
}

/* sidebar */

.anxArticleSideSection{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.018) 100%);
  box-shadow:
    0 20px 54px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.04);
  padding: 20px;
}

.anxArticleRelatedList{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.anxArticleMiniCard__link{
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.anxArticleMiniCard__link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

.anxArticleMiniCard__media{
  position: relative;
  min-height: 80px;
  border-radius: 14px;
  overflow: hidden;
  background: #090909;
}

.anxArticleMiniCard__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.08) contrast(1.04) brightness(.88);
}

.anxArticleMiniCard__shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.24) 100%);
  pointer-events: none;
}

.anxArticleMiniCard__body{
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anxArticleMiniCard__meta{
  color: rgba(255,255,255,.56);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  margin-bottom: 6px;
}

.anxArticleMiniCard__title{
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.34;
  font-weight: 850;
  letter-spacing: -.02em;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* bottom related */

.anxArticleBottomRelated{
  width: min(1380px, calc(100% - 32px));
  margin: 28px auto 0;
}

.anxArticleBottomRelated__head{
  margin-bottom: 16px;
}

.anxArticleGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.anxArticleCard__link{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.02) 100%);
  box-shadow:
    0 18px 44px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.anxArticleCard__link:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.025) 100%);
  box-shadow:
    0 24px 56px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.anxArticleCard__media{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090909;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.anxArticleCard__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: grayscale(.08) contrast(1.05) brightness(.84);
  transition: transform .28s ease, filter .28s ease;
}

.anxArticleCard__link:hover .anxArticleCard__image{
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.08) brightness(.96);
}

.anxArticleCard__shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.24) 100%);
  pointer-events: none;
}

.anxArticleCard__body{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 16px;
}

.anxArticleCard__meta{
  color: rgba(255,255,255,.56);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
}

.anxArticleCard__title{
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: -.025em;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* responsive */

@media (max-width: 1180px){
  .anxArticleLayout{
    grid-template-columns: 1fr;
  }

  .anxArticleSidebar{
    position: static;
    top: auto;
  }

  .anxArticleRelatedList{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anxArticleGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px){
  .anxArticleLayout,
  .anxArticleBottomRelated{
    width: min(100%, calc(100% - 20px));
  }

  .anxArticle{
    border-radius: 24px;
  }

  .anxArticleHero{
    padding: 24px 18px 18px;
  }

  .anxArticleBody{
    padding: 24px 18px 28px;
    font-size: 15.5px;
    line-height: 1.82;
  }

  .anxArticleTagsBlock{
    padding: 0 18px 24px;
  }

  .anxArticleCover img{
    max-height: 460px;
  }

  .anxArticleRelatedList{
    grid-template-columns: 1fr;
  }

  .anxArticleGrid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px){
  .anxArticlePage{
    padding: 14px 0 28px;
  }

  .anxArticleHero__meta{
    gap: 8px;
    font-size: 11px;
  }

  .anxArticleHero__pill{
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .anxArticleHero__title{
    margin-top: 14px;
    font-size: clamp(26px, 9vw, 38px);
  }

  .anxArticleHero__lead{
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .anxArticleBody{
    font-size: 15px;
  }

  .anxArticleBody h2{
    font-size: 24px;
  }

  .anxArticleBody h3{
    font-size: 21px;
  }

  .anxArticleBody blockquote{
    padding: 16px 14px 16px 16px;
    border-radius: 0 14px 14px 0;
  }

  .anxArticleMiniCard__link{
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }

  .anxArticleMiniCard__media{
    min-height: 72px;
  }

  .anxArticleMiniCard__title{
    font-size: 13px;
  }

  .anxArticleCard__title{
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce){
  .anxArticleTag,
  .anxArticleMiniCard__link,
  .anxArticleCard__link,
  .anxArticleCard__image{
    transition: none !important;
  }
}

.anxnewsPage{
  position: relative;
  min-height: 100%;
  padding: 26px 0 40px;
  color: #fff;
}

.anxnewsContainer{
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
}

/* hero */

.anxnewsHero{
  position: relative;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  box-shadow:
    0 24px 60px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.anxnewsHero__inner{
  padding: 34px 34px 36px;
}

.anxnewsHero__eyebrow{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.anxnewsHero__title{
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
  font-weight: 1000;
  letter-spacing: -.055em;
}

.anxnewsHero__text{
  margin: 14px 0 0;
  max-width: 780px;
  color: rgba(255,255,255,.68);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  font-weight: 500;
}

/* section title */

.anxnewsBlockTitle{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.anxnewsBlockTitle__line{
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.22);
  flex: 0 0 auto;
}

.anxnewsBlockTitle h2{
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
}

/* featured */

.anxnewsFeatured{
  margin-bottom: 30px;
}

.anxnewsFeatured__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.anxnewsFeatured__nav{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.anxnewsNavBtn{
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
  box-shadow:
    0 12px 28px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.anxnewsNavBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 18px 34px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.anxnewsNavBtn:active{
  transform: scale(.97);
}

.anxnewsNavBtn:focus-visible{
  outline: none;
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.07),
    0 18px 34px rgba(0,0,0,.32);
}

.anxnewsNavBtn svg{
  width: 18px;
  height: 18px;
}

.anxnewsFeatured__rail{
  display: flex;
  gap: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.16) transparent;
}

.anxnewsFeatured__rail::-webkit-scrollbar{
  height: 8px;
}

.anxnewsFeatured__rail::-webkit-scrollbar-track{
  background: transparent;
}

.anxnewsFeatured__rail::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.16);
  border-radius: 999px;
}

.anxnewsFeaturedCard{
  flex: 0 0 min(100%, 560px);
  min-width: min(100%, 560px);
  scroll-snap-align: start;
}

.anxnewsFeaturedCard__link{
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background: #0a0a0a;
  box-shadow:
    0 22px 56px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.anxnewsFeaturedCard__link:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 28px 68px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.anxnewsFeaturedCard__link:active{
  transform: translateY(-1px) scale(.992);
}

.anxnewsFeaturedCard__link:focus-visible{
  outline: none;
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.07),
    0 28px 68px rgba(0,0,0,.48);
}

.anxnewsFeaturedCard__media{
  position: relative;
  min-height: 350px;
  background: #090909;
}

.anxnewsFeaturedCard__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: grayscale(.06) contrast(1.04) brightness(.7);
  transition: transform .28s ease, filter .28s ease;
}

.anxnewsFeaturedCard__link:hover .anxnewsFeaturedCard__img{
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.08) brightness(.84);
}

.anxnewsFeaturedCard__shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 26%) 0%, rgb(0 0 0 / 52%) 20%, rgb(0 0 0 / 92%) 100%);
  pointer-events: none;
}

.anxnewsFeaturedCard__topMeta{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.anxnewsBadge{
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.anxnewsFeaturedCard__content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 22px 22px;
}

.anxnewsFeaturedCard__meta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.anxnewsFeaturedCard__title{
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -.045em;
  max-width: 90%;
}

.anxnewsFeaturedCard__excerpt{
  margin: 14px 0 0;
  max-width: 88%;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anxnewsFeaturedCard__cta{
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.01em;
}

.anxnewsFeaturedCard__cta svg{
  width: 15px;
  height: 15px;
  transition: transform .18s ease;
}

.anxnewsFeaturedCard__link:hover .anxnewsFeaturedCard__cta svg{
  transform: translateX(2px);
}

/* list */

.anxnewsListSection{
  margin-top: 8px;
}

.anxnewsListSection__head{
  margin-bottom: 16px;
}

.anxnewsGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.anxnewsCard{
  min-width: 0;
}

.anxnewsCard__link{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.02) 100%);
  box-shadow:
    0 18px 44px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.anxnewsCard__link:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.025) 100%);
  box-shadow:
    0 24px 56px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.anxnewsCard__link:active{
  transform: translateY(-1px) scale(.992);
}

.anxnewsCard__link:focus-visible{
  outline: none;
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.07),
    0 24px 56px rgba(0,0,0,.44);
}

.anxnewsCard__media{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090909;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.anxnewsCard__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: grayscale(.08) contrast(1.05) brightness(.84);
  transition: transform .28s ease, filter .28s ease;
}

.anxnewsCard__link:hover .anxnewsCard__image{
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.08) brightness(.96);
}

.anxnewsCard__mediaShade{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.26) 100%);
  pointer-events: none;
}

.anxnewsCard__body{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 18px;
  flex: 1 1 auto;
}

.anxnewsCard__meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.anxnewsCard__metaDot{
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  flex: 0 0 auto;
}

.anxnewsCard__title{
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -.03em;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anxnewsCard__excerpt{
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anxnewsCard__bottom{
  margin-top: auto;
  padding-top: 2px;
}

.anxnewsCard__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}

.anxnewsCard__cta svg{
  width: 15px;
  height: 15px;
  transition: transform .18s ease;
}

.anxnewsCard__link:hover .anxnewsCard__cta svg{
  transform: translateX(2px);
}

/* pagination */

.anxnewsPaginationWrap{
  margin-top: 28px;
}

/* responsive */

@media (max-width: 1180px){
  .anxnewsGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anxnewsFeaturedCard{
    flex-basis: min(100%, 500px);
    min-width: min(100%, 500px);
  }

  .anxnewsFeaturedCard__media{
    min-height: 365px;
  }
}

@media (max-width: 820px){
  .anxnewsContainer{
    width: min(100%, calc(100% - 20px));
  }

  .anxnewsHero__inner{
    padding: 24px 18px 26px;
  }

  .anxnewsFeatured__head{
    align-items: stretch;
    flex-direction: column;
  }

  .anxnewsFeatured__nav{
    justify-content: flex-end;
  }

  .anxnewsFeaturedCard{
    flex-basis: min(100%, 88vw);
    min-width: min(100%, 88vw);
  }

  .anxnewsFeaturedCard__media{
    min-height: 365px;
  }

  .anxnewsFeaturedCard__content{
    padding: 18px 16px 18px;
  }

  .anxnewsFeaturedCard__title{
    max-width: 100%;
  }

  .anxnewsFeaturedCard__excerpt{
    max-width: 100%;
  }

  .anxnewsGrid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .anxnewsCard__body{
    padding: 14px 14px 16px;
  }

  .anxnewsCard__title{
    font-size: 17px;
  }
}

@media (max-width: 560px){
  .anxnewsPage{
    padding: 16px 0 30px;
  }

  .anxnewsHero{
    margin-bottom: 22px;
    border-radius: 22px;
  }

  .anxnewsHero__eyebrow{
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .anxnewsHero__text{
    margin-top: 12px;
    font-size: 13px;
  }

  .anxnewsFeatured{
    margin-bottom: 24px;
  }

  .anxnewsFeatured__nav{
    gap: 8px;
  }

  .anxnewsNavBtn{
    width: 38px;
    height: 38px;
  }

  .anxnewsFeaturedCard{
    flex-basis: 86vw;
    min-width: 86vw;
  }

  .anxnewsFeaturedCard__media{
    min-height: 320px;
  }

  .anxnewsFeaturedCard__title{
    font-size: 22px;
  }

  .anxnewsFeaturedCard__excerpt{
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 4;
  }

  .anxnewsCard__meta{
    font-size: 11px;
  }

  .anxnewsCard__title{
    font-size: 16px;
  }

  .anxnewsCard__excerpt{
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce){
  .anxnewsNavBtn,
  .anxnewsFeaturedCard__link,
  .anxnewsCard__link,
  .anxnewsFeaturedCard__img,
  .anxnewsCard__image,
  .anxnewsCard__cta svg,
  .anxnewsFeaturedCard__cta svg{
    transition: none !important;
  }
}
/* =========================
   NEWS SECTION — BLACK/WHITE UI
   ========================= */

.anbNewsSection{
  position: relative;
  padding: 0 0 42px;
}

.anbNewsSection__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.anbNewsSection__titleWrap{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.anbNewsSection__icon{
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.96);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.05);
  flex: 0 0 auto;
}

.anbNewsSection__icon svg{
  width: 19px;
  height: 19px;
  display: block;
}

.anbNewsSection__titles{
  min-width: 0;
}

.anbNewsSection__title{
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.anbNewsSection__subtitle{
  margin: 7px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -.01em;
}

.anbNewsSection__all{
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 12px 30px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.anbNewsSection__all:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 16px 34px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.anbNewsSection__all:active{
  transform: translateY(0) scale(.985);
}

.anbNewsSection__all:focus-visible{
  outline: none;
  border-color: rgba(255,255,255,.28);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.08),
    0 16px 34px rgba(0,0,0,.34);
}

.anbNewsSection__all span{
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.anbNewsSection__all svg{
  width: 16px;
  height: 16px;
  opacity: .9;
  transition: transform .18s ease;
}

.anbNewsSection__all:hover svg{
  transform: translateX(2px);
}

/* grid */

.anbNewsGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 680px){
  .anbNewsGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px){
  .anbNewsGrid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* card */

.anbNewsCard{
  min-width: 0;
}

.anbNewsCard__link{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 16px 40px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.anbNewsCard__link:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.025) 100%);
  box-shadow:
    0 24px 56px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.anbNewsCard__link:active{
  transform: translateY(-1px) scale(.992);
}

.anbNewsCard__link:focus-visible{
  outline: none;
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.08),
    0 24px 56px rgba(0,0,0,.46);
}

/* media */

.anbNewsCard__media{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090909;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.anbNewsCard__image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  filter: grayscale(.08) contrast(1.04) brightness(.88);
  transition:
    transform .32s ease,
    filter .32s ease;
}

.anbNewsCard__link:hover .anbNewsCard__image{
  transform: scale(1.07);
  filter: grayscale(0) contrast(1.08) brightness(.96);
}

.anbNewsCard__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 34%, rgba(0,0,0,.68) 100%);
  pointer-events: none;
}

.anbNewsCard__metaTop{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.anbNewsCard__badge{
  height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 18px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.05);
}

/* body */

.anbNewsCard__body{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 18px;
  flex: 1 1 auto;
}

.anbNewsCard__meta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.anbNewsCard__metaDot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #fff;
  opacity: .9;
  box-shadow: 0 0 16px rgba(255,255,255,.28);
}

.anbNewsCard__title{
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.26;
  font-weight: 950;
  letter-spacing: -.03em;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anbNewsCard__excerpt{
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anbNewsCard__bottom{
  margin-top: auto;
  padding-top: 4px;
}

.anbNewsCard__more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.01em;
  opacity: .92;
  transition: opacity .18s ease;
}

.anbNewsCard__more svg{
  width: 15px;
  height: 15px;
  transition: transform .18s ease;
}

.anbNewsCard__link:hover .anbNewsCard__more{
  opacity: 1;
}

.anbNewsCard__link:hover .anbNewsCard__more svg{
  transform: translateX(2px);
}

/* responsive */

@media (max-width: 1099px){
  .anbNewsCard__title{
    font-size: 17px;
  }
}

@media (max-width: 767px){
  .anbNewsSection{
    padding-bottom: 32px;
  }

  .anbNewsSection__head{
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 16px;
  }

  .anbNewsSection__all{
    width: 100%;
    justify-content: center;
  }

  .anbNewsSection__icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .anbNewsCard__body{
    padding: 14px 14px 16px;
  }

  .anbNewsCard__title{
    font-size: 16px;
  }

  .anbNewsCard__excerpt{
    font-size: 12.5px;
  }
}

/* reduced motion */

@media (prefers-reduced-motion: reduce){
  .anbNewsSection__all,
  .anbNewsSection__all svg,
  .anbNewsCard__link,
  .anbNewsCard__image,
  .anbNewsCard__more svg{
    transition: none !important;
  }
}

.anbNewsSection__actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.anbNewsNavBtn{
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 12px 30px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.anbNewsNavBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 16px 34px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.anbNewsNavBtn:active{
  transform: scale(.97);
}

.anbNewsNavBtn:focus-visible{
  outline: none;
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.08),
    0 16px 34px rgba(0,0,0,.34);
}

.anbNewsNavBtn svg{
  width: 18px;
  height: 18px;
}

.anbNewsRailWrap{
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.16) transparent;
  scroll-snap-type: x proximity;
}

.anbNewsRailWrap::-webkit-scrollbar{
  height: 8px;
}

.anbNewsRailWrap::-webkit-scrollbar-track{
  background: transparent;
}

.anbNewsRailWrap::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.16);
  border-radius: 999px;
}

.anbNewsGrid--rail{
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  min-width: max-content;
}

.anbNewsCard--rail{
  flex: 0 0 250px;
  min-width: 250px;
  max-width: 250px;
  scroll-snap-align: start;
}

.anbNewsCard--rail .anbNewsCard__media{
  aspect-ratio: 16 / 8.8;
}

.anbNewsCard--rail .anbNewsCard__body{
  padding: 13px 13px 14px;
  gap: 10px;
}

.anbNewsCard--rail .anbNewsCard__title{
  font-size: 15px;
  line-height: 1.3;
  -webkit-line-clamp: 2;
}

.anbNewsCard--rail .anbNewsCard__excerpt{
  font-size: 12px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}

.anbNewsCard--rail .anbNewsCard__meta{
  font-size: 11px;
}

.anbNewsCard--rail .anbNewsCard__badge{
  height: 27px;
  padding: 0 10px;
  font-size: 10px;
}

.anbNewsCard--rail .anbNewsCard__more{
  font-size: 12px;
}

@media (max-width: 900px){
  .anbNewsCard--rail{
    flex: 0 0 220px;
    min-width: 220px;
    max-width: 220px;
  }
}

@media (max-width: 767px){
  .anbNewsSection__actions{
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .anbNewsSection__all{
    flex: 1 1 auto;
    justify-content: center;
  }

  .anbNewsCard--rail{
    flex: 0 0 200px;
    min-width: 200px;
    max-width: 200px;
  }

  .anbNewsCard--rail .anbNewsCard__title{
    font-size: 14px;
  }

  .anbNewsCard--rail .anbNewsCard__excerpt{
    font-size: 11.5px;
  }
}
///////////////НОВОСТИ ЕЩЕ////////////////////////
////////////////////УВЕДЫ/////////////////////////
.navnotify-badge--episode{
    background: rgba(59,130,246,.14);
    color: #93c5fd;
    border-color: rgba(59,130,246,.24);
}

.navnotify-badge--post{
    background: rgba(168,85,247,.14);
    color: #d8b4fe;
    border-color: rgba(168,85,247,.24);
}

.navnotify-badge--message{
    background: rgba(16,185,129,.14);
    color: #86efac;
    border-color: rgba(16,185,129,.24);
}

.navnotify-badge--ach{
    background: rgba(245,158,11,.14);
    color: #fcd34d;
    border-color: rgba(245,158,11,.24);
}

.navnotify-badge--comment{
    background: rgba(236,72,153,.14);
    color: #f9a8d4;
    border-color: rgba(236,72,153,.24);
}

.navnotify-badge--friend{
    background: rgba(99,102,241,.14);
    color: #a5b4fc;
    border-color: rgba(99,102,241,.24);
}

.navnotify-badge--system{
    background: rgba(148,163,184,.14);
    color: #cbd5e1;
    border-color: rgba(148,163,184,.24);
}
////////////////////УВЕДЫ/////////////////////////
.al-railCard{
    position: relative;
    overflow: hidden;
}

.al-railCard__link{
    position: absolute;
    inset: 0;
    z-index: 3;
}

.al-railCard__action{
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
}

.al-railCard__top,
.al-railCard__bottom{
    position: relative;
    z-index: 2;
}

.al-railCard__media{
    position: absolute;
    inset: 0;
}

.al-railCard__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.anlnavnotify__trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.02);
    color: rgba(255,255,255,.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: .18s ease;
}

.anlnavnotify__trigger:hover {
    color: #a855f7;
    border-color: rgba(168,85,247,.35);
    background: rgba(168,85,247,.08);
    box-shadow:
        0 12px 28px rgba(0,0,0,.36),
        0 0 0 1px rgba(168,85,247,.08) inset;
}

.anlnavnotify__triggerBadge {
    position: absolute;
    top: -3px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    box-shadow:
        0 8px 18px rgba(124,58,237,.38),
        0 0 0 2px #0a0a0f;
}

.anlnavnotify {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 392px;
    max-width: calc(100vw - 20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(124,58,237,.12), transparent 42%),
        linear-gradient(180deg, rgba(16,16,20,.98) 0%, rgba(8,8,11,.98) 100%);
    box-shadow:
        0 32px 60px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.02) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 90;
}

.anlnavnotify__head,
.anlnavnotify__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,.02);
}

.anlnavnotify__head {
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.anlnavnotify__foot {
    border-top: 1px solid rgba(255,255,255,.06);
}

.anlnavnotify__headText {
    min-width: 0;
}

.anlnavnotify__title {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.anlnavnotify__sub {
    margin-top: 5px;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.anlnavnotify__headLink,
.anlnavnotify__footLink {
    flex-shrink: 0;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: .18s ease;
}

.anlnavnotify__headLink:hover,
.anlnavnotify__footLink:hover {
    color: #a855f7;
}

.anlnavnotify__list {
    max-height: 430px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.anlnavnotify__list::-webkit-scrollbar {
    width: 8px;
}

.anlnavnotify__list::-webkit-scrollbar-track {
    background: transparent;
}

.anlnavnotify__list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.08);
    border-radius: 999px;
}

.anlnavnotify__empty {
    padding: 28px 18px;
    text-align: center;
}

.anlnavnotify__emptyTitle {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.anlnavnotify__emptyText {
    margin-top: 7px;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    font-weight: 600;
}

.anlnavnotify__form {
    display: block;
}

.anlnavnotify__item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: transparent;
    transition: .18s ease;
    cursor: pointer;
}

.anlnavnotify__item:hover {
    background: rgba(255,255,255,.035);
}

.anlnavnotify__item--unread {
    background:
        linear-gradient(90deg, rgba(124,58,237,.09) 0%, rgba(124,58,237,0) 55%);
}

.anlnavnotify__media {
    flex: 0 0 auto;
}

.anlnavnotify__thumb,
.anlnavnotify__thumbFallback {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    object-fit: cover;
    overflow: hidden;
}

.anlnavnotify__thumbFallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.68);
}

.anlnavnotify__body {
    min-width: 0;
    flex: 1 1 auto;
}

.anlnavnotify__metaRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.anlnavnotify__tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

.anlnavnotify__tag--episode {
    color: #93c5fd;
    background: rgba(59,130,246,.10);
    border-color: rgba(59,130,246,.22);
}

.anlnavnotify__tag--post {
    color: #c4b5fd;
    background: rgba(139,92,246,.10);
    border-color: rgba(139,92,246,.22);
}

.anlnavnotify__tag--message {
    color: #86efac;
    background: rgba(34,197,94,.10);
    border-color: rgba(34,197,94,.22);
}

.anlnavnotify__tag--achievement {
    color: #fcd34d;
    background: rgba(245,158,11,.10);
    border-color: rgba(245,158,11,.22);
}

.anlnavnotify__tag--comment {
    color: #f9a8d4;
    background: rgba(236,72,153,.10);
    border-color: rgba(236,72,153,.22);
}

.anlnavnotify__tag--friend {
    color: #a5b4fc;
    background: rgba(99,102,241,.10);
    border-color: rgba(99,102,241,.22);
}

.anlnavnotify__tag--system {
    color: rgba(255,255,255,.70);
    background: rgba(148,163,184,.10);
    border-color: rgba(148,163,184,.20);
}

.anlnavnotify__time {
    flex-shrink: 0;
    color: rgba(255,255,255,.38);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.anlnavnotify__itemTitle {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -.01em;
    word-break: break-word;
}

.anlnavnotify__itemText {
    margin-top: 6px;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.anlnavnotify__unreadDot {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #8b5cf6;
    box-shadow: 0 0 0 5px rgba(139,92,246,.10);
}

.anlnavnotify__readAll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(139,92,246,.26);
    border-radius: 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    transition: .18s ease;
    cursor: pointer;
}

.anlnavnotify__readAll:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(124,58,237,.28);
}

@media (max-width: 640px) {
    .anlnavnotify {
        right: -10px;
        width: min(100vw - 16px, 392px);
        border-radius: 18px;
    }

    .anlnavnotify__head,
    .anlnavnotify__foot {
        padding: 14px;
    }

    .anlnavnotify__item {
        padding: 13px 14px;
    }

    .anlnavnotify__thumb,
    .anlnavnotify__thumbFallback {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .anlnavnotify__itemTitle {
        font-size: 12.5px;
    }

    .anlnavnotify__itemText {
        font-size: 11.5px;
    }
}