:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #555555;
  --accent: #5865f2;
  --accent-hover: #4752c4;
  --border: #e0e0e0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero ── */
header {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

header h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.15rem;
  color: #bbb;
}

/* ── Sections ── */
section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type { border-bottom: none; }

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

p + p { margin-top: 0.75rem; }

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
}

.photo-slot {
  aspect-ratio: 4/3;
  background: #f0f0f0;
  border: 2px dashed var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  cursor: zoom-in;
}

/* ── Discord CTA ── */
.cta {
  text-align: center;
  padding: 3rem 0;
}

.cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.discord-btn:hover { background: var(--accent-hover); }

.discord-btn svg { flex-shrink: 0; }

header .hero-btn { margin-top: 1.75rem; }

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: zoom-out;
}

#lightbox.open { display: flex; }

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* ── Footer ── */
footer {
  background: #1a1a1a;
  color: #888;
  text-align: center;
  font-size: 0.85rem;
  padding: 1.5rem;
}
