:root {
  --tips-bg: #070708;
  --tips-panel: #101014;
  --tips-border: rgba(201, 162, 39, 0.22);
  --tips-gold: #e8c547;
  --tips-text: #ece8df;
  --tips-muted: rgba(236, 232, 223, 0.62);
  --tips-ok: #3d8f5a;
  --tips-bad: #b33a3a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--tips-bg);
  color: var(--tips-text);
  font-family: "Segoe UI", system-ui, sans-serif;
}

.tips-app {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.tips-header { text-align: center; margin-bottom: 28px; }

.tips-credit {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tips-muted);
}

.tips-header h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--tips-gold);
}

.tips-lead {
  margin: 0;
  color: var(--tips-muted);
  line-height: 1.5;
}

.tips-form,
.tips-success {
  padding: 24px;
  border: 1px solid var(--tips-border);
  border-radius: 14px;
  background: var(--tips-panel);
}

.tips-field {
  display: block;
  margin-bottom: 18px;
}

.tips-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tips-muted);
}

.tips-hint {
  display: block;
  margin: -4px 0 8px;
  font-size: 0.82rem;
  color: var(--tips-muted);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: normal;
}

.tips-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--tips-border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--tips-text);
  font: inherit;
  resize: vertical;
  min-height: 160px;
}

.tips-field textarea:focus {
  outline: none;
  border-color: var(--tips-gold);
}

.tips-msg {
  min-height: 1.2em;
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--tips-muted);
}

.tips-msg.is-error { color: var(--tips-bad); }
.tips-msg.is-ok { color: var(--tips-ok); }

.tips-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tips-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--tips-border);
  border-radius: 999px;
  background: transparent;
  color: var(--tips-text);
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.tips-btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #c9a227, #9a7420);
  color: #120f08;
  font-weight: 700;
}

.tips-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.tips-success { text-align: center; }
.tips-success h2 { margin: 0 0 10px; color: var(--tips-gold); }
.tips-success p { margin: 0 0 18px; color: var(--tips-muted); line-height: 1.5; }
.tips-success .tips-btn { margin: 4px; }
