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

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow: hidden;
  color: #ffffff;
}

/* Animated Gradient Background */
.background {
  position: fixed;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #0f172a,
    #1e293b,
    #334155,
    #1e293b,
    #0f172a
  );
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: -1;
}

@keyframes gradientMove {
  0% { transform: translate(0%, 0%); }
  50% { transform: translate(-25%, -25%); }
  100% { transform: translate(0%, 0%); }
}

/* 🧊 Glassmorphism Card */
.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.glass-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 420px;
  width: 100%;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  animation: float 6s ease-in-out infinite;
}

/* ✨ Floating effect */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tagline {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

.contact {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.divider {
  margin: 2rem auto;
  width: 50px;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

.footer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}