@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: -webkit-fill-available;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

canvas#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  background: transparent;
  z-index: 1;
}

.logo-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 0.3s;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.6),
    rgba(255, 60, 0, 0) 70%
  );
  transform: translate(-50%, -50%);
  animation: pulse 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.9;
  }
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffb86c;
  text-shadow: 0 0 10px #ff4500;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 0.8s;
}

p.tagline {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ffb699;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 1.3s;
}

a.cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #ff4500;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 1.8s;
}

a.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff4500;
}

footer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 2.3s;
}

footer a.email {
  color: #ff0000;
  text-decoration: none;
  font-weight: 600;
}
footer a.powered {
  color: #00b050;
  text-decoration: none;
  font-weight: 600;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
  footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}
