body {
  font-family: "Poppins", sans-serif;
  background: #121212;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header, footer {
  background: #1e1e1e;
  padding: 15px;
  text-align: center;
  color: #ff7aa2;
  font-weight: 600;
}
header nav {
  margin-top: 8px;
}
header nav a {
  color: #ff9bb2;
  text-decoration: none;
  margin: 0 10px;
}
header nav a:hover {
  text-decoration: underline;
}
footer {
  font-size: 0.8rem;
  margin-top: auto;
}

/* Main */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Form */
form {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 77, 109, 0.3);
  width: 100%;
  max-width: 400px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #ff9bb2;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.95rem;
}
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #ff4d6d;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover { background: #ff3355; }

/* Typing */
.typing {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 30px;
  height: 20px;
}

/* About */
.about {
  max-width: 600px;
  text-align: center;
}
.about h2 {
  margin-bottom: 15px;
  color: #ff4d6d;
}
.about p {
  margin-bottom: 15px;
  line-height: 1.6;
}