@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* { 
      margin: 0; 
    padding: 0; 
    box-sizing: border-box; }

body {
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #120909, #1a0d0d, #000);
  overflow: hidden;
  font-family: 'poppins';
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.container {
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 220px;
  animation: fadeIn 2s ease-in-out;
  filter: drop-shadow(0 0 15px rgba(255, 200, 200, 0.4));
}

.tagline {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #f0eaea;
  letter-spacing: 1px;
  animation: fadeInUp 2s ease forwards;
}

.subtext {
  margin-top: 10px;
  font-size: 1rem;
  color: #c9bfbf;
  opacity: 0.8;
  animation: fadeInUp 3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .tagline {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  .subtext {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 160px; 
  }
  .tagline {
    font-size: 1rem;
    margin-top: 15px;
  }
  .subtext {
    font-size: 0.8rem;
  }
}
