/* Simple modern parked domain style */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

:root {
  --text: #111;
  --subtext: #444;
  --bg: #fafafa;
}

/* Auto dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #eee;
    --subtext: #aaa;
    --bg: #111;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* subtle animated gradient */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(255,0,150,0.2), rgba(0,120,255,0.2));
  animation: float 12s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes float {
  from { transform: translate3d(-10px, -10px, 0); }
  to   { transform: translate3d(10px, 10px, 0); }
}

.container {
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.tagline {
  font-size: 1.3rem;
  color: var(--subtext);
  margin-bottom: 20px;
}

.note {
  font-size: 1rem;
  color: var(--subtext);
}