body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(145deg, #06040f, #1b1b3a);
  color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

h1.typewriter {
  font-size: 2.2rem;
  background: linear-gradient(to right, #00ffd5, #7effff);
  -webkit-background-clip: text;
  color: transparent;
  animation: type 3s steps(40) 1 normal both;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes type {
  from { width: 0 }
  to { width: 100% }
}

.input-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(0,255,255,0.05);
  transition: all 0.3s ease;
}

.input-form input,
.input-form select {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
}

.generate-btn {
  background: #00ffaa;
  color: #000;
  font-weight: bold;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.generate-btn:hover {
  background: #00cc88;
  transform: scale(1.05);
}

.loader {
  display: none;
  font-style: italic;
  color: #0ff;
  margin-top: 20px;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.results-area {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.result-card {
  background: rgba(255,255,255,0.07);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.1);
  transition: transform 0.3s;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,255,255,0.2);
}

.domain {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 5px;
}
