body {
  margin: 0;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(157,123,255,0.12), transparent),
    radial-gradient(ellipse 700px 400px at 100% 20%, rgba(255,122,209,0.10), transparent),
    #170f1c;
  color: #f6e9f5;
  font-family: 'JetBrains Mono', monospace;
  min-height: 100vh;
}

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

.listing-header .prompt {
  font-size: 0.85rem;
  color: #b295c2;
  margin: 0 0 0.6rem;
}

.listing-header .cursor {
  color: #ff7ad1;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .listing-header .cursor { animation: none; }
}

.listing-header h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-shadow: 0 0 18px rgba(255, 122, 209, 0.35);
}

.listing-header h1 a {
  color: #f6e9f5;
  text-decoration: none;
}

.listing-header h1 span { color: #ff7ad1; }
.listing-header h1 .heart { color: #9d7bff; font-size: 1.2rem; }

.listing-header .back {
  margin: 0 0 1.6rem;
  font-size: 0.82rem;
}

.listing-header .back a {
  color: #ff7ad1;
  text-decoration: none;
}

.listing-header .back a:hover { text-decoration: underline; }

.listing-table-wrap {
  border: 1px solid #3c2749;
  border-radius: 14px;
  overflow: hidden;
  background: #20142a;
}

.listing-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.listing-table-wrap th {
  text-align: left;
  padding: 0.65rem 0.9rem;
  color: #b295c2;
  font-weight: 500;
  border-bottom: 1px solid #3c2749;
  background: rgba(255, 255, 255, 0.02);
}

.listing-table-wrap td {
  padding: 0.4rem 0.9rem;
  border-bottom: 1px solid rgba(60, 39, 73, 0.4);
  white-space: nowrap;
}

.listing-table-wrap tr:last-child td { border-bottom: none; }
.listing-table-wrap tr:hover td { background: rgba(255, 122, 209, 0.07); }

.listing-table-wrap a {
  color: #ff7ad1;
  text-decoration: none;
}

.listing-table-wrap a:hover {
  text-decoration: underline;
  color: #9d7bff;
}

/* Hide Apache's default clip-art icons and separator rules -- they don't fit the theme */
.listing-table-wrap img { display: none; }
.listing-table-wrap hr { display: none; }
.listing-table-wrap th[colspan] { display: none; }

.listing-footer {
  margin-top: 2rem;
  color: #b295c2;
  font-size: 0.78rem;
}

.listing-footer a {
  color: #ff7ad1;
  text-decoration: none;
}

.listing-footer a:hover { text-decoration: underline; }
