/* Project No More: Listmonk public pages (lists.projectnomore.net)
   Paste into: Settings -> Appearance -> Public -> Custom CSS
   Tokens mirror the site :root exactly. No new hex, no border-radius,
   corner language is the 6px clip-path cut. */
@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Share+Tech+Mono&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");
:root {
  --black: #050508;
  --black-2: #0a0a10;
  --panel: #0c0c14;
  --panel-2: #10101c;
  --border: #1a1a2e;
  --border-bright: #252540;
  --gold: #d4a828;
  --gold-bright: #f0c030;
  --gold-dim: #9a7a1c;
  --blue: #1a8fff;
  --blue-bright: #40a8ff;
  --text: #c8c8d4;
  --text-soft: #8888a0;
  --text-muted: #555570;
  --white: #e8e8f0;
}
html { background: var(--black); }
body {
  background: var(--black);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding: 0 16px;
}
/* Layout shell (Listmonk wraps every public page in .container.wrap) */
.container.wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0 24px;
  background: var(--black);   /* FIX: kills the white bands on the /admin/login page */
}
/* Header: wordmark. If a Logo URL is set in Appearance it renders above the
   wordmark text; without one, the text alone carries the brand. */
.header { text-align: center; margin-bottom: 28px; }
.header .logo img { max-height: 44px; width: auto; display: inline-block; }
.header .logo a { text-decoration: none; display: inline-block; }
.header .logo a::after {
  content: "Project No More";
  display: block;
  font-family: "Black Ops One", sans-serif;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
}
/* Content card */
section {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
}
h1, h2, h3 {
  font-family: "Black Ops One", sans-serif;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 18px;
}
h2 { font-size: 1.3rem; }
h3 { font-size: 1rem; }
p { margin: 0 0 14px; }
a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--blue-bright); }
/* Forms */
label {
  display: block;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  background: rgba(12, 12, 20, 0.8);
  border: 1px solid var(--border-bright);
  border-radius: 0;
  color: var(--white);
  font-family: "Share Tech Mono", monospace;
  font-size: 1rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus { border-color: var(--gold); }
input::placeholder { color: var(--text); opacity: 0.55; }
/* FIX: stop the browser's saved-password autofill from painting the login fields pale */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(12, 12, 20, 0.8) inset;
  -webkit-text-fill-color: var(--white);
  caret-color: var(--white);
}
/* Hidden honeypot field in the stock form */
input.nonce { display: none; }
/* List checkboxes */
ul.lists { list-style: none; margin: 18px 0; padding: 0; }
ul.lists h2 {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 10px;
}
ul.lists li {
  background: var(--panel-2);
  border: 1px solid var(--border);
  padding: 12px 14px;
  margin-bottom: 8px;
}
ul.lists li label {
  display: inline;
  font-size: 0.85rem;
  color: var(--white);
  margin: 0 0 0 8px;
  vertical-align: middle;
}
ul.lists input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
ul.lists p.description {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 8px 0 0 24px;
}
/* Buttons */
button, .button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border: 1px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
button:hover, .button:hover, input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateY(-1px);
  color: var(--black);
}
/* Captcha container */
.captcha { margin: 18px 0; }
altcha-widget {
  --altcha-color-base: var(--panel-2);
  --altcha-color-border: var(--border-bright);
  --altcha-color-text: var(--text);
  --altcha-border-radius: 0;
}
/* Archive link row in the stock form */
p.right { text-align: right; font-size: 0.85rem; }
/* Footer (Powered by listmonk credit, kept, muted) */
footer.container {
  text-align: center;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 0 32px;
}
footer.container a { color: var(--text-muted); }
footer.container a:hover { color: var(--text-soft); }
/* Quality floor */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
::selection { background: var(--gold); color: var(--black); }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
@media (max-width: 640px) {
  .container.wrap { padding-top: 24px; }
  section { padding: 20px 16px; }
  button, .button, input[type="submit"] { width: 100%; }
}