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

body {
  height: 100vh;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  z-index: 0;
}

.coming-soon-container {
  position: relative;
  text-align: center;
  z-index: 1;
}

.logo-placeholder {
  width: 150px;
  height: 150px;
  background: #222;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
}

h1 {
  font-size: 3em;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: white;
}

img{
  width:200px;
  margin-bottom:24px;
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  }
  50% {
      transform: scale(1.1);
      box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
  }
}
