:root {
  /* an Buchcover angelehnt: Dunkelblau, Magenta/Pink, Gelb */
  --bg: #0b2346;          /* dunkles Blau */
  --bg-card: #0f274f;
  --accent: #f9c900;      /* Gelbkreis */
  --accent-soft: #fcefab;
  --accent-warm: #e91e63; /* Magenta/Pink */
  --text: #f9fafb;
  --muted: #cbd5f5;
  --border: #1f3b70;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 24px 70px rgba(0,0,0,0.5);
  --shadow-pill: 0 12px 32px rgba(0,0,0,0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, #f72585 0, #f72585 20%, transparent 55%),
    radial-gradient(circle at 90% 0%, #ffd500 0, #ffd500 18%, transparent 50%),
    linear-gradient(180deg, #172554 0, #020617 55%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shell {
  width: 100%;
  max-width: 880px;
  background: linear-gradient(160deg, rgba(15,23,42,0.96), rgba(15,23,42,0.98));
  border-radius: 26px;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 30px 90px rgba(0,0,0,0.8);
  overflow: hidden;
  position: relative;
  padding: 24px;
}

@media (min-width: 768px) {
  .shell {
    padding: 32px 40px 34px;
  }
}

.shell::before,
.shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.shell::before {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(247,37,133,0.5), transparent 70%);
  top: -80px;
  left: -60px;
}

.shell::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,213,0,0.55), transparent 70%);
  top: -40px;
  right: -70px;
}

.content {
  position: relative;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .content {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.4);
  background: radial-gradient(circle at top left,
    rgba(249,199,0,0.2),
    rgba(15,23,42,0.9));
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f72585;
  box-shadow: 0 0 10px rgba(247,37,133,0.9);
}

}

h1 {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.accent {
  background: linear-gradient(120deg, #ffffff, #f9fafb);
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148,163,184,0.45);
  background: radial-gradient(circle at top left,
    rgba(15,23,42,0.95),
    rgba(15,23,42,0.98));
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.17s ease-out;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.link-pill span.icon {
  font-size: 14px;
  opacity: 0.9;
}

.link-pill.primary {
  background: linear-gradient(130deg, #f72585, #ff6f61);
  border-color: transparent;
}

.link-pill.book {
  border-color: rgba(249,199,0,0.7);
  background: linear-gradient(130deg, #fcd34d, #f59e0b);
  color: #111827;
}

.link-pill.book .icon {
  color: #7c2d12;
}

.link-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.85);
  border-color: rgba(248,250,252,0.9);
}

.link-pill.primary:hover {
  filter: brightness(1.06);
}

.note {
  font-size: 12px;
  color: var(--muted);
}

.note strong {
  color: #e5e7eb;
  font-weight: 500;
}

.card {
  border-radius: 20px;
  border: 1px solid rgba(148,163,184,0.5);
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top,
    rgba(15,23,42,0.95),
    rgba(15,23,42,1));
  box-shadow: 0 26px 70px rgba(0,0,0,0.85);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
    rgba(247,37,133,0.18),
    transparent 40%,
    rgba(255,213,0,0.25));
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--muted);
}

.card-header span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(249,199,0,0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249,199,0,0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(249,199,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249,199,0,0);
  }
}

.card-body {
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.stat-label {
  color: var(--muted);
}

.stat-value {
  color: #e5e7eb;
  font-weight: 500;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  color: var(--muted);
  background: rgba(15,23,42,0.9);
}

.hero-cover {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #001b4f 0%, #0b2346 40%, #f72585 100%);
  padding: 12px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.9);
  margin-bottom: 10px;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
    rgba(255,255,255,0.24),
    transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-cover img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.9);
}

footer {
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 480px) {
  .shell {
    border-radius: 20px;
    padding: 18px 18px 20px;
  }
  .link-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .link-pill {
    justify-content: flex-start;
  }
}

.impressum {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(148,163,184,0.4);
  font-size: 13px;
  color: var(--muted);
}

.impressum h2 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #f9fafb;
}

.impressum p {
  margin-bottom: 8px;
}

.impressum a {
  color: #f9c900;
  text-decoration: underline;
}
