
/* cookies style */
.cookie-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #1e1e1e;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  z-index: 9999;
}

.cookie-box p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.btn {
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
}

.reject {
  background: #444;
  color: #fff;
}

.accept {
  background: #fff;
  color: #000;
  font-weight: bold;
}

.cookie-link {
  font-size: 12px;
  color: #aaa;
  text-decoration: underline;
}
/* end cookies style */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* 50% black */
}
@media (max-width: 768px) {
  .scene .reveal {
    grid-template-columns: 1fr !important;
  }
}
