
    :root {
      --bg: #0b0b10;
      --bg-elevated: #15151f;
      --border: #272734;
      --text: #f4f4f5;
      --muted: #a1a1aa;
      --accent: #ff7ac4;
      --accent-soft: rgba(255, 122, 196, 0.16);
      --radius-lg: 0.9rem;
      --radius-md: 0.6rem;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #181827 0, #05050a 55%);
  color: var(--text);
  min-height: 100vh;
  position: relative;   /* NEU */
}


    a {
      color: var(--accent);
      text-decoration: none;
    }
    a:hover { text-decoration: underline; }

    .shell {
      max-width: 1000px;
      margin: 0 auto;
      padding: 2.5rem 1.4rem 3.2rem;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2.4rem;
      gap: 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-avatar {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 2px solid var(--accent);
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .logo-name {
      font-weight: 600;
      font-size: 1.05rem;
    }

    .logo-sub {
      font-size: 0.8rem;
      color: var(--muted);
    }

    nav {
      display: flex;
      gap: 1.1rem;
      font-size: 0.9rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav a {
      position: relative;
      padding-bottom: 0.08rem;
    }
    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.16s ease-out;
    }
    nav a:hover::after { width: 100%; }

    .intro {
      margin-bottom: 2.2rem;
    }

    .intro-hi {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
    }

    .intro-name {
      font-size: clamp(2rem, 3.1vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .intro-meta {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.3rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.12rem 0.6rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      font-size: 0.78rem;
      color: var(--muted);
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
    }

    .names-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.12rem 0.7rem;
      font-size: 0.9rem;
      margin-top: 0.6rem;
      margin-bottom: 0.6rem;
    }

    .names-label {
      color: var(--muted);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 0.78rem;
    }

    .intro-tagline {
      font-size: 0.95rem;
      margin-top: 0.6rem;
    }

    .layout-main {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 1.6rem;
    }

    @media (max-width: 840px) {
      .layout-main { grid-template-columns: minmax(0, 1fr); }
      header { flex-direction: column; align-items: flex-start; }
      nav { justify-content: flex-start; }
    }

    .card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: rgba(18, 18, 28, 0.96);
      padding: 1.05rem 1.15rem;
    }

    .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.35rem;
      gap: 0.7rem;
    }

    .card-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .card-sub {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 0.8rem;
    }

    .social-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #101018;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .social-link {
      font-size: 0.85rem;
    }

    .section {
      margin-top: 2rem;
    }

    .section-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.3rem;
    }

    /* dropdown (accordion) */
    .accordion {
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      overflow: hidden;
      background: #101018;
    }

    .accordion + .accordion {
      margin-top: 0.7rem;
    }

    .accordion summary {
      list-style: none;
      cursor: pointer;
      padding: 0.7rem 0.9rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      font-size: 0.9rem;
      user-select: none;
    }

    .accordion summary::-webkit-details-marker { display: none; }

    .accordion summary span.label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .accordion-chevron {
      font-size: 0.8rem;
      transform: rotate(90deg);
      transition: transform 0.15s ease-out;
      color: var(--muted);
    }

    details[open] .accordion-chevron {
      transform: rotate(270deg);
    }

    .accordion-body {
      padding: 0.4rem 0.9rem 0.75rem;
      border-top: 1px solid var(--border);
      font-size: 0.83rem;
      color: var(--muted);
    }

    .chips {
      margin-top: 0.4rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.25rem;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.12rem 0.55rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 0.72rem;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.85rem;
    }

    @media (min-width: 720px) {
      .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    .project-card {
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background: #101018;
      padding: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      min-height: 150px;
    }

    .project-title {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .project-meta {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .project-desc {
      font-size: 0.8rem;
      color: var(--muted);
      flex: 1 1 auto;
    }

    .project-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.4rem;
      font-size: 0.8rem;
    }

    footer {
      margin-top: 3rem;
      font-size: 0.75rem;
      color: var(--muted);
      text-align: center;
    }
 
 
 
 
 
 .blog-hero {
  max-width: 680px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(18, 18, 28, 0.96);
  padding: 0.95rem 1.1rem;
}

.blog-card:hover {
  border-color: var(--accent-soft);
  background: radial-gradient(circle at top left,
    rgba(255, 122, 196, 0.10),
    rgba(18, 18, 28, 0.96));
}

.blog-card-link {
  display: block;
  padding: 0.95rem 1.1rem;
  text-decoration: none;
  color: inherit;
}

.blog-card-link:hover {
  background: radial-gradient(circle at top left,
    rgba(255, 122, 196, 0.14),
    rgba(18, 18, 28, 0.96));
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.blog-date {
  opacity: 0.9;
}

.blog-tag {
  padding: 0.08rem 0.45rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: lowercase;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.blog-title-link {
  color: inherit;
  text-decoration: none;
}

.blog-title-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.blog-excerpt {
  font-size: 0.86rem;
  color: var(--muted);
}

.blog-card-link:hover .blog-title {
  color: var(--accent);
}

 
 
 
 
 .post {
  max-width: 720px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 1.4rem;
}

.post-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.post-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}

.post-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}

.post-body h2 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
}

.post-body p {
  margin-bottom: 0.7rem;
}

.post-body ul {
  margin-left: 1.2rem;
  margin-bottom: 0.7rem;
}

.post-body li + li {
  margin-top: 0.25rem;
}

.post-back {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}

.post-back:hover {
  text-decoration: underline;
}

 
 
 .post-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0 0.3rem;
}

.post-images img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: block;
}

 
 
 
 
 
 
 
 
 
 
 
 
/* Schaukelbild als Overlay links oben */
.swing-wrapper {
  position: fixed;          /* hängt jetzt am Viewport, nicht an der Shell */
  left: 7vw;                /* näher an den linken Rand */
  top: -100px;               /* negativ = Bild höher schieben, Ketten „kommen von oben“ */
  pointer-events: none;
  z-index: 0;               /* unter den Cards, aber über dem Hintergrund */
}

.swing-chris {
  height: 105vh;             /* größer, füllt die linke Seite; nach Geschmack z.B. 65–80vh */
  max-height: 1200px;        /* Hard-Limit, falls Monitor sehr hoch ist */
  width: auto;
}

/* Tablet / mittlere Screens: kleiner & etwas nach oben/links schieben */
@media (max-width: 1024px) {
  .swing-wrapper {
    left: -5vw;        /* weiter aus dem Content raus */
    top: -80px;        /* etwas höher, damit dein Name frei bleibt */
  }

  .swing-chris {
    height: 60vh;      /* kleiner als Desktop */
    max-height: 600px;
  }
}

/* Phones: noch kleiner / mittig */
@media (max-width: 720px) {
  .swing-wrapper {
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }

  .swing-chris {
    height: 45vh;
    max-height: 360px;
  }
}
