    :root {
      /* 🌙 DARK MODE FARBEN - FARBE ÄNDERN: Hier dunkle Farben anpassen */
      --bg-gradient-start: #0044ff;        /* Hintergrund-Verlauf Start (Blau) */
      --bg-gradient-end: #020081;          /* Hintergrund-Verlauf Ende (Lila) */
      --profile-bg: rgba(0, 0, 0, 0.3);    /* Profil-Hintergrund (Transparent-Schwarz) */
      --text-color: #fff;                  /* Haupttext-Farbe (Weiß) */
      --text-secondary: rgba(255, 255, 255, 0.85); /* Nebentexte (Helles Grau) */
      --role-bg: rgba(0, 0, 0, 0.4);       /* Rollen-Tags Hintergrund */
      --role-border: rgba(0, 0, 0, 0.1);   /* Rollen-Tags Rand */
      --button-bg: rgba(0, 0, 0, 0.4);     /* Button-Hintergrund */
      --button-border: rgba(0, 0, 0, 0.15); /* Button-Rand */
      --button-hover-bg: rgba(0, 0, 0, 0.6); /* Button beim Darüberfahren */
      --description-bg: rgba(0, 0, 0, 0.25); /* Beschreibungs-Hintergrund */
      --description-border: rgba(0, 0, 0, 0.199); /* Beschreibungs-Rand */
      --link-color: #00d9ff;               /* Link-Farbe (Gold) */
      --link-hover: #8efbff;               /* Link beim Darüberfahren (Hellgold) */
      --shadow-color: rgba(0, 0, 0, 0.4);  /* Schatten-Farbe */
      --avatar-border: rgb(0, 0, 0);       /* Avatar-Rand (Schwarz) */
    }

    .light-mode {
      /* ☀️ LIGHT MODE FARBEN - FARBE ÄNDERN: Hier helle Farben anpassen */
      --bg-gradient-start: #a1c4fd;        /* Heller Hintergrund-Verlauf Start */
      --bg-gradient-end: #c2e9fb;          /* Heller Hintergrund-Verlauf Ende */
      --profile-bg: rgba(235, 235, 235, 0.623); /* Heller Profil-Hintergrund */
      --text-color: #333;                  /* Dunkler Text für hellen Hintergrund */
      --text-secondary: rgba(51, 51, 51, 0.9); /* Dunkle Nebentexte */
      --role-bg: rgba(235, 235, 235, 0.623); /* Helle Rollen-Tags */
      --role-border: rgba(255, 255, 255, 0.822); /* Helle Rollen-Ränder */
      --button-bg: rgba(235, 235, 235, 0.623); /* Helle Buttons */
      --button-border: rgba(255, 255, 255, 0.822); /* Helle Button-Ränder */
      --button-hover-bg: rgba(235, 235, 235, 0.623); /* Helle Button-Hover */
      --description-bg: rgba(235, 235, 235, 0.623); /* Helle Beschreibung */
      --description-border: rgba(255, 255, 255, 0.822); /* Heller Beschreibungs-Rand */
      --link-color: #1c4988;               /* Blaue Links */
      --link-hover: #2f63ac;               /* Hellblaue Links beim Hover */
      --shadow-color: rgba(0, 0, 0, 0.15); /* Sanfte Schatten */
      --avatar-border: rgb(255, 255, 255); /* Weißer Avatar-Rand */
    }

    /* 📱 GRUNDLAYOUT */
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
      color: var(--text-color);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      transition: background 0.5s ease;
    }

    /* 🎴 PROFIL-CONTAINER */
    .profile-container {
      max-width: 500px;
      width: 100%;
      background: transparent;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px var(--shadow-color);
      position: relative;
    }

    /* 🖼️ BANNER-STYLING */
    .banner {
      width: 100%;
      height: 180px;
      overflow: hidden;
    }

    .banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      display: block;
    }

    /* 👤 AVATAR-STYLING */
    .avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--avatar-border);
      position: absolute;
      top: 120px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 📄 PROFIL-INHALT */
    .profile-content {
      background: var(--profile-bg);
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      padding-top: 70px;
      margin-top: -40px;
      transition: background 0.5s ease;
    }

    .profile-info {
      padding: 0 25px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* 👤 USERNAME-STYLING */
    .username {
      margin-top: 40px;
      font-size: 28px;
      font-weight: bold;
      letter-spacing: 0.5px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* 🔤 PRONOMEN-STYLING */
    .pronouns {
      margin-top: 8px;
      font-size: 15px;
      color: var(--text-secondary);
    }

    /* 🏷️ ROLLEN-STYLING */
    .roles {
      margin-top: 15px;
      text-align: center;
      width: 100%;
    }

    .roles-title {
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--text-color);
    }

    .role-tags {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 5px;
    }

    .role-tags span {
      background-color: var(--role-bg);
      border: 1px solid var(--role-border);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      transition: all 0.3s ease;
      color: var(--text-color);
    }

    .role-tags span:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
    }

    /* 🔗 LINK-BEREICH */
    .link {
      margin-top: 15px;
      font-size: 16px;
      color: var(--text-color);
    }

    .link a {
      color: var(--link-color);
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
    }

    .link a:hover {
      color: var(--link-hover);
    }

    /* 📱 SOCIAL MEDIA BUTTONS */
    .accounts {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      width: 100%;
      max-width: 400px;
    }

    .account-button {
      background-color: var(--button-bg);
      border: 1px solid var(--button-border);
      padding: 10px 20px;
      border-radius: 12px;
      color: var(--text-color);
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s ease;
      flex: 1;
      min-width: 120px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    .account-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* 📝 BESCHREIBUNG */
    .description {
      padding: 25px;
      font-size: 16px;
      line-height: 1.6;
      border-top: 1px solid var(--description-border);
      background: var(--description-bg);
      text-align: center;
      font-style: italic;
      color: var(--text-color);
      transition: all 0.5s ease;
    }

    /* ☀️🌙 THEME-SWITCHER */
    .theme-switcher {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 100;
      background: var(--button-bg);
      border: 1px solid var(--button-border);
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .theme-switcher:hover {
      background: var(--button-hover-bg);
      transform: scale(1.05) rotate(15deg);
    }

    .theme-switcher i {
      font-size: 22px;
      transition: transform 0.5s ease;
    }

    /* 😀 EMOJI-STYLING */
    .emoji {
      font-size: 1.2em;
      vertical-align: middle;
      margin: 0 2px;
    }

    /* 📱 RESPONSIVE DESIGN für kleinere Bildschirme */
    @media (max-width: 600px) {
      .profile-container {
        margin: 10px;
      }
      
      .username {
        font-size: 24px;
      }
      
      .accounts {
        flex-direction: column;
      }
      
      .account-button {
        min-width: 200px;
      }
    }

     body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, #0044ff, #020081);
    color: white;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
  }

  .content {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-sizing: border-box;
    text-align: center;
  }

  .footer-bubble {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

.footer-bubble-content {
  background: var(--profile-bg);
  border-radius: 20px;
  padding: 1rem 2rem;
  box-shadow: 0 0 8px var(--shadow-color);
  text-align: center;
  color: var(--text-color);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-bubble-content a {
  color: var(--link-color);
  margin: 0 0.8rem;
  text-decoration: none;
}

.footer-bubble-content a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

  @media (max-width: 600px) {
    .footer-bubble-content {
      font-size: 0.85rem;
      padding: 0.8rem 1rem;
    }
    .footer-bubble-content a {
      display: block;
      margin: 0.3rem 0;
    }
  }