body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0 20px;
}

.logo-container {
  width: 200px;
  margin-bottom: 30px;
}

.logo {
  width: 100%;
  display: block;
}

.wave-logo {
  animation: wavebreath 3s ease-in-out infinite;
}

@keyframes wavebreath {
  0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(0,183,255,0.3)); }
  50% { transform: scale(1.02); filter: drop-shadow(0 0 30px rgba(0,183,255,0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(0,183,255,0.3)); }
}

h1 {
  font-size: 8vw;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff7e00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 4vw;
  max-width: 600px;
  color: #ccc;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: #00b7ff;
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #8f00ff;
  color: #fff;
}

@media (max-width: 600px) {
  .logo-container {
    width: 150px;
  }
  h1 {
    font-size: 9vw;
  }
  .hero p {
    font-size: 5vw;
  }
}
