/* ── LEGAL PAGES (tos / privacy) ── */
  .legal-page {
    background: linear-gradient(160deg, #7B2FBE 0%, #9146FF 40%, #6441A5 100%);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
  }
  .legal-container { max-width: 1000px; margin: 0 auto; padding: 120px 20px 60px; }
  .legal-section { 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 12px; 
    padding: 40px; 
    margin-bottom: 30px; 
    backdrop-filter: blur(10px);
  }
  .legal-section h2 { 
    font-family: 'Roboto', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 700;
    color: #FFD700; 
    margin-bottom: 20px; 
    border-bottom: 2px solid rgba(255, 215, 0, 0.3); 
    padding-bottom: 10px; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .legal-section h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 20px 0 10px;
    font-weight: 700;
  }
  .legal-section p, .legal-section li { 
    color: rgba(255,255,255,0.9); 
    line-height: 1.7; 
    margin-bottom: 15px; 
    font-size: 1rem;
  }
  .legal-section ul { padding-left: 25px; margin-bottom: 15px; }
  .legal-section ul li { margin-bottom: 10px; }
  
  .badge { 
    display: inline-block; 
    background: rgba(255, 215, 0, 0.1); 
    border: 1px solid rgba(255, 215, 0, 0.3); 
    padding: 6px 14px; 
    border-radius: 6px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    color: #FFD700; 
    margin-bottom: 20px; 
    letter-spacing: 0.1em;
  }
  .highlight-box { 
    background: rgba(255, 255, 255, 0.1); 
    border-left: 5px solid #FFD700; 
    padding: 25px; 
    margin-bottom: 35px; 
    border-radius: 4px; 
  }
  .highlight-box p { margin-bottom: 0; font-weight: 500; color: #fff; font-size: 1.1rem; }
  
  .page-hero { text-align: center; margin-bottom: 60px; }
  .legal-hero-title { 
    font-family: 'Bangers', cursive; 
    font-size: clamp(3rem, 10vw, 5rem); 
    line-height: 1; 
    letter-spacing: 0.05em; 
    margin-bottom: 10px;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.2);
  }
  .legal-hero-title span { color: #FFD700; }
  .legal-meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }
  .legal-link { color: #FFD700; text-decoration: none; font-weight: 700; transition: opacity 0.2s; }
  .legal-link:hover { text-decoration: underline; opacity: 0.8; }

  /* Verfeinerung für Listen in legal-sections */
  .legal-section ul.spaced li { margin-bottom: 15px; }
  .legal-section strong { color: var(--white); font-weight: 700; }