#live-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #1e1e1e;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  padding: 16px 18px;
  max-width: 360px;
  width: calc(100% - 60px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 10000;
}

#live-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#live-notification .icon {
  background: #333;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

#live-notification .content {
  flex-grow: 1;
}

#live-notification .text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
  word-break: break-word;
}

#live-notification .counter {
  font-size: 12px;
  color: #aaa;
}

#live-notification .close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.2s;
}

#live-notification .close-btn:hover {
  color: #fff;
}

@media (max-width: 480px) {
  #live-notification {
    top: 20px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    max-width: 100%;
    width: calc(100% - 30px);
    border-radius: 12px;
    padding: 14px 16px;
  }

  #live-notification.show {
    transform: translateX(-50%) translateY(0);
  }

  #live-notification .icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  #live-notification .text {
    font-size: 13px;
  }

  #live-notification .counter {
    font-size: 11px;
  }
}
