* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* ---------- NAV ---------- */
nav {
  background: #000;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #c9a14a;
  text-decoration: none;
  font-weight: 600;
}

/* ---------- LAYOUT ---------- */
main {
  padding: 40px 20px;
}

.center {
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- CARDS ---------- */
.card {
  background: #111;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

h2, h3 {
  text-align: center;
  margin-top: 0;
}

/* ---------- FORM ---------- */
label {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: none;
  background: #0e0e0e;
  color: #fff;
}

textarea {
  resize: none;
}

/* ---------- TYPE TOGGLE ---------- */
.type-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.type-toggle button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #000;
  color: #aaa;
  cursor: pointer;
}

.type-toggle button.active {
  background: #c9a14a;
  color: #000;
  border: none;
}

/* ---------- BUTTONS ---------- */
button.primary {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #c9a14a;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

/* ---------- SUCCESS ---------- */
.success {
  background: #132;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

/* ---------- APP LIST ---------- */
.apps {
  margin-top: 40px;
}

.app-card {
  background: #111;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-card .actions a {
  margin-left: 10px;
  color: #c9a14a;
  text-decoration: none;
  font-weight: 600;
}

.app-card .delete {
  color: #f66;
}

/* ---------- DOMAIN STATUS ---------- */
.status {
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: capitalize;
  font-size: 13px;
}

.status.none {
  background: #333;
  color: #aaa;
}

.status.pending {
  background: #553;
  color: #ffd;
}

.status.verified {
  background: #153;
  color: #6f6;
}

.note {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 10px;
}

/* ---------- UTIL ---------- */
.hidden {
  display: none;
}
