/* File: sukien.css (ĐÃ SỬA) */

/* ... (Phần CSS cho con chim toast giữ nguyên) ... */
.toast {
  max-width: 8%;
  height: auto;
  max-height: 10%;
  animation: flinging ease-in-out infinite 1.6s;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  margin-left: 70%;
  top: 13%;
}
/* ... (Các keyframes giữ nguyên) ... */

/* --- QUY TẮC ĐÚNG CHO TIÊU ĐỀ NỀN --- */
.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	position: relative; /* << THAY ĐỔI: Dùng 'fixed' để nó luôn ở trên cùng */
	top: 10px;       /* Đẩy nó xuống một chút */
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
	z-index: -1;      /* << QUAN TRỌNG: Đẩy nó ra lớp sau cùng */
	width: 100%;
    text-align: center;

	background: linear-gradient(
		to bottom,
		#4ccccb 30%,
		rgba(255, 255, 255, 0) 76%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

body.dark-theme .about-title {
	background: linear-gradient(
		to bottom,
		#4dd683 30%,
		rgba(255, 255, 255, 0) 76%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}