
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #FF8A35, #F1594C);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.overlay-vectors::before {
  content: "";
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 0;
}

.coming-soon-content {
  z-index: 2;
  position: relative;
}

.logo {
  width: 110px;
  height: 110px;
}

.logo-text {
  height: 60px;
}

footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  font-size: 14px;
}

.fade-in {
  animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
