/* Arcwyrd — overrides for Evennia's stock Bootstrap pages.
 *
 * The landing, login and signup pages use their own shell (arcwyrd_base.html
 * + arcwyrd.css) and never load this. This file covers the pages still served
 * by Evennia's templates -- help, channels, character lists, password reset --
 * so a player who follows a link out of the landing page does not fall through
 * into an unstyled white site.
 */

body {
  background-color: #05070a;
  background-image: url("../images/bg-seam.webp");
  background-size: cover;
  background-position: 58% center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #e8edf2;
}

/* Darkening layer: the art has bright neon that would otherwise sit directly
   behind body copy. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(5, 7, 10, 0.88);
  pointer-events: none;
}
body > * { position: relative; z-index: 1; }

.card, .jumbotron, .list-group-item, .table, .modal-content {
  background-color: rgba(10, 14, 19, 0.85) !important;
  border-color: rgba(150, 190, 215, 0.16) !important;
  color: #e8edf2;
}

.navbar, footer {
  background-color: rgba(5, 7, 10, 0.92) !important;
  border-bottom: 1px solid rgba(150, 190, 215, 0.16);
}

a { color: #6fd8ea; }
a:hover { color: #a8e8f4; }

.table, .table td, .table th { color: #e8edf2; border-color: rgba(150, 190, 215, 0.16); }

.form-control {
  background-color: rgba(4, 7, 10, 0.72);
  border-color: rgba(150, 190, 215, 0.16);
  color: #e8edf2;
}
.form-control:focus {
  background-color: rgba(4, 7, 10, 0.85);
  border-color: #6fd8ea;
  color: #e8edf2;
  box-shadow: none;
}

.btn-primary {
  background-color: rgba(111, 216, 234, 0.12);
  border-color: rgba(111, 216, 234, 0.45);
  color: #6fd8ea;
}
.btn-primary:hover { background-color: rgba(111, 216, 234, 0.24); color: #fff; }

.text-muted { color: #9aa7b4 !important; }
