/* === Stable ExposeJustice Stylesheet (Restored) === */
:root {
  --bg: #0c0d0f;
  --ink: #f1f3f5;
  --ink-2: #cfd6dd;
  --gold: #c39a4a;
  --gold-2: #e0b764;
  --line: #2a2c30;
  --card: #131417;
  --max: 1100px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: 'Inter', system-ui, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}
.btn.gold {
  background: var(--gold);
  color: #0b0b0b;
  border-color: transparent;
}
.btn:hover { filter: brightness(1.05); }

/* Hero */
header.hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(34px, 5.8vw, 64px);
  line-height: 1.1;
  margin: 0 0 18px;
}
.hero p {
  max-width: 820px;
  margin: 0 auto 28px;
  color: var(--ink-2);
  font-size: clamp(16px, 2.4vw, 18px);
}
.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 36px);
  margin: 0 0 10px;
}
.muted { color: var(--ink-2); margin: 0 0 22px; }
.img-frame {
  background: #101214;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: sepia(22%) grayscale(30%);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portrait {
  background: #0f1114;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 12px;
}
.portrait img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.98;
}

/* Page Header */
header.page {
  padding: 60px 0 30px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
h1.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 48px);
  margin: 0 0 8px;
}

/* Accordion */
.grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
details.ac {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
details[open] summary { border-bottom: 1px solid var(--line); }
.ac-body { padding: 16px 18px; }
ul.vlist { margin: 0; padding-left: 18px; line-height: 1.6; }
ul.vlist li { margin: 6px 0; }
.top-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* Gold mid-page buttons */
.section .container a.btn[href$='violations.html'],
.section .container a.btn[href$='players.html'] {
  background: #d4af37;
  color: #111;
  border: 1px solid #b9962e;
  font-weight: 700;
  transition: all 0.2s ease;
}
.section .container a.btn[href$='violations.html']:hover,
.section .container a.btn[href$='players.html']:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Font readability restore */
body {
  font-family: 'Inter', system-ui, 'Segoe UI', Roboto, Arial, sans-serif !important;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink-2);
}

/* --- Notice bar (SCOTUS filing) --- */
.notice-bar{
  background:#111;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:.8rem .6rem;
  text-align:center;
  margin-top:1.2rem;
}
.notice-bar a{
  color:#d4af37;
  font-weight:700;
  text-decoration:none;
  letter-spacing:0.2px;
}
.notice-bar a:hover{
  text-decoration:underline;
  filter:brightness(1.15);
}

/* fade-in animation */
.fade-in{
  opacity:0;
  animation: ejFadeInBar 1.2s ease-in forwards;
}
@keyframes ejFadeInBar{
  from{ opacity:0; transform:translateY(-8px); }
  to{ opacity:1; transform:translateY(0); }
}


/* --- "Recent Filing" badge --- */
.badge-new{
  background:#d4af37;
  color:#111;
  font-weight:700;
  border-radius:6px;
  padding:0.25rem 0.6rem;
  margin-right:0.5rem;
  text-transform:uppercase;
  font-size:0.75rem;
  letter-spacing:0.4px;
  animation:pulseBadge 2.5s ease-in-out infinite;
}
@keyframes pulseBadge{
  0%,100%{opacity:1;}
  50%{opacity:0.55;}
}

