body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
a {
  color: #bb86fc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(187,134,252,0.4);
  background: rgba(187,134,252,0.12);
  color: #d8c2ff;
  font-weight: 600;
  font-size: 0.9rem;
}
.header {
  text-align: center;
  padding: 10px 0 20px;
}
.header h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}
.tagline {
  margin-top: 16px;
  color: #b0b0b0;
  line-height: 1.6;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.intro {
  background: linear-gradient(135deg, rgba(187,134,252,0.18), rgba(3,218,197,0.12));
  border: 1px solid rgba(187,134,252,0.35);
  border-radius: 16px;
  padding: 24px;
  margin-top: 36px;
  line-height: 1.6;
}
.intro h2 {
  margin-top: 0;
  color: #ffffff;
}
.sections {
  margin-top: 48px;
}
.region {
  margin-top: 60px;
}
.region:first-of-type {
  margin-top: 0;
}
.region h2 {
  color: #ffffff;
  border-bottom: 2px solid #2e2e2e;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.region p {
  color: #a8a8a8;
  line-height: 1.6;
  margin: 0 0 18px 0;
  max-width: 760px;
}
.subsection-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr);
}
.subsection-card {
  background-color: rgba(22,22,22,0.95);
  border: 1px solid rgba(187,134,252,0.16);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.subsection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(187,134,252,0.4);
}
.subsection-card h3 {
  margin: 0 0 14px 0;
  color: #ffffff;
  font-size: 1.15rem;
}
.photo-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 256px);
  overflow-x: auto;
  justify-content: center;
}
.photo-grid img {
  width: 256px;
  height: 256px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #1b1b1b;
  border: 1px solid #2c2c2c;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
@media (max-width: 720px) {
  .toolbar {
    justify-content: center;
  }
  .badge {
    order: -1;
  }
  .intro {
    margin-top: 26px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 160px);
  }
  .photo-grid img {
    width: 160px;
    height: 160px;
  }
}
