
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
}

/* Video nền full màn hình */
#bg-video, #overlay-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Ẩn mọi thứ ban đầu */
#overlay-video,
.logo,
.logo-left,
.logo-right,
.content {
  display: none;
}

/* Logo giữa phía trên */
.logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 250px;
}

/* Logo bên trái */
.logo-left {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo-left img {
  height: 80px;
}
/* Ảnh dưới logo */
.under-logo {
  position: absolute;
  top: 300px; /* cách logo chính khoảng 30px, có thể chỉnh */
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 2;
}

.under-logo img {
  width: 250px; /* kích thước ảnh */
  border-radius: 10px;
}

/* Logo bên phải */
.logo-right {
  position: absolute;
  top: 20px;
  right: 20px;
}

.logo-right img {
  height: 80px;
}

/* Nội dung giữa màn hình (ẩn sẵn) */
.content {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
}

.content img {
  width: 250px;
  margin: 0 15px;
  border-radius: 12px;
  border: 3px solid red;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.content img:hover {
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }
  .content img {
    width: 120px;
  }
}
