*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
@font-face {
  font-family: 'LDFComicSans';
  src: url('../fonts/ldfcomicsans.woff2') format('woff2'),
       url('../fonts/ldfcomicsans.woff') format('woff');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root { --bg:#07110d; --panel:#0c1a15; --muted:#a6c5b9; --text:#ecf5f1; --accent:#34d399; --accent-2:#10b981; --border:#163126; --shadow:0 10px 30px rgba(0,0,0,.35); }
body { font-family: 'LDFComicSans', "Comic Sans MS", "Comic Sans", cursive, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial; background: radial-gradient(1200px 600px at 80% -10%, rgba(24,67,53,.5), transparent 60%), radial-gradient(1000px 500px at -10% 10%, rgba(16,44,35,.5), transparent 60%), var(--bg); color: var(--text); line-height: 1.6; font-weight: 700; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(1.2) blur(10px); background: rgba(7,17,13,.6); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .3px; color: var(--text); text-decoration: none; }
.brand img { width: 32px; height: 32px; border-radius: 6px; box-shadow: var(--shadow); display: block; }
.nav { display: flex; gap: 18px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; padding: 8px 10px; border-radius: 8px; }
.nav a:hover { color: var(--text); background: rgba(16,185,129,.12); }
.discord-btn { background: #5865f2; color: white !important; }
.discord-btn:hover { background: #4752c4; color: white !important; }
.section { padding: 36px 0; }
.lead { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--panel); box-shadow: var(--shadow); }
.item img { width: 100%; height: 180px; object-fit: cover; display: block; }
.caption { padding: 10px; color: var(--muted); font-size: 14px; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 1000; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow); display: block; }
.footer { border-top: 1px solid var(--border); color: var(--muted); padding: 24px 0 48px; font-size: 14px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:visited { color: var(--muted); }
.footer a:hover { color: var(--text); }
@media (max-width: 960px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .nav { display: none; } .grid { grid-template-columns: 1fr; } }
