@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

body {
  --accent: #b09d62;
  --accent-bright: #b09d62;
  --bg-gradient: radial-gradient(circle at top left, #1b1b20, #0f0f11 60%);

  margin: 0;
  font-family: 'Figtree', 'Inter', sans-serif;
  background: #0f0f11;
  color: #eee;
  overflow-x: hidden;
}
header {
  padding: 2.5rem 1rem;
  text-align: center;
  position: relative;
}
h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #b09d62;
}
p.sub {
  font-size: 1.2rem;
  color: #bbb;
  margin-top: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Mascot */
.mascot-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -2rem;
  margin-bottom: -1rem;
  pointer-events: none;
}
.mascot {
  width: 120px;
  transform: rotate(-6deg);
  filter: drop-shadow(0px 6px 12px rgba(0,0,0,0.4));
  animation: floaty 3s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

.container {
  max-width: 650px;
  margin: 4rem auto;
  background: #18181b;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  position: relative;
}

h2 {
  font-size: 1.8rem;
  color: #b09d62;
  margin-top:0;
}

form {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

input {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #333;
  border-radius: 14px;
  background: #0f0f11;
  color: #eee;
}
input:focus {
  outline: none;
  border-color: #b09d62;
  box-shadow: 0 0 8px rgba(139,92,246,0.4);
}

button {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  background: #b09d62;
  color: #111;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}

button:hover {
  background: #dac074;
  transform: translateY(-2px);
}

button:active {
  transform: scale(0.97);
}

.features {
  margin-top: 2rem;
  padding-left: 1rem;
  color: #ccc;
}

.feature-item {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.feature-item:hover {
  transform: translateX(6px);
  color: #dac074;
}

footer {
  text-align: center;
  margin-top: 3rem;
  color: #777;
  padding-bottom: 3rem;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  .container { margin: 3rem 1rem; padding: 1.5rem; }
  form { flex-direction: column; }
  button { width: 100%; }
  .mascot { width: 90px; }
}
