/* Shared stylesheet — dark gallery theme, no external assets */
:root {
  --bg: #0d0d0f;
  --panel: #141416;
  --text: #e8e6e1;
  --muted: #9a978f;
  --accent: #d8b46a;
  --line: #26262a;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  padding: 0 1.25rem;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

header.hero { text-align: center; margin-bottom: 2.5rem; }
header.hero h1 {
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}
header.hero .price {
  color: var(--accent);
  font-size: 1.15rem;
  margin-top: 0.6rem;
}

.btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.9rem 2.6rem;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.btn:hover { background: #e6c37e; }

section { margin: 2.75rem 0; }
section h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.grid figure {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.desc p, .inside p { color: var(--text); margin-bottom: 0.8rem; }
.inside ul {
  list-style: none;
  margin-top: 1rem;
}
.inside li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  color: var(--muted);
}
.inside li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Index directory */
.pack-list { list-style: none; }
.pack-list li {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
  margin-bottom: 0.9rem;
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.pack-list .name { font-weight: 600; }
.pack-list .theme { color: var(--muted); font-size: 0.9rem; display: block; margin-top: 0.25rem; }
.pack-list .go {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.pack-list .go:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .grid { grid-template-columns: 1fr; }
  header.hero h1 { font-size: 1.55rem; }
  .wrap { padding: 2rem 0 3rem; }
  .pack-list li { flex-direction: column; align-items: flex-start; }
}

.bundle-banner {
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid #c9a227;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.08);
  font-size: 1rem;
}
.bundle-banner a {
  color: #e8c34a;
  font-weight: 600;
  white-space: nowrap;
}
