/* ===== RESET ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #0d0d0d;
      background-image: radial-gradient(ellipse at 20% 50%, rgba(60, 60, 70, 0.3) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(80, 80, 100, 0.15) 0%, transparent 50%);
      color: #f0f0f0;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.7;
      min-height: 100vh;
      padding: 2rem 1.5rem 4rem 1.5rem;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
    }

    /* ===== HEADER ===== */
    .page-header {
      margin-bottom: 3rem;
      text-align: center;
    }

    .page-header .badge {
      display: inline-block;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: rgba(138, 180, 248, 0.4);
      font-weight: 600;
      background: rgba(138, 180, 248, 0.04);
      padding: 0.3rem 1.2rem;
      border-radius: 30px;
      border: 1px solid rgba(138, 180, 248, 0.04);
      margin-bottom: 1rem;
    }

    .page-header h1 {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      background: linear-gradient(135deg, #ffffff 0%, #c8d8ff 30%, #8ab4f8 60%, #a8c8ff 80%, #ffffff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 4px 30px rgba(138, 180, 248, 0.04));
    }

    .page-header .sub {
      color: rgba(255, 255, 255, 0.3);
      font-size: 1rem;
      margin-top: 0.3rem;
      letter-spacing: 0.5px;
    }

    /* ===== CARD ===== */
    .legal-card {
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 24px;
      padding: 2.5rem 3rem;
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
      position: relative;
      overflow: hidden;
    }

    .legal-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -30%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(138, 180, 248, 0.04), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: floatGlow 15s ease-in-out infinite;
    }

    .legal-card::after {
      content: '';
      position: absolute;
      bottom: -40%;
      left: -20%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(138, 180, 248, 0.03), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: floatGlow 20s ease-in-out infinite reverse;
    }

    @keyframes floatGlow {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -20px) scale(1.1); }
      66% { transform: translate(-20px, 30px) scale(0.9); }
    }

    .legal-card > * {
      position: relative;
      z-index: 1;
    }

    /* ===== SECTIONS ===== */
    .section {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .section:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .section h2 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #8ab4f8;
      margin-bottom: 0.5rem;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }

    .section p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
      font-size: 1rem;
    }

    .section p strong {
      color: #f0f0f0;
      font-weight: 600;
    }

    .section .highlight {
      color: #8ab4f8;
    }

    .section a {
      color: #8ab4f8;
      text-decoration: none;
      transition: color 0.2s, text-shadow 0.2s;
    }

    .section a:hover {
      color: #a8c8ff;
      text-shadow: 0 0 12px rgba(138, 180, 248, 0.2);
    }

    .section a:focus-visible {
      outline: 3px solid #8ab4f8;
      outline-offset: 2px;
      border-radius: 4px;
    }

    .section ul {
      list-style: none;
      padding: 0;
    }

    .section ul li {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
      font-size: 1rem;
      padding-left: 1.5rem;
      position: relative;
    }

    .section ul li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: #8ab4f8;
      font-weight: 600;
    }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 700px) {
      .datenschutz-card {
        padding: 1.8rem 1.5rem;
        border-radius: 16px;
      }

      .page-header h1 {
        font-size: 2.2rem;
      }

      .section h2 {
        font-size: 0.95rem;
      }

      .section p,
      .section ul li {
        font-size: 0.95rem;
      }

    }

    @media (max-width: 480px) {
      body {
        padding: 1rem;
      }

      .datenschutz-card {
        padding: 1.2rem 1.2rem;
      }

      .page-header h1 {
        font-size: 1.8rem;
      }

      .section ul li {
        padding-left: 1.2rem;
      }
    }