*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0f0e0e;
  --surface: #181616;
  --accent: #fc8a84;
  --text: #f0ece6;
  --muted: #888;
  --heat: #fb923c;
  --green: #4ade80;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(252, 138, 132, 0.6);
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 60px 40px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header a {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

header a:hover { color: var(--accent); }

h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
}

.subtitle2 {
  font-size: 1.0rem;
  font-weight: 350;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

.pinkbar {
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  padding: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* OVERLAY GRID */
.group {
  max-width: 1100px;
  margin: 0 auto 52px;
}

.group-label {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  width: 200px;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.card:hover { border-color: var(--border-hover); }

.card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #111;
}

.card-label {
  padding: 8px 8px;
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
  color: var(--text);
}

.error {
  text-align: center;
  color: var(--muted);
  margin-top: 80px;
}