/* DOTG Final Boss Navbar Notifications */
.dotg-notif-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  z-index: 1200;
}

.dotg-notif-bell {
  position: relative;
  appearance: none;
  border: 1px solid rgba(240,196,90,.26);
  background: radial-gradient(circle at top, rgba(240,196,90,.12), transparent 55%), rgba(17,14,20,.78);
  color: #f0c45a;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 17px;
  display: grid;
  place-items: center;
  text-shadow: 0 0 8px rgba(240,196,90,.45);
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
}

#navNotifications.pulse .dotg-notif-bell {
  animation: bellPulse 1s ease;
}

@keyframes bellPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); box-shadow: 0 0 24px rgba(240,196,90,.45), 0 12px 32px rgba(0,0,0,.36); }
  100% { transform: scale(1); }
}

.dotg-notif-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 2px 6px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4d4d, #a00000);
  color: white;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 0 12px rgba(255,0,0,.55);
}

.dotg-notif-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 330px;
  max-height: 430px;
  overflow-y: auto;
  background: radial-gradient(circle at top, rgba(240,196,90,.14), transparent 58%), linear-gradient(180deg, rgba(10,7,5,.98), rgba(5,3,4,.98));
  border: 1px solid rgba(240,196,90,.40);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(240,196,90,.15), 0 30px 70px rgba(0,0,0,.82);
  padding: 14px;
  opacity: 0;
  transform-origin: top right;
  transform: translateY(-10px) scale(.96);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.dotg-notif-dropdown.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dotg-notif-item {
  width: 100%;
  display: block;
  text-align: left;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(20,15,10,.62);
  border: 1px solid rgba(240,196,90,.18);
  color: rgba(232,220,200,.9);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px);
  animation: notifEnter .28s forwards;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

@keyframes notifEnter {
  to { opacity: 1; transform: translateY(0); }
}

.dotg-notif-item:hover {
  transform: translateY(-3px);
  border-color: rgba(240,196,90,.6);
  box-shadow: 0 0 18px rgba(240,196,90,.20);
}

.dotg-notif-item.unread {
  border-left: 3px solid #f0c45a;
  background: rgba(240,196,90,.10);
  animation: notifEnter .28s forwards, notifPulse 2.2s infinite;
}

@keyframes notifPulse {
  0% { box-shadow: 0 0 5px rgba(240,196,90,.15); }
  50% { box-shadow: 0 0 20px rgba(240,196,90,.34); }
  100% { box-shadow: 0 0 5px rgba(240,196,90,.15); }
}

.dotg-notif-item.announcement { border-color: rgba(255,215,0,.58); }
.dotg-notif-item.support { border-color: rgba(0,255,200,.42); }
.dotg-notif-item.reply,
.dotg-notif-item.followed_thread_reply { border-color: rgba(255,140,0,.42); }

.dotg-notif-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.dotg-notif-icon { font-size: 14px; line-height: 1; }

.dotg-notif-title {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f0c45a;
}

.dotg-notif-text {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(232,220,200,.9);
}

.dotg-notif-item small {
  display: block;
  margin-top: 7px;
  color: rgba(232,220,200,.52);
  font-size: 11px;
}

.dotg-notif-empty {
  padding: 14px;
  color: rgba(232,220,200,.7);
  text-align: center;
}

.dotg-notif-footer {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(240,196,90,.16);
}

.dotg-notif-footer a {
  color: #f0c45a;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 700px) {
  .dotg-notif-dropdown {
    right: -80px;
    width: min(330px, calc(100vw - 28px));
  }
}
