/* Extracted from other/privacy.html. Loaded in the same position the inline
   <style> occupied, so the cascade is unchanged. */
    body { 
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      margin: 0;
      background: #0a0a0a;
      min-height: 100vh;
    }

    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: none;
      margin: 0;
      padding: 120px 24px 60px;
    }

    .container > * {
      width: 100%;
      max-width: 800px;
    }

    .header {
      text-align: center;
      margin-bottom: 50px;
    }

    .header h1 {
      color: #ffffff;
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

    .header p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 16px;
    }

    .last-updated {
      display: inline-block;
      background: rgba(108, 108, 107, 0.15);
      color: #ffffff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      margin-top: 16px;
    }

    .section {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 28px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .section:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(157, 77, 15, 0.3);
      transform: translateY(-2px);
    }

    .section h2 {
      color: #ffffff;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section h2::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #ffffff;
      border-radius: 50%;
    }

    .section p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      font-size: 15px;
    }

    .highlight {
      background: rgba(227, 124, 43, 0.1);
      padding: 2px 8px;
      border-radius: 4px;
      color: #ffffff;
    }

    .footer {
      text-align: center;
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
    }

    .footer a {
      color: #ffffff;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }
  
