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

body {
  font-family: 'Georgia', serif;
  background-color: #0f0f0f;
  color: #e8e8e8;
  min-height: 100vh;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

h2 {
  font-size: 1.3rem;
  font-weight: normal;
  color: #aaa;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #e8e8e8;
  background: transparent;
  color: #e8e8e8;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: #e8e8e8;
  color: #0f0f0f;
}

.btn-primary {
  background: #e8e8e8;
  color: #0f0f0f;
}

.btn-primary:hover {
  background: transparent;
  color: #e8e8e8;
}

input, textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #e8e8e8;
  padding: 14px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  border-color: #888;
}

textarea {
  min-height: 200px;
  resize: vertical;
}

.error {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.muted {
  color: #888;
  font-size: 0.9rem;
}