/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Container Styling */
.container {
  max-width: 600px;
  animation: fadeIn 1.5s ease;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #00ffe1;
  margin-bottom: 1rem;
}
.logo span {
  color: #ff0080;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.note {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #bbbbbb;
}

.contact a {
  color: #00ffe1;
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}

footer {
  font-size: 0.75rem;
  color: #666666;
  margin-top: 3rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
  }
}
