body {
  background: #1f2227;
  color: #ffffff;
  font-family: Inter, Arial, sans-serif;
}

.page {
  max-width: 600px;
  margin: 50px auto;
  padding: 32px;
  background: #020617;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

h1 {
  color: #38bdf8;
  margin-bottom: 6px;
}

.subtitle {
  color: #94a3b8;
  margin-bottom: 28px;
  font-size: 14px;
}

.post-form select,
.post-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #242830;
  color: #ffffff;
  font-size: 14px;
}

.post-form textarea {
  min-height: 160px;
  resize: vertical;
}

.proof {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  color: #cbd5f5;
  cursor: pointer;
}

button {
  width: 100%;
  background: linear-gradient(135deg,#f0c27b,#e0b36a);
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(224,179,106,0.4);
}

.note {
  margin-top: 18px;
  font-size: 12px;
  color: #9aa0a6;
}
