@charset "UTF-8";
/* base.css — global layout, typography, small utilities */
@font-face {
  font-family: "Monaspace Neon";
  src: url("/static/fonts/Monaspace Neon Var.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --panel-bg: rgba(18, 18, 18, 0.85);
  --panel-border: rgba(123, 63, 255, 0.25);
  --panel-inset: rgba(255, 255, 255, 0.03);
  --panel-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

body {
  font-family: "Monaspace Neon", monospace;
  color: #f5f5ff;
  background-color: #05060a;
  background: radial-gradient(circle at 20% -10%, rgba(123, 63, 255, 0.25), transparent 45%) no-repeat, radial-gradient(circle at 80% 5%, rgba(123, 63, 255, 0.2), transparent 40%) no-repeat, linear-gradient(180deg, #0c0c0c, #141414 35%, #05060a);
}

body.bg-dark {
  background-color: transparent !important;
  background: radial-gradient(circle at 20% -10%, rgba(123, 63, 255, 0.25), transparent 45%) no-repeat, radial-gradient(circle at 80% 5%, rgba(123, 63, 255, 0.2), transparent 40%) no-repeat, linear-gradient(180deg, #0c0c0c, #141414 35%, #05060a);
}

.nav-panel {
  background: var(--panel-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1200;
}

.navbar-brand.brand-spark {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-brand.brand-spark:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 12px rgba(123, 63, 255, 0.6);
}

.navbar-brand .bi-football {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.navbar-brand.brand-spark:hover .bi-football {
  transform: scale(1.1);
}

.auth-navbar .btn {
  border-radius: 999px;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.auth-navbar .btn:hover {
  box-shadow: 0 0 12px rgba(123, 63, 255, 0.45);
}

h1, h2, h3, h4, h5 {
  font-family: inherit;
}

h1 {
  color: #c87bff;
}

.bg-purple {
  background-color: #7d4cff !important;
}

.landing-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-hero .card {
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.auth-navbar .form-control {
  min-width: 150px;
  background: #141414;
  color: #f5f5ff;
  border-color: rgba(255, 255, 255, 0.1);
}

.auth-navbar button {
  white-space: nowrap;
}

.btn-purple {
  background-color: #7b3fff;
  border-color: #7b3fff;
  color: #f5f5ff;
}

.token-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(55.78125, 0, 178.5, 0.8);
  font-size: 0.8rem;
}

.token-warning i {
  font-size: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-actions .nav-link-btn {
  min-width: 90px;
  background-color: #7b3fff;
  border-color: #7b3fff;
  letter-spacing: 0.04em;
}

.nav-actions .nav-link-btn:hover,
.nav-actions .nav-link-btn:focus {
  background-color: #a463ff;
  border-color: #a463ff;
  color: #f5f5ff;
}

.nav-auth-info {
  font-size: 0.8rem;
  color: #f5f5ff;
}

.nav-auth-info i {
  font-size: 1rem;
}

.nav-auth-btn {
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
}

.nav-logout-btn {
  width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-right {
  justify-content: flex-end;
}

.btn-purple:hover,
.btn-purple:focus {
  background-color: #a463ff;
  border-color: #a463ff;
  color: #f5f5ff;
}

.auth-navbar .disabled {
  pointer-events: none;
  opacity: 0.75;
}

/* small utilities and global indicators */
#status {
  margin-top: 0.5em;
  color: #aaa;
}

#adminLog .list-group-item {
  background-color: #1c1c1c;
  border-color: rgba(255, 255, 255, 0.15);
  color: #f2f2f2;
}

#adminLog .list-group-item .text-secondary {
  color: rgba(255, 255, 255, 0.6);
}

/* Focus outline for inputs/buttons */
button:focus, input:focus, select:focus {
  outline: none;
  outline: none;
  box-shadow: 0 0 0 2px rgba(123, 63, 255, 0.45);
}
