/* Resopsy — jogi oldalak (adatvedelem.html, aszf.html)
   A landing style.css design-tokenjeit koveti. */

:root {
  --bg-primary: #0a0a0f;
  --bg-card: #16161f;
  --accent: #ff6b35;
  --text-primary: #f0ede8;
  --text-secondary: #b8b4c4;
  --text-muted: #7a7590;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 820px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem 5rem; }

/* Fejlec */
.legal-header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  padding: 2rem 0 2.5rem;
}
.legal-header .home {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--text-muted); text-decoration: none;
  font-size: .9rem; margin-bottom: 2rem;
  transition: color .2s;
}
.legal-header .home:hover { color: var(--accent); }
.legal-header .home img { width: 28px; height: 28px; border-radius: 6px; }

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -.02em; line-height: 1.2;
}
.subtitle { margin-top: .75rem; color: var(--text-muted); font-size: 1rem; }
.updated {
  display: inline-block; margin-top: 1.25rem;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: .8rem; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px;
  padding: .3rem .85rem;
}

h2 {
  font-size: 1.3rem; font-weight: 700; color: var(--text-primary);
  margin: 3rem 0 1rem; letter-spacing: -.01em;
  scroll-margin-top: 2rem;
}
h2 .num { color: var(--accent); font-family: 'Space Mono', monospace; font-size: .95rem; margin-right: .5rem; }
h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin: 1.75rem 0 .6rem; }

p { margin-bottom: 1rem; }
a { color: var(--accent); }

ul, ol { margin: 0 0 1.25rem 1.25rem; }
li { margin-bottom: .5rem; }

strong { color: var(--text-primary); font-weight: 600; }

/* Adatlap-doboz (cegadatok) */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0;
}
.card dl { display: grid; grid-template-columns: minmax(9rem, auto) 1fr; gap: .55rem 1.25rem; }
.card dt { color: var(--text-muted); font-size: .9rem; }
.card dd { color: var(--text-primary); }

/* Kiemelt figyelmeztetes */
.note {
  border-left: 3px solid var(--accent);
  background: rgba(255, 107, 53, .06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem; margin: 1.5rem 0;
}
.note p:last-child { margin-bottom: 0; }

/* Tablazat */
.table-scroll { overflow-x: auto; margin: 1.25rem 0; }
table { border-collapse: collapse; width: 100%; min-width: 32rem; font-size: .93rem; }
th, td { text-align: left; padding: .7rem .85rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--text-primary); font-weight: 600; background: rgba(255,255,255,.02); }

/* Tartalomjegyzek */
.toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; }
.toc p { color: var(--text-primary); font-weight: 600; margin-bottom: .75rem; }
.toc ol { margin: 0 0 0 1.1rem; }
.toc li { margin-bottom: .35rem; }
.toc a { color: var(--text-secondary); text-decoration: none; }
.toc a:hover { color: var(--accent); }

footer {
  border-top: 1px solid var(--border); margin-top: 4rem; padding-top: 2rem;
  font-size: .875rem; color: var(--text-muted);
  display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: space-between;
}
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--accent); }
