/* --- Reset mặc định của trình duyệt --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* --- Nền tổng thể --- */
body {
  background-color: #f8f9fa;
  color: #333;
  text-align: center;
}

/* --- Header (tiêu đề chính) --- */
.header {
  background: #007bff;
  padding: 15px;
  color: white;
}

.header h1 {
  font-size: 24px;
  font-weight: bold;
}

.sub-title {
  font-size: 16px;
  opacity: 0.8;
}

/* --- Thanh thông báo --- */
.scroll-text {
  background: #ffc107;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
}

/* --- Banner chính --- */
.banner {
  background: url('https://i.imgur.com/SPHKifs.jpeg') no-repeat center;
  background-size: cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* --- Nội dung chính --- */
.content {
  width: 90%;
  max-width: 800px;
  margin: 10px auto;
  background: white;
  padding: 15px;
  border-radius: 3px;
  text-align: left;
}

.content h4 {
  color: #007bff;
  font-size: 20px;
  margin-bottom: 10px;
}

.content p {
  font-size: 16px;
  line-height: 1.5;
}

/* --- Hình ảnh trong nội dung --- */
.content img {
  max-width: 100%; /* Fix lỗi hình ảnh tràn khung */
  border-radius: 5px;
  display: block;
  margin: 10px auto;
}

/* --- Thanh địa chỉ (footer) --- */
.address-bar {
  background: #007bff;
  color: white;
  padding: 15px;
  font-size: 14px;
}

.address-bar a {
  color: #ffeb3b;
  text-decoration: none;
}

.address-bar a:hover {
  text-decoration: underline;
}

/* --- Nút menu --- */
.utility-button div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

/* --- Video nhúng --- */
iframe {
  display: block;
  margin: 20px auto;
  border-radius: 5px;
  max-width: 100%; /* Đảm bảo video không tràn khung */
}

/* --- Hiệu ứng cho tiêu đề chính --- */
h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Bản quyền --- */
footer p {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  background: #333;
  color: white;
}

/* --- Responsive (Điện thoại, Tablet) --- */
@media (max-width: 768px) {
  .header h1 {
    font-size: 20px;
  }

  .sub-title {
    font-size: 14px;
  }

  .banner {
    height: 150px;
  }

  .content {
    width: 95%;
  }

  .utility-button {
    top: 10px;
    right: 10px;
  }
}