:root {
  --bg: #0b0c0f;
  --bg-soft: #11131a;
  --text: #e6e6e6;
  --muted: #9a9a9a;
  --border: rgba(255,255,255,0.12);
  --accent: #b91f31; /* blood red */
}

* { box-sizing: border-box; }
html, body {
  background: radial-gradient(
      1200px 600px at 50% -10%,
      #141622,
      var(--bg)
    );
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 2;
}

main {
  padding: 22px 0 48px;
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  margin-right: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav a:hover {
  color: var(--text);
}

.nav a.active {
  color: var(--text);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0.9;
}

.adminLink {
  opacity: 0.6;
  font-size: 12px;
}


.hero {
  display: grid;
  gap: 18px;
  padding: 28px 0;
}
.heroCard {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 18px;
  overflow: hidden;
}
.heroImg { width: 100%; height: auto; display: block; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 18px 0 40px; }
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
}
.card img { width: 100%; display: block; }
.card .pad { padding: 12px 12px 14px; }
.kicker { color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.title { font-size: 16px; margin-top: 6px; font-weight: 650; }

.modalBackdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  width: min(980px, 100%);
  border: 1px solid var(--border);
  background: #0b0b10;
  border-radius: 16px;
  overflow: hidden;
}
.modalTop { display:flex; justify-content: space-between; align-items:center; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.btn {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--fg);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.btn:hover { background: rgba(255,255,255,0.10); }
.embed { aspect-ratio: 16/9; width: 100%; }
.embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.filmGrain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: overlay;
  opacity: 0.25;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
