.cr-reactions,
.notif-inner,
.notif-header-bar,
.notif-tabs,
.menu-m {
  display: flex;
  align-items: center;
}

.cr-reactions {
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cr-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: #082c27;
  color: #ccc;
  cursor: pointer;
  overflow: hidden;
  transition: .18s ease;
  transition-property: transform, background-color, color, border-color, box-shadow, opacity;
}

.cr-btn:hover {
  background: #58caa2;
  color: #1e1e1e;
}
.cr-btn:focus { outline: 0; }
.cr-btn:focus-visible { outline: 2px solid rgba(255,255,255,.35); outline-offset: 2px; }
.cr-btn i { font-size: 13px; }

.cr-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cr-btn.clicked { transform: scale(.96); }
.cr-btn.clicked::after { animation: crRipple .35s ease; }
.cr-btn.active { transform: scale(1.02); }

.cr-like.active { background: rgba(76,175,80,.15); color: #4caf50; border-color: #4caf50; }
.cr-dislike.active { background: rgba(231,76,60,.15); color: #e74c3c; border-color: #e74c3c; }
.cr-btn.glow-like { box-shadow: 0 0 6px rgba(76,175,80,.35); }
.cr-btn.glow-dislike { box-shadow: 0 0 6px rgba(231,76,60,.35); }

.cr-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  gap: 2px;
}

.cr-score .score { font-size: 14px; font-weight: 600; line-height: 1; }
.cr-score .votes { font-size: 10px; line-height: 1; color: #777; }
.cr-score .pos { color: #4caf50; }
.cr-score .neg { color: #e74c3c; }
.cr-score .neutral { color: #aaa; }
.cr-score .score.bump { animation: scorePop .28s cubic-bezier(.2,.8,.2,1); }
.cr-score.flash { animation: flashBg .35s ease; }

.ss-comments-lazy {
  margin: 24px 0;
}

.ss-comments-entry {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 38px;
  background: rgba(255,255,255,.035);
  color: #f3f3f3;
  padding: 8px;
  text-align: right;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.ss-comments-entry:hover,
.ss-comments-entry:focus-visible {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
  outline: 0;
}

.ss-comments-entry__icon,
.ss-comments-panel__title-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(57,190,138,.13);
  color: #59d5aa;
}

.ss-comments-entry__body {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 5px;
}

.ss-comments-entry__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.ss-comments-entry__subtitle {
  color: #a8a8a8;
  font-size: 12px;
  line-height: 1.7;
}

.ss-comments-entry__chevron {
  color: #000000;
    font-size: 28px;
    margin-left: 10px;
    padding: 3px 10px;
    line-height: 0;
    border-radius: 30px;
    background: #ffffff;
}

.ss-comments-panel {
  position: fixed;
  inset: 0;
  z-index: 100010;
  pointer-events: none;
}

.ss-player-login-prompt.ss-comments-auth-prompt {
  z-index: 100030 !important;
}

.ss-comments-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.55);
  opacity: 0;
  transition: opacity .22s ease;
}

.ss-comments-panel__sheet {
  --ss-sheet-motion-y: 0px;
  --cr-sheet-motion-y: var(--ss-sheet-motion-y);
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100vw - 28px));
  max-height: min(82vh, 720px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: #031718;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  opacity: 0;
  overflow: hidden;
  transform: translate3d(calc(-50% + 24px), calc(-50% + var(--ss-sheet-motion-y)), 0) scale(.985);
  transform-origin: center;
  transition: opacity .2s ease, transform .26s cubic-bezier(.22,1,.36,1);
  touch-action: pan-y;
}

.ss-comments-panel.is-open {
  pointer-events: auto;
}

.ss-comments-panel.is-open .ss-comments-panel__backdrop {
  opacity: 1;
}

.ss-comments-panel.is-open .ss-comments-panel__sheet {
  opacity: 1;
  transform: translate3d(-50%, calc(-50% + var(--ss-sheet-motion-y)), 0) scale(1);
}

.ss-comments-panel.is-dragging .ss-comments-panel__sheet,
.ss-comments-panel.is-settling .ss-comments-panel__sheet,
.ss-comments-panel.is-motion-dragging .ss-comments-panel__sheet,
.ss-comments-panel.is-motion-settling .ss-comments-panel__sheet {
  transition: none;
}

.ss-comments-panel.is-closing .ss-comments-panel__backdrop {
  opacity: 0;
}

.ss-comments-panel.is-closing .ss-comments-panel__sheet {
  opacity: 0;
  transform: translate3d(calc(-50% + 20px), calc(-50% + var(--ss-sheet-motion-y)), 0) scale(.985);
}

.ss-comments-panel__drag-handle {
  flex: 0 0 auto;
  display: none;
  justify-content: center;
  padding: 9px 0 2px;
  cursor: grab;
  touch-action: none;
}

.ss-comments-panel__drag-handle span {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.ss-comments-panel.is-dragging .ss-comments-panel__drag-handle,
.ss-comments-panel.is-motion-dragging .ss-comments-panel__drag-handle {
  cursor: grabbing;
}

.ss-comments-panel__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 10px 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.ss-comments-panel__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ss-comments-panel__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.ss-comments-panel__count {
  color: #a7a7a7;
  font-size: 13px;
  font-weight: 700;
}

.ss-comments-panel__title-icon {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
}

.ss-comments-panel__sort {
  align-self: flex-start;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
}

.ss-comments-panel__sort button,
.ss-comments-panel__close,
.ss-comment-icon-btn,
.ss-comment-action,
.ss-comment-replies-toggle,
.ss-comments-form__context button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.ss-comments-panel__sort button {
  min-width: 54px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #cfcfcf;
  font-size: 12px;
  line-height: 1.4;
}

.ss-comments-panel__sort button.active {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.ss-comments-panel__close,
.ss-comment-icon-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d7d7d7;
}

.ss-comments-panel__close:hover,
.ss-comment-icon-btn:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.ss-comments-panel__body {
  padding: 14px 16px 16px;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ss-comments-form {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.ss-comments-form__guest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ss-comments-form input,
.ss-comments-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 11px 12px;
  outline: 0;
}

.ss-comments-form textarea {
  resize: vertical;
  min-height: 92px;
  max-height: 180px;
  line-height: 1.8;
}

.ss-comments-form input:focus,
.ss-comments-form textarea:focus {
  border-color: rgba(89,213,170,.44);
}

.ss-comments-form__context,
.ss-comments-form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ss-comments-form__context {
  color: #dcdcdc;
  font-size: 12px;
}

.ss-comments-form__context button {
  color: #59d5aa;
  padding: 4px 0;
}

.ss-comments-form__message {
  min-height: 20px;
  color: #aaa;
  font-size: 12px;
  line-height: 1.7;
}

.ss-comments-form__message.is-success {
  color: #59d5aa;
}

.ss-comments-form__message.is-error {
  color: #ff8f8f;
}

.ss-comments-submit {
  min-width: 96px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #151515;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.ss-comments-submit:disabled {
  opacity: .72;
  cursor: wait;
}

.ss-comments-submit .ss-shared-loader {
  color: #151515;
}

.ss-comments-list {
  display: grid;
  gap: 12px;
}

.ss-comment-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
}

.ss-comment-item.has-open-replies::before {
  content: '';
  position: absolute;
  top: 46px;
  bottom: 58px;
  right: 23px;
  width: 1px;
  min-height: 42px;
  background: rgb(255 255 255 / 12%);
  pointer-events: none;
}

.ss-comment-item--reply {
  margin-top: 14px;
  z-index: 1;
}

.ss-comment-item__avatar {
  position: relative;
  align-self: start;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ss-comment-item__profile-link {
  color: inherit;
  text-decoration: none !important;
}

.ss-comment-item__profile-link--avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  outline: 0;
}

.ss-comment-item__profile-link--avatar:focus-visible,
.ss-comment-item__profile-link--avatar:hover {
  box-shadow: 0 0 0 2px rgba(251, 203, 7, .34);
}

.ss-comment-item__avatar img,
.ss-comment-avatar-fallback {
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.ss-comment-item__avatar img {
  object-fit: cover;
}

.ss-comment-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #052224;
  color: rgb(223 230 232 / 34%);
  font-size: 18px;
}

.ss-comment-item--reply > .ss-comment-item__avatar::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -34px;
  width: 34px;
  height: 1px;
  background: rgb(255 255 255 / 9%);
  transform: translateY(-50%);
  pointer-events: none;
}

.ss-comment-item__main {
  min-width: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: border-color .18s ease, background-color .18s ease;
}

.ss-comment-item.is-target-comment .ss-comment-item__main {
  border-bottom-color: rgba(255,196,87,.55);
  background: linear-gradient(90deg, rgba(255,196,87,.08), transparent 52%);
}

.ss-comment-item__head,
.ss-comment-item__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ss-comment-item__head {
  justify-content: space-between;
}

.ss-comment-item__profile-link--name {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
}

.ss-comment-item__profile-link--name:hover,
.ss-comment-item__profile-link--name:focus-visible {
  color: #fbcb07;
  outline: 0;
}

.ss-comment-item__author {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.ss-comment-item__author strong {
  color: #fff;
  font-size: 13px;
}

.ss-comment-item__author span {
  color: #8f8f8f;
  font-size: 11px;
}

.ss-comment-item__text {
  color: #e7e7e7;
  font-size: 13px;
  line-height: 1.9;
  overflow-wrap: anywhere;
  text-align: right;
  direction: rtl;
}

.ss-comment-item__text p {
  margin: 8px 0 0;
}

.ss-comment-item__actions {
  justify-content: flex-start;
  margin-top: 8px;
}

.ss-comment-reactions {
  margin-top: 0;
  gap: 6px;
}

.ss-comment-reactions .cr-btn {
  min-width: 32px;
  min-height: 30px;
  padding: 5px 8px;
}

.ss-comment-action,
.ss-comment-replies-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #bdbdbd;
  font-size: 12px;
}

.ss-comment-action:hover,
.ss-comment-replies-toggle:hover {
  color: #fff;
}

.ss-comment-item__menu {
  position: relative;
}

.ss-comment-item__menu-list {
  position: absolute;
  top: 38px;
  left: 0;
  min-width: 138px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: #202020;
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
  z-index: 4;
}

.ss-comment-item__menu-list button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: none;
  color: #e7e7e7;
  padding: 8px;
  text-align: right;
  cursor: pointer;
}

.ss-comment-item__menu-list button:hover {
  background: rgba(255,255,255,.07);
}

.ss-comment-replies-toggle {
  margin-top: 8px;
}

.ss-comment-replies {
  position: relative;
  margin-top: 10px;
  padding-top: 12px;
}

.ss-comment-replies-close {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px 57px 0 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,196,87,.1);
  color: #ffc457;
  padding: 7px 12px;
  font-size: 12px;
  cursor: pointer;
}

.ss-comment-replies-close:hover,
.ss-comment-replies-close:focus-visible {
  background: rgba(255,196,87,.16);
  color: #ffd58a;
  outline: 0;
}

.ss-comments-empty,
.ss-comments-closed,
.ss-comments-loader {
  color: #aaa;
  text-align: center;
  padding: 18px 0;
  font-size: 13px;
}

.ss-comments-sentinel {
  width: 100%;
  height: 1px;
}

@media (max-width: 759.98px) {
  .ss-comments-panel__sheet {
    width: 100%;
    max-height: 88vh;
    top: auto;
    bottom: 0;
    left: 0;
    border-radius: 22px 22px 0 0;
    transform: translate3d(0, calc(24px + var(--ss-sheet-motion-y)), 0);
  }

  .ss-comments-panel.is-open .ss-comments-panel__sheet {
    transform: translate3d(0, var(--ss-sheet-motion-y), 0);
  }

  .ss-comments-panel.is-closing .ss-comments-panel__sheet {
    transform: translate3d(0, calc(20px + var(--ss-sheet-motion-y)), 0);
  }

  .ss-comments-panel__drag-handle {
    display: flex;
  }

  .ss-comments-panel__head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ss-comments-panel__top {
    width: 100%;
    min-height: 36px;
    padding-left: 0;
  }

  .ss-comments-panel__close {
    display: none;
  }

  .ss-comments-panel__sort {
    width: 100%;
    margin-right: 0;
  }

  .ss-comments-panel__sort button {
    flex: 1;
  }

  .ss-comments-form__guest {
    grid-template-columns: 1fr;
  }

  .ss-comments-form__foot {
    align-items: stretch;
    flex-direction: column;
  }

  .ss-comments-submit {
    width: 100%;
  }
}

.menu-m { justify-content: flex-end; gap: 11px; }
.menu-m > * { flex-shrink: 0; }

.bell-artists::after { display: none !important; }

.bell-artists,
.login-login {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-login i {
  display: block;
  font-size: 26px;
  color: #eee;
  margin-top: 18px !important;
  line-height: 1 !important;
}
.bell-artists i {
  display: block;
  font-size: 28px;
  color: rgba(245, 245, 247, .72);
  margin: 0;
  line-height: 1 !important;
  transition: color .18s ease, transform .18s ease;
}
.bell-artists:hover i,
.bell-artists:focus-visible i {
  color: #fff;
}
.cr-notification-root.is-open .bell-artists,
.bell-artists[aria-expanded="true"],
.cr-notification-root.is-open .bell-artists:hover,
.bell-artists[aria-expanded="true"]:hover {
  background: transparent !important;
}
.cr-notification-root.is-open .bell-artists i,
.bell-artists[aria-expanded="true"] i,
.cr-notification-root.is-open .bell-artists[aria-expanded="true"] i {
  color: #fff;
  transform: none;
}
.bell-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.bell-dot {
  position: absolute;
  top: 6px;
  right: 0px;
  width: 10px;
  height: 10px;
  background: #ff3b30;
  border-radius: 50%;
  z-index: 10;
  animation: bellPulse 1.4s infinite;
}

.bell-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,59,48,.6);
  animation: bellWave 1.4s infinite;
}
.notif-header-bar {
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  flex: 0 0 auto;
}

.notif-header-bar--surface {
  display: grid;
  grid-template-columns: minmax(86px, auto) minmax(0, 1fr);
  grid-template-areas: "actions main";
  align-items: center;
  gap: 10px;
  direction: ltr !important;
  padding: 10px 12px 12px;
}

.notif-header-main {
  grid-area: main;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  justify-self: end;
  direction: rtl;
}

.notif-header-title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #fff;
  direction: rtl;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.notif-header-actions {
  grid-area: actions;
  min-width: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
}

.notif-header-slot--mark {
  min-width: 96px;
  min-height: 34px;
  pointer-events: none;
  visibility: hidden;
}

.mark-all-read {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  border: 0;
  border-radius: 35px;
  background: none;
  color: #c9c9c9;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  direction: ltr;
  white-space: nowrap;
}

.cr-sheet-handle {
  display: none;
}

.mark-all-read__label {
  direction: rtl;
  unicode-bidi: isolate;
}

.mark-all-read i {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1;
}

.mark-all-read:hover {
  background: #191919;
  color: #fff;
}

.notif-tabs {
  gap: 8px;
  padding: 5px 8px;
  margin-bottom: 10px;
  background: #212121;
  border: 1px solid #333;
  border-radius: 50px;
  flex: 0 0 auto;
}

.notif-tabs button {
  flex: 1;
  border: 0;
  background: none;
  color: #ddd;
  text-align: center;
  cursor: pointer;
  padding: 6px 0;
  border-radius: 20px;
  font-size: 13px;
}

.notif-tabs button.active {
  background: #343434;
  color: #fff;
}

.notif-item {
  position: relative;
  list-style: none;
  margin-top: 7px;
  border: 1px solid #333;
  border-radius: 28px;
  background: #212121;
  transition: .2s ease;
  transition-property: background-color, transform;
}

.notif-item:first-child { margin-top: 0; }
.notif-item:hover { background: rgba(255,255,255,.08); }
.notif-item.unseen { background: rgba(255,255,255,.04); }

.notif-item.unseen::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #4da3ff;
  border-radius: 50%;
}

.notif-item[hidden] { display: none !important; }

.notif-card { padding: 12px 10px; }

.notif-inner {
  display: flex !important;
  width: 100% !important;
  gap: 12px !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between;
  padding-right: 10px;
}

.notif-inner * { box-sizing: border-box; }

.notif-icon-right {
  order: 1;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4caf50;
  color: #15801a;
  font-size: 18px;
  transition: transform .2s ease;
}

.notif-item:hover .notif-icon-right { transform: scale(1.08); }
.notif-icon-right.reply { 
    background: #ffcc00;
    color: #aa6900;
}
.notif-icon-right.music { 
    background: linear-gradient(135deg,#ff7a18,#ffb347);
    color: #ab5d1c;
}

.notif-content {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.notif-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
}

.notif-meta {
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-avatar {
  order: 3;
  flex: 0 0 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-post-fallback {
  display: block;
  width: 65px;
  height: 65px;
  object-fit: cover;
}
.notif-avatar img {
  display: block;
  width: 55px;
  height: 55px;
  object-fit: cover;
}
.notif-post-cover img {
    width: 80px;
    height: 80px;
}
.notif-avatar img { border-radius: 50%; }
.notif-post-cover { flex: 0 0 65px; }
.notif-post-cover img,
.notif-post-fallback { border-radius: 0px; }
.notif-post-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #303030;
  color: #bcbcbc;
}

.notif-panel-desk {
  --ss-notification-desktop-top: 0px;
  --ss-notification-desktop-bottom: 0px;
  --ss-notification-layer-z: 100060;
  position: fixed;
  inset: 0;
  z-index: var(--ss-notification-layer-z);
  display: block;
  pointer-events: none;
}

.header-actions .cr-notification-root > .notif-panel-desk,
.cr-notification-root > .notif-panel-desk {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  z-index: var(--ss-notification-layer-z);
}

.notif-panel-desk.is-open,
.notif-panel-desk.is-closing {
  pointer-events: auto;
}

.notif-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.54);
  opacity: 0;
  transition: opacity .22s ease;
}

.notif-panel-surface {
  --ss-sheet-motion-y: 0px;
  --cr-sheet-motion-y: var(--ss-sheet-motion-y);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(420px, calc(100vw - 72px));
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: #181818;
  box-shadow: 22px 0 60px rgba(0,0,0,.34);
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
  transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .22s ease;
}

.notif-panel-desk.is-open .notif-panel-backdrop {
  opacity: 1;
}

.notif-panel-desk.is-open .notif-panel-surface {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.notif-panel-desk.is-closing .notif-panel-surface {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.notif-panel-desk.is-motion-dragging .notif-panel-surface,
.notif-panel-desk.is-motion-settling .notif-panel-surface {
  transition: none;
}

.notif-panel-handle {
  display: none;
}

@media (min-width: 760px) {
  .notif-panel-desk,
  .notif-panel-desk.ss-sheet--notifications,
  body > .notif-panel-desk.ss-sheet--notifications {
    --ss-notification-layer-z: 9990;
    top: var(--ss-notification-desktop-top, 72px);
    bottom: var(--ss-notification-desktop-bottom, 74px);
    height: auto;
    max-height: calc(100dvh - var(--ss-notification-desktop-top, 72px) - var(--ss-notification-desktop-bottom, 74px));
  }

  .header-actions .cr-notification-root > .notif-panel-desk,
  .cr-notification-root > .notif-panel-desk {
    top: var(--ss-notification-desktop-top, 72px);
    bottom: var(--ss-notification-desktop-bottom, 74px);
    height: auto;
  }

  .notif-panel-surface {
    top: 0;
    bottom: 0;
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

.notif-scroll {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 2px 14px;
  scrollbar-gutter: stable;
}

.notif-panel-desk a {
  color: #fff;
  padding: 0 5px;
  line-height: 2.2;
  font-size: 16px;
  text-decoration: none!important;
}

.notif-content-link {
  color: inherit !important;
  padding: 0 !important;
  line-height: inherit !important;
  font-size: inherit !important;
  text-decoration: none !important;
}

.notif-content-link:hover .notif-title,
.notif-content-link:focus-visible .notif-title {
  color: #fff;
}

.notif-avatar-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  padding: 0 !important;
  line-height: 1 !important;
  border-radius: 50%;
  text-decoration: none !important;
  color: inherit !important;
}

.notif-avatar-link:focus-visible {
  outline: 2px solid rgba(255,255,255,.28);
  outline-offset: 3px;
}

.notif-user-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
    background: #272626;
    color: rgb(223 230 232 / 41%);
  font-size: 18px;
}

.notif-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 10px;
  color: #bdbdbd;
  font-size: 12px;
}

.notif-loader-spin {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: notifSpin .7s linear infinite;
}

.notif-empty {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 26px 14px;
  color: #b8b8b8;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.notif-empty[hidden] {
  display: none !important;
}

.notif-empty i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  color: #d8d8d8;
  font-size: 16px;
}

.notif-scroll::-webkit-scrollbar { width: 8px; }
.notif-scroll::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 10px; }
.notif-scroll::-webkit-scrollbar-track { background: transparent; }

@media (max-width: 759.98px) {
  .cr-sheet-handle,
  .notif-panel-handle {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    padding: 4px 0 8px;
    cursor: grab;
    touch-action: none;
  }

  .cr-sheet-handle span,
  .notif-panel-handle span {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
  }

  .cr-sheet.is-dragging .cr-sheet-handle,
  .notif-panel-desk.is-motion-dragging .notif-panel-handle {
    cursor: grabbing;
  }

  .notif-panel-surface {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: min(82vh, calc(100dvh - 64px));
    min-height: 360px;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom));
    border-right: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 42px rgba(0,0,0,.42);
    transform: translate3d(0, calc(34px + var(--ss-sheet-motion-y)), 0);
  }

  .notif-panel-desk.is-open .notif-panel-surface {
    transform: translate3d(0, var(--ss-sheet-motion-y), 0);
  }

  .notif-panel-desk.is-closing .notif-panel-surface {
    transform: translate3d(0, calc(34px + var(--ss-sheet-motion-y)), 0);
  }

  .notif-panel-desk.is-dragging .notif-panel-surface,
  .notif-panel-desk.is-settling .notif-panel-surface,
  .notif-panel-desk.is-motion-dragging .notif-panel-surface,
  .notif-panel-desk.is-motion-settling .notif-panel-surface {
    transition: none;
  }

  .notif-header-bar {
    padding: 6px 8px 10px;
    font-size: 16px;
  }

  .notif-header-bar--surface {
    grid-template-columns: minmax(76px, auto) minmax(0, 1fr);
    grid-template-areas: "actions main";
    gap: 8px;
    padding: 6px 4px 10px;
  }

  .notif-header-main {
    gap: 6px;
  }

  .notif-header-title {
    gap: 6px;
    font-size: 16px;
  }

  .notif-header-actions {
    min-width: 86px;
  }

  .notif-header-slot--mark {
    min-width: 86px;
    min-height: 32px;
  }

  .mark-all-read {
    padding: 5px 6px;
    font-size: 11px;
    gap: 5px;
  }

  .mark-all-read i {
    font-size: 11px;
  }

  .notif-settings-link {
    width: 34px;
    height: 34px;
  }

  .notif-tabs {
    gap: 4px;
    padding: 4px;
    margin-bottom: 8px;
  }

  .notif-tabs button {
    min-width: 0;
    padding: 7px 4px;
    font-size: 12px;
    line-height: 1.4;
  }

  .notif-empty {
    min-height: 220px;
  }
}

@keyframes crRipple {
  from { width: 0; height: 0; opacity: 1; }
  to { width: 180px; height: 180px; opacity: 0; }
}

@keyframes scorePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

@keyframes flashBg {
  0% { background: rgba(255,255,255,.08); }
  100% { background: transparent; }
}

@keyframes bellPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes bellWave {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes notifSpin {
  to { transform: rotate(360deg); }
}
.notif-panels {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
}

.notif-settings-link {
  width: 36px;
  height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,.48) !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 14px !important;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.notif-settings-link:hover,
.notif-settings-link:focus-visible {
  background: rgba(255,255,255,.07);
  color: #fff !important;
  outline: 0;
}

.notif-settings-link i {
  font-size: 15px;
  line-height: 1;
}

@media (max-width: 576px) {
  .notif-header-bar--surface .notif-settings-link {
    width: 34px;
    height: 34px;
  }
}

.notif-scroll.is-hidden {
  display: none;
}
