.notif-drop {
  display: inline-flex;
  align-items: stretch;
  position: relative;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.notif-drop > a.iconews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  height: 32px;
  text-decoration: none;
  background: transparent;
  transition: background 0.15s ease;
  position: relative;
}

.notif-drop > a.iconews:hover {
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.notif-drop > a.iconews i {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s ease;
}

.notif-drop > a.iconews:hover i {
  color: rgba(255,255,255,0.9);
}

.notif-dot {
  position: absolute;
  top: 7px;
  right: 9px;
  width: 6px;
  height: 6px;
  background: #c8141e;
  border-radius: 50%;
  border: 1px solid #0c0c0c;
}

.notif-menu {
  display: none;
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 9999;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid #c8141e;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.7);
  min-width: 280px;
  overflow: hidden;
}

.notif-menu.open {
  display: block;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.notif-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.3);
}

.notif-count {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: #c8141e;
  padding: 2px 8px;
  border-radius: 3px;
  min-width: 20px;
  text-align: center;
}

.notif-body {
  background: #111111;
}

.notif-body ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.notif-body ul li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background 0.12s ease;
}

.notif-body ul li a:hover {
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.notif-body ul li a i {
  font-size: 14px;
  color: #c8141e;
  flex-shrink: 0;
  margin-top: 1px;
}

.notif-body ul li a span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.notif-body ul li a:hover span {
  color: rgba(255,255,255,0.9);
}

.notif-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.notif-empty i {
  font-size: 14px;
  opacity: 0.4;
}