      :root {
        --bg-color: #0d0d0d;
        --accent-color: #d4af37;
        --text-color: #f4f4f4;
        --text-muted: #cccccc;
      }

      /* Markierungstext anpassen */
      ::selection {
        background: var(--accent-color); /* Goldener Hintergrund */
        color: #000; /* Schwarzer Text */
      }

      html {
        scroll-behavior: smooth; /* Weiches Scrollen */
      }

      body {
        background-color: var(--bg-color);
        color: var(--text-color);
        font-family: "Inter", sans-serif;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
        text-align: center;
        padding: 40px 20px;
      }

      .container {
        max-width: 1200px;
        width: 100%;
      }

      /* --- Header & Typography --- */
      h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
        color: var(--text-color);
      }

      .tagline {
        font-size: 0.9rem;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--accent-color);
        margin-bottom: 3rem;
      }

      /* --- Instagram Button --- */
      .instagram-link {
        display: inline-block;
        margin-bottom: 4rem;
        padding: 16px 45px;
        background: radial-gradient(circle at center, #d4af37 0%, #b8860b 100%);
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        font-weight: 700;
        border-radius: 2px;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      }

      .instagram-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        background: radial-gradient(circle at center, #f1d592 0%, #d4af37 100%);
      }

      /* --- Über Mich Sektion (Neu mit Bild) --- */
      .about-section {
        max-width: 900px; /* Breiter für Bild+Text */
        margin: 0 auto 3rem auto;
        padding: 0 15px;
      }

      .about-header h2 {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        color: var(--text-color);
        margin-bottom: 2rem;
        font-weight: 400;
        font-style: italic;
      }

      .about-content {
        display: flex;
        align-items: center; /* Vertikal zentriert */
        justify-content: center;
        gap: 50px; /* Abstand Bild zu Text */
        text-align: left; /* Text linksbündig wirkt edler neben Bild */
      }

      /* Dein Profilbild */
      .about-image img {
        width: 200px;
        height: 200px;
        border-radius: 50%; /* Kreisrund */
        object-fit: cover;
        border: 2px solid var(--accent-color);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
      }

      .about-text p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        font-weight: 300;
      }

      /* Tech Badges */
      .gear-badges {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 1.5rem;
      }

      .gear-badges span {
        font-size: 0.7rem;
        border: 1px solid rgba(212, 175, 55, 0.3);
        padding: 6px 14px;
        border-radius: 50px;
        color: var(--accent-color);
        letter-spacing: 1px;
        text-transform: uppercase;
        background: rgba(212, 175, 55, 0.05);
        white-space: nowrap;
      }

      /* Hover-Effekt für das Equipment */
      .gear-badges span:hover {
        background-color: rgba(
          212,
          175,
          55,
          0.2
        ); /* Hintergrund wird goldener */
        border-color: var(--accent-color); /* Rand leuchtet voll auf */
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); /* Leichter "Glow"-Effekt */
        transform: translateY(-2px); /* Schwebt minimal hoch */
        cursor: default; /* Zeiger bleibt normal */
      }

      /* Goldene Trennlinie */
      .divider {
        border: 0;
        height: 1px;
        background-image: linear-gradient(
          to right,
          rgba(0, 0, 0, 0),
          rgba(212, 175, 55, 0.6),
          rgba(0, 0, 0, 0)
        );
        width: 80%;
        max-width: 600px;
        margin: 4rem auto 4rem auto;
      }

      /* --- Galerie (Flexbox Symmetrisch & Performance) --- */
      .photo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Zentriert die letzte Reihe */
        gap: 15px;
        margin-bottom: 4rem;
        width: 100%;
      }

      .photo-item {
        flex: 1 1 300px; /* Basisbreite 300px, darf wachsen/schrumpfen */
        max-width: 400px; /* Nicht breiter als 400px */
        aspect-ratio: 1 / 1; /* Immer Quadratisch */
        cursor: zoom-in;
        border-radius: 2px;
        overflow: hidden; /* Wichtig für Zoom-Effekt */
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
      }

      .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Füllt das Quadrat perfekt aus */
        transition: transform 0.5s ease;
        display: block;
      }

      /* Zoom Effekt beim Hovern */
      .photo-item:hover img {
        transform: scale(1.1);
      }

      .photo-item:hover {
        border-color: var(--accent-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }

      /* --- QR Code Area --- */
      #qrcode-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 2rem 0;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        display: inline-flex;
      }

      #qrcode img {
        padding: 10px;
        background: white;
        border-radius: 4px;
      }

      /* --- Back to Top Button --- */
      #back-to-top {
        display: none; /* Erst unsichtbar */
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: var(--accent-color);
        color: black;
        cursor: pointer;
        padding: 15px;
        border-radius: 50%;
        font-size: 1.2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
      }

      #back-to-top:hover {
        background-color: #f1d592;
        transform: translateY(-3px);
      }

      /* --- Custom Scrollbar (Chrome/Safari/Edge) --- */
      ::-webkit-scrollbar {
        width: 10px;
      }

      ::-webkit-scrollbar-track {
        background: #1a1a1a;
      }

      ::-webkit-scrollbar-thumb {
        background: #444;
        border-radius: 5px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-color); /* Wird Gold beim Anfassen */
      }

      /* --- Footer --- */
      footer {
        margin-top: auto;
        padding: 40px 0;
        font-size: 0.75rem;
        color: var(--text-muted);
        letter-spacing: 1px;
      }

      footer a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
      }
      footer a:hover {
        color: var(--accent-color);
      }

      /* --- Lightbox --- */
      .lightbox {
        display: none;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        cursor: zoom-out;
        backdrop-filter: blur(5px);
      }

      .lightbox img {
        max-width: 90%;
        max-height: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 1px solid var(--accent-color);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
      }

      /* --- Mobile Optimierung (Media Query) --- */
      @media (max-width: 768px) {
        /* QR Code auf Handys weg */
        #qrcode-container {
          display: none;
        }

        /* Container Padding */
        .container {
          padding: 0 10px;
        }

        /* Über mich: Untereinander statt nebeneinander */
        .about-content {
          flex-direction: column;
          text-align: center;
          gap: 20px;
        }

        .gear-badges {
          justify-content: center;
        }

        /* Galerie kleinerer Abstand */
        .photo-grid {
          gap: 8px;
        }

        /* Auf sehr kleinen Handys evtl 2 Spalten erzwingen, oder Flex machen lassen */
        .photo-item {
          max-width: 100%; /* Nimmt verfügbaren Platz */
          flex-basis: 45%; /* Etwa die Hälfte, also 2 pro Reihe */
        }

        /* Back to Top etwas kleiner */
        #back-to-top {
          bottom: 20px;
          right: 20px;
          padding: 10px 15px;
        }
      }

/* --- Animation: Sanftes Einschweben --- */

/* 1. Die Bewegung definieren */
@keyframes sanftesEinschweben {
    from {
        opacity: 0;
        transform: translateY(20px); /* Startet 20px weiter unten */
    }
    to {
        opacity: 1;
        transform: translateY(0);    /* Endet an der normalen Position */
    }
}

/* 2. Auf Text, Button und Über-mich anwenden */
h1, .tagline, .instagram-link, .about-section {
    opacity: 0; /* WICHTIG: Startzustand unsichtbar */
    animation: sanftesEinschweben 0.8s ease-out forwards; /* 'forwards' behält den Endzustand bei */
}

/* 3. Die Galerie etwas später (verzögert) reinholen */
.photo-grid {
    opacity: 0; 
    /* 0.8s Dauer, aber erst nach 0.3s Wartezeit starten */
    animation: sanftesEinschweben 0.8s ease-out 0.3s forwards; 
}

/* 4. Footer ganz am Schluss */
footer {
    opacity: 0;
    animation: sanftesEinschweben 0.8s ease-out 0.6s forwards;
}
 
/* ========================================= */
/* --- IMPRESSUM & DATENSCHUTZ SEITE --- */
/* ========================================= */

.impressum-container {
    max-width: 700px;
    width: 100%;
    text-align: left;
    margin: 4rem auto; /* Zentriert den Container in der Mitte */
}

/* Das 'h1' wird nur verändert, wenn es INNERHALB des Impressums ist */
.impressum-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.impressum-container h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
    color: var(--accent-color);
}

.impressum-container p, 
.impressum-container li {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 1;
}