@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
  --accent: #00acee;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-sub: #cccccc;
  --footer-height: 48px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
  overflow-x: hidden;
  position: relative;
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.container {
  min-height: 100vh;
  padding: 2rem 2rem calc(2rem + var(--footer-height));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.card {
  width: min(90vw, 700px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 3rem);
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.01);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.tagline {
  margin-top: 1.25rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-sub);
}

.contact {
  margin-top: 1.25rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover,
.contact a:focus {
  color: #66d4ff;
  border-bottom-color: currentColor;
}

lottie-player {
  width: min(60vw, 360px);
  height: auto !important;
  max-height: 360px;
  margin: clamp(1rem, 2vw, 2rem) auto;
}

footer {
  position: fixed;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--text-sub);
  font-size: 0.85rem;
  z-index: 2;
  pointer-events: none;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
