/* ========== Trang Thông báo ========== */
.page-notify {
  background: linear-gradient(180deg, #1a2d42 0%, #2d4a6f 30%, #3d5a80 60%, #2d4a6f 100%);
  min-height: 100vh;
}

.notify-app {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Nền */
.notify-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.notify-year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(251, 191, 36, 0.12);
  letter-spacing: 0.05em;
  user-select: none;
}

/* Thanh tiêu đề */
.notify-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(30, 58, 95, 0.9);
  backdrop-filter: blur(8px);
}

.notify-back {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.notify-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.notify-header-placeholder {
  width: 40px;
}

/* Danh sách thông báo */
.notify-list {
  position: relative;
  z-index: 1;
  padding: 16px 20px 28px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.notify-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
}

.notify-item:last-child {
  margin-bottom: 0;
}

.notify-item--read {
  opacity: 0.85;
  border-left-color: #9ca3af;
}

.notify-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.notify-item-icon--blue {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.notify-item-icon--green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.notify-item-icon--orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.notify-item-icon--gray {
  background: #9ca3af;
}

.notify-item-body {
  flex: 1;
  min-width: 0;
}

.notify-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.notify-item-desc {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0 0 6px 0;
}

.notify-item-time {
  font-size: 0.75rem;
  color: #9ca3af;
}

.notify-empty {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
