/* Kin-paku (金箔) Inspired Design System - Privacy Page */
:root {
  --bg-dark: #090a0d;            /* Deep Urushi Black */
  --bg-sidebar: #0f1117;         /* Charcoal Lacquer */
  --bg-card: #151821;            /* Matte Urushi Surface */
  --bg-input: #1a1d27;           /* Input Well */
  
  --border-color: rgba(226, 184, 87, 0.2); /* Gold Leaf Outline */
  --border-glow: rgba(226, 184, 87, 0.45);   /* Active Gold Outline */
  
  --text-primary: #faf8f5;       /* Washi White */
  --text-secondary: #d6cfc2;     /* Warm Cream */
  --text-muted: #8a8375;         /* Antique Bronze */
  
  --gold-primary: #e2b857;       /* Kin-paku Gold */
  --gold-light: #f7e096;         /* Radiant Gold Highlight */
  --gradient-gold: linear-gradient(135deg, #f7e096 0%, #e2b857 50%, #b88e32 100%);
  --gradient-gold-card: linear-gradient(180deg, rgba(226, 184, 87, 0.04) 0%, rgba(21, 24, 33, 1) 100%);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  padding: 40px 20px;
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090a0d;
}

.header h1 {
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.card {
  background: var(--gradient-gold-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-section h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(226, 184, 87, 0.12);
  padding-bottom: 4px;
}

.policy-section p {
  color: var(--text-secondary);
  font-size: 13px;
}

.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.policy-section li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
}

.policy-section li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 11px;
}

.permissions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.permissions-table th {
  text-align: left;
  font-size: 12px;
  color: var(--gold-light);
  padding: 10px 14px;
  background-color: rgba(226, 184, 87, 0.08);
  border-bottom: 1px solid var(--border-color);
}

.permissions-table td {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(226, 184, 87, 0.1);
}

.permissions-table tr:last-child td {
  border-bottom: none;
}

code {
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--gold-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 12px;
  border: 1px solid rgba(226, 184, 87, 0.2);
}

.footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  padding-top: 10px;
}
