:root {
    --bg: #0a0e1a;
    --bg-soft: #0f172a;
    --panel: #111827;
    --panel-2: #172033;
    --border: #263449;
    --border-2: #334155;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --brand: #667eea;
    --brand-2: #764ba2;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(circle at top left, rgba(102,126,234,.16), transparent 32%), var(--bg);
    color: var(--text);
    min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; }
::selection { background: rgba(102,126,234,.45); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #08101f; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 999px; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15,23,42,.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
}
.nav-inner {
    max-width: 1400px;
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.04em;
    text-decoration: none;
    background: linear-gradient(135deg, var(--brand), #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 750;
    font-size: 14px;
    transition: color .18s, transform .18s;
}
.nav-links a:hover, .nav-links a.active { color: #a5b4fc; }
.user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--panel);
    cursor: pointer;
    min-width: 0;
}
.user-menu:hover { border-color: #475569; }
.user-name { max-width: 140px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-weight: 750; color: var(--text); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 230px;
    background: var(--panel);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0,0,0,.38);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: .2s;
}
.user-menu.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 13px 16px; color: #cbd5e1; text-decoration: none; font-size: 14px; }
.dropdown-menu a:hover { background: var(--panel-2); color: #fff; }
.dropdown-menu a i { width: 20px; color: var(--muted-2); margin-right: 8px; }
.dropdown-menu hr { border: 0; border-top: 1px solid var(--border); margin: 4px 0; }

.app-avatar, .avatar, .user-avatar, .comment-avatar, .profile-avatar-small {
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-weight: 900;
    flex: 0 0 auto;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}
.app-avatar img, .avatar img, .user-avatar img, .comment-avatar img, .profile-avatar-small img { width: 100%; height: 100%; object-fit: cover; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 30px; }
.hero-card {
    background: radial-gradient(circle at top left, rgba(102,126,234,.30), transparent 34%), linear-gradient(135deg, #111827 0%, #0f172a 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 24px; align-items: center; }
.eyebrow { color: #a5b4fc; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
h1 { font-size: clamp(29px, 4vw, 48px); line-height: 1.05; letter-spacing: -.05em; margin-bottom: 12px; }
.lead { color: #aab6ca; line-height: 1.7; max-width: 820px; }
.hero-actions, .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.btn {
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s, border-color .18s, background .18s, color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.btn-outline { background: rgba(15,23,42,.68); border: 1px solid var(--border-2); color: #cbd5e1; }
.btn-outline:hover { border-color: var(--brand); color: #fff; }
.btn-danger { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.45); color: #fca5a5; }
.btn-block { width: 100%; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat-box, .mini-stat {
    background: rgba(15,23,42,.72);
    border: 1px solid var(--border-2);
    border-radius: 18px;
    padding: 18px;
}
.stat-number, .mini-stat b { display: block; font-size: 26px; font-weight: 950; color: #fff; }
.stat-label, .mini-stat span { color: var(--muted); font-size: 12px; margin-top: 5px; }

.panel {
    background: rgba(17,24,39,.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.panel + .panel { margin-top: 22px; }
.panel-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.panel-title { font-size: 16px; font-weight: 950; color: #f8fafc; }
.panel-title i { color: #a5b4fc; margin-right: 8px; }
.panel-link { color: #a5b4fc; text-decoration: none; font-size: 13px; font-weight: 900; }
.panel-body { padding: 20px; }

.forum-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 24px; align-items: start; }
.dashboard-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }
.view-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: start; }

.search-panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 24px; }
.search-form { display: grid; grid-template-columns: minmax(220px, 1fr) 190px 150px auto; gap: 12px; align-items: center; }
.input-wrap { position: relative; }
.input-wrap i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted-2); }
input, select, textarea {
    width: 100%;
    background: #0b1220;
    border: 1px solid var(--border-2);
    color: var(--text);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    outline: none;
}
.input-wrap input { padding-left: 43px; }
textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(102,126,234,.12); }

.board-list, .topic-list, .side-list { padding: 8px; }
.board-link, .board-row, .topic-row, .side-item, .comment-item {
    border: 1px solid transparent;
    border-radius: 17px;
    transition: background .18s, border-color .18s, transform .18s;
}
.board-link { display: flex; gap: 13px; padding: 14px; text-decoration: none; color: var(--text); }
.board-link:hover, .board-link.active { background: rgba(102,126,234,.10); border-color: rgba(102,126,234,.30); }
.board-row { display: grid; grid-template-columns: 48px minmax(0,1fr) auto minmax(160px,.55fr); gap: 14px; align-items: center; padding: 16px; border-bottom: 1px solid rgba(38,52,73,.72); border-radius: 0; }
.board-icon, .topic-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(102,126,234,.14); color: #a5b4fc; display: grid; place-items: center; font-size: 18px; flex: 0 0 auto; }
.board-name { color: #fff; font-weight: 900; margin-bottom: 5px; }
.board-desc, .topic-desc, .side-meta, .muted { color: var(--muted); font-size: 13px; line-height: 1.45; }
.board-meta, .topic-meta, .side-meta, .last-activity { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.pill, .category-badge, .rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 5px 9px;
    background: rgba(102,126,234,.12);
    color: #c7d2fe;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}
.pill.dark { background: rgba(15,23,42,.85); color: #cbd5e1; border: 1px solid var(--border); }
.topic-row { display: grid; grid-template-columns: 52px minmax(0, 1fr) 250px 150px; gap: 16px; padding: 17px; border-bottom: 1px solid rgba(38,52,73,.72); border-radius: 0; }
.topic-row:hover { background: rgba(102,126,234,.055); }
.topic-title { color: #f8fafc; text-decoration: none; font-size: 17px; font-weight: 950; line-height: 1.3; }
.topic-title:hover { color: #a5b4fc; }
.topic-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.topic-stats .mini-stat { padding: 10px; text-align: center; border-radius: 14px; }
.topic-stats .mini-stat b { font-size: 17px; }
.last-activity { display: block; color: var(--muted); font-size: 12px; line-height: 1.7; }
.last-activity b { display: block; color: #cbd5e1; margin-bottom: 3px; }
.author-line { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: #cbd5e1; font-weight: 850; }

.empty-state { padding: 46px 20px; text-align: center; color: var(--muted); }
.empty-state i { font-size: 42px; opacity: .55; margin-bottom: 12px; }
.alert { padding: 14px 18px; border-radius: 16px; margin-bottom: 18px; border: 1px solid transparent; }
.alert-success { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.35); color: #86efac; }
.alert-error { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.35); color: #fca5a5; }
.alert-warning { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.35); color: #fcd34d; }

.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; padding: 18px; border-top: 1px solid var(--border); }
.page-link { min-width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: #0f172a; border: 1px solid var(--border-2); color: var(--muted); text-decoration: none; font-weight: 900; }
.page-link.active, .page-link:hover { color: #fff; border-color: var(--brand); background: rgba(102,126,234,.2); }

.comment-form { padding: 20px; border-bottom: 1px solid var(--border); }
.comment-item { display: flex; gap: 13px; padding: 17px; border-bottom: 1px solid rgba(38,52,73,.72); border-radius: 0; }
.comment-main { min-width: 0; flex: 1; }
.comment-head { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.comment-author { font-weight: 950; color: #fff; text-decoration: none; }
.comment-date { color: var(--muted); font-size: 12px; }
.comment-body { color: #cbd5e1; line-height: 1.65; white-space: pre-wrap; word-break: break-word; }
.comment-actions { margin-top: 10px; }
.comment-actions a { color: #fca5a5; font-size: 12px; text-decoration: none; font-weight: 850; }

.detail-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 18px 0; }
.detail-card { background: #0f172a; border: 1px solid var(--border); border-radius: 16px; padding: 16px; }
.detail-card i { color: #a5b4fc; margin-bottom: 8px; }
.detail-card .label { color: var(--muted); font-size: 12px; }
.detail-card .value { color: #fff; font-weight: 950; margin-top: 4px; }
.description-box { background: #0f172a; border: 1px solid var(--border); border-radius: 18px; padding: 20px; line-height: 1.7; color: #cbd5e1; }
.description-box h3 { color: #fff; margin-bottom: 10px; }

.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; margin-bottom: 12px; }
.star-rating input { display: none; }
.star-rating label { font-size: 30px; cursor: pointer; color: #475569; transition: color .15s; }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: #fbbf24; }
.stars { color: #fbbf24; letter-spacing: 1px; }

@media (max-width: 1100px) {
    .hero-grid, .dashboard-layout, .view-layout, .forum-layout { grid-template-columns: 1fr; }
    .search-form { grid-template-columns: 1fr 1fr; }
    .topic-row { grid-template-columns: 48px minmax(0,1fr); }
    .topic-stats, .last-activity { grid-column: 2; }
    .board-row { grid-template-columns: 44px minmax(0,1fr); }
    .board-counts, .latest-small { grid-column: 2; }
}
@media (max-width: 760px) {
    .site-nav { padding: 0 14px; }
    .nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
    .nav-links { justify-content: flex-start; gap: 10px; width: 100%; }
    .nav-links a { font-size: 13px; }
    .user-menu { width: 100%; justify-content: space-between; }
    .dropdown-menu { left: 0; right: auto; width: 100%; }
    .container { padding: 18px; }
    .hero-card { padding: 22px; border-radius: 22px; }
    .stats-grid, .detail-grid { grid-template-columns: 1fr 1fr; }
    .search-form { grid-template-columns: 1fr; }
    .topic-row { grid-template-columns: 1fr; }
    .topic-icon, .topic-stats, .last-activity { grid-column: auto; }
    .topic-stats { grid-template-columns: repeat(2,1fr); }
    .comment-item { align-items: flex-start; }
    .user-name { display: inline; }
}
@media (max-width: 460px) {
    .container { padding: 14px; }
    .hero-card, .panel { border-radius: 18px; }
    .stats-grid, .detail-grid, .topic-stats { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .hero-actions, .actions { width: 100%; }
}


/* v9 egységes főoldal + adatkezelési felület */
.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 410px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}
.home-hero-main, .home-hero-side {
    border: 1px solid var(--border);
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(102,126,234,.28), transparent 34%), linear-gradient(135deg, rgba(17,24,39,.98), rgba(15,23,42,.96));
    box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.home-hero-main { padding: clamp(26px, 4vw, 48px); position: relative; overflow: hidden; }
.home-hero-main::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -90px;
    border-radius: 999px;
    background: rgba(118,75,162,.18);
    filter: blur(4px);
}
.home-hero-main > * { position: relative; z-index: 1; }
.home-hero-side { padding: 22px; }
.home-card-title { display:flex; align-items:center; gap:10px; font-weight:950; color:#fff; margin-bottom:16px; }
.home-card-title i { color:#a5b4fc; }
.home-stat-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:12px; }
.home-trust-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; color:#cbd5e1; font-size:13px; font-weight:800; }
.home-trust-row span { display:inline-flex; align-items:center; gap:7px; padding:8px 10px; border:1px solid var(--border); border-radius:999px; background:rgba(15,23,42,.72); }
.home-grid { display:grid; grid-template-columns:minmax(0, 1fr) 340px; gap:24px; align-items:start; margin-bottom:24px; }
.home-board-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; padding:14px; }
.home-board-card { padding:16px; border:1px solid var(--border); background:rgba(15,23,42,.58); border-radius:18px; text-decoration:none; color:var(--text); transition:.18s; }
.home-board-card:hover { transform:translateY(-2px); border-color:rgba(102,126,234,.55); background:rgba(102,126,234,.09); }
.home-board-card .board-icon { margin-bottom:12px; }
.home-side-stack { display:flex; flex-direction:column; gap:22px; }
.home-member { display:flex; align-items:center; gap:12px; padding:13px; color:var(--text); text-decoration:none; }
.home-member:hover { background:rgba(102,126,234,.08); border-color:rgba(102,126,234,.28); }
.home-member strong { display:block; color:#fff; font-size:14px; }
.home-member small { display:block; color:var(--muted); font-size:12px; margin-top:3px; line-height:1.4; }
.privacy-mini-card h3 { color:#fff; margin-bottom:8px; }
.privacy-mini-card h3 i { color:#a5b4fc; margin-right:6px; }
.privacy-mini-card p { color:var(--muted); line-height:1.65; font-size:13px; margin-bottom:12px; }
.home-latest-panel { margin-bottom:28px; }
.privacy-page .hero-card { margin-bottom:22px; }
.privacy-meta { display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.privacy-doc .panel-body { max-width:980px; }
.privacy-doc h2 { color:#fff; font-size:20px; margin:28px 0 10px; }
.privacy-doc h2:first-child { margin-top:0; }
.privacy-doc p { color:#cbd5e1; line-height:1.75; margin-bottom:12px; }

@media (max-width: 1100px) {
    .home-hero, .home-grid { grid-template-columns:1fr; }
    .home-side-stack { display:grid; grid-template-columns:1fr 1fr; }
}
@media (max-width: 760px) {
    .home-board-grid, .home-side-stack { grid-template-columns:1fr; }
    .home-stat-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 460px) {
    .home-stat-grid { grid-template-columns:1fr; }
}

/* v10 - egységesebb landing + részletes jogi/adatvédelmi oldal */
.landing-body {
    background:
        radial-gradient(circle at 12% 5%, rgba(99,102,241,.20), transparent 35%),
        radial-gradient(circle at 88% 0%, rgba(34,211,238,.12), transparent 30%),
        linear-gradient(180deg, #070b14 0%, #0f172a 45%, #111827 100%);
}
.landing-container { padding-top: 34px; }
.nav-cta { background: rgba(99,102,241,.18); border: 1px solid rgba(129,140,248,.35); padding: 10px 14px; border-radius: 999px; color: #e0e7ff !important; }
.landing-hero-v10 {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 380px;
    gap: 26px;
    align-items: stretch;
    padding: 46px;
    border: 1px solid rgba(148,163,184,.16);
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(15,23,42,.92), rgba(17,24,39,.86));
    box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.hero-glow { position:absolute; border-radius:999px; filter: blur(38px); pointer-events:none; opacity:.65; }
.hero-glow.one { width:220px; height:220px; background:#4f46e5; left:-70px; top:-70px; }
.hero-glow.two { width:220px; height:220px; background:#0891b2; right:140px; bottom:-90px; }
.landing-hero-content, .landing-status-card { position:relative; z-index:1; }
.landing-hero-content h1 { font-size: clamp(36px, 5vw, 68px); line-height: .98; letter-spacing: -2.8px; color: #f8fafc; margin: 16px 0 18px; max-width: 900px; }
.landing-hero-content .lead { max-width: 760px; color:#cbd5e1; font-size: 18px; line-height: 1.72; }
.landing-proof-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.landing-proof-row span { display:inline-flex; align-items:center; gap:8px; padding:10px 13px; border-radius:999px; background:rgba(15,23,42,.76); border:1px solid rgba(148,163,184,.18); color:#cbd5e1; font-size:13px; font-weight:700; }
.landing-proof-row i { color:#a5b4fc; }
.landing-status-card { background: rgba(2,6,23,.52); border: 1px solid rgba(148,163,184,.18); border-radius: 26px; padding: 22px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.status-card-head { display:flex; align-items:center; justify-content:space-between; color:#e2e8f0; font-weight:900; margin-bottom:18px; }
.status-card-head b { color:#86efac; background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.22); padding:5px 9px; border-radius:999px; font-size:11px; letter-spacing:.8px; }
.landing-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:18px; }
.landing-stat-grid div { background:rgba(15,23,42,.82); border:1px solid rgba(148,163,184,.16); border-radius:18px; padding:16px; }
.landing-stat-grid strong { display:block; color:#fff; font-size:28px; line-height:1; }
.landing-stat-grid small { display:block; color:#94a3b8; margin-top:8px; font-weight:700; }
.status-line { display:flex; align-items:center; gap:10px; color:#cbd5e1; font-size:13px; padding:11px 0; border-top:1px solid rgba(148,163,184,.12); }
.status-line i { color:#93c5fd; }
.landing-section-grid { display:grid; grid-template-columns:minmax(0, 1fr) 350px; gap:24px; margin-top:28px; }
.landing-main-card, .landing-side-card { background:rgba(15,23,42,.84); border:1px solid rgba(148,163,184,.16); border-radius:26px; padding:24px; box-shadow:0 20px 55px rgba(0,0,0,.20); }
.panel-header.clean { padding:0 0 18px; border-bottom:1px solid rgba(148,163,184,.14); }
.panel-subtitle { color:#94a3b8; margin-top:6px; font-size:14px; }
.landing-topic-stack { display:flex; flex-direction:column; gap:12px; margin-top:18px; }
.landing-topic-card { display:grid; grid-template-columns:52px minmax(0,1fr) 100px; gap:16px; align-items:center; padding:16px; background:rgba(2,6,23,.34); border:1px solid rgba(148,163,184,.13); border-radius:20px; transition:.2s ease; }
.landing-topic-card:hover { transform:translateY(-2px); border-color:rgba(129,140,248,.35); background:rgba(30,41,59,.62); }
.topic-icon.soft { background:linear-gradient(135deg, rgba(99,102,241,.24), rgba(14,165,233,.16)); border-color:rgba(129,140,248,.25); }
.topic-mid p { color:#94a3b8; font-size:13px; line-height:1.5; margin:5px 0 10px; }
.landing-topic-counts { display:flex; flex-direction:column; gap:8px; text-align:right; color:#94a3b8; font-size:12px; }
.landing-topic-counts b { color:#f8fafc; font-size:17px; }
.landing-side-column { display:flex; flex-direction:column; gap:18px; }
.landing-side-card h3 { color:#f8fafc; margin-bottom:14px; font-size:18px; }
.landing-category-list { display:flex; flex-direction:column; gap:10px; }
.landing-category-list a { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:13px; color:#e2e8f0; text-decoration:none; background:rgba(2,6,23,.35); border:1px solid rgba(148,163,184,.12); border-radius:16px; }
.landing-category-list a:hover { border-color:rgba(129,140,248,.35); background:rgba(30,41,59,.65); }
.cat-left { display:flex; align-items:center; gap:10px; min-width:0; }
.cat-left b { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.landing-category-list small { color:#94a3b8; flex:0 0 auto; }
.accent-card { background:linear-gradient(145deg, rgba(49,46,129,.42), rgba(15,23,42,.88)); }
.accent-card p { color:#cbd5e1; line-height:1.6; margin-bottom:14px; }
.muted { color:#94a3b8; }

.privacy-v10 .legal-hero { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:24px; align-items:stretch; padding:34px; border-radius:30px; background:linear-gradient(145deg, rgba(15,23,42,.94), rgba(30,41,59,.78)); border:1px solid rgba(148,163,184,.16); margin-bottom:24px; }
.legal-hero h1 { color:#f8fafc; font-size:clamp(32px, 4vw, 56px); line-height:1.04; letter-spacing:-2px; margin:12px 0 14px; }
.legal-summary-card { background:rgba(2,6,23,.42); border:1px solid rgba(148,163,184,.16); border-radius:24px; padding:22px; }
.legal-summary-card h3 { color:#f8fafc; margin-bottom:12px; }
.legal-summary-card ul { margin:0; padding-left:20px; color:#cbd5e1; line-height:1.75; }
.legal-toc { margin-bottom:24px; }
.toc-grid { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:10px; padding:18px; }
.toc-grid a { text-decoration:none; color:#dbeafe; background:rgba(15,23,42,.68); border:1px solid rgba(148,163,184,.14); border-radius:14px; padding:12px; font-weight:800; font-size:13px; }
.toc-grid a:hover { background:rgba(59,130,246,.14); border-color:rgba(96,165,250,.32); }
.legal-doc { overflow:hidden; }
.legal-section { padding:26px 0; border-bottom:1px solid rgba(148,163,184,.14); scroll-margin-top:90px; }
.legal-section:first-child { padding-top:0; }
.legal-section:last-child { border-bottom:0; padding-bottom:0; }
.legal-section h2 { color:#f8fafc; font-size:24px; margin-bottom:12px; letter-spacing:-.5px; }
.legal-section h4 { color:#dbeafe; margin-bottom:8px; }
.legal-section p, .legal-section li { color:#cbd5e1; line-height:1.78; }
.legal-section ul { padding-left:22px; }
.legal-data-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:12px; margin:16px 0; }
.legal-data-grid.wide { grid-template-columns:repeat(2, minmax(0,1fr)); }
.legal-data-grid > div { background:rgba(2,6,23,.34); border:1px solid rgba(148,163,184,.13); border-radius:18px; padding:16px; }
.discord-legal-section { background:linear-gradient(145deg, rgba(88,101,242,.10), transparent); margin-left:-18px; margin-right:-18px; padding-left:18px; padding-right:18px; border-radius:22px; }
.legal-table-wrap { overflow-x:auto; border:1px solid rgba(148,163,184,.14); border-radius:18px; }
.legal-table { width:100%; border-collapse:collapse; min-width:760px; }
.legal-table th, .legal-table td { padding:14px 16px; text-align:left; border-bottom:1px solid rgba(148,163,184,.12); color:#cbd5e1; vertical-align:top; }
.legal-table th { color:#f8fafc; background:rgba(15,23,42,.86); }
.legal-table tr:last-child td { border-bottom:0; }
.legal-section code { background:rgba(15,23,42,.8); border:1px solid rgba(148,163,184,.15); color:#bfdbfe; padding:2px 6px; border-radius:8px; }
.alert-info { background:rgba(59,130,246,.10); border-left:4px solid #60a5fa; color:#bfdbfe; }

@media (max-width: 980px) {
    .landing-hero-v10, .landing-section-grid, .privacy-v10 .legal-hero { grid-template-columns:1fr; }
    .landing-hero-v10 { padding:32px; }
    .toc-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
    .legal-data-grid, .legal-data-grid.wide { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
    .landing-container { padding:18px; }
    .landing-hero-v10 { padding:24px; border-radius:24px; }
    .landing-hero-content h1 { letter-spacing:-1.5px; }
    .landing-topic-card { grid-template-columns:42px minmax(0,1fr); }
    .landing-topic-counts { grid-column:1 / -1; flex-direction:row; justify-content:flex-start; text-align:left; }
    .toc-grid { grid-template-columns:1fr; }
    .privacy-v10 .legal-hero { padding:22px; border-radius:24px; }
    .legal-section h2 { font-size:21px; }
}

/* style.css - extra védelem */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Rejtett elemek észlelése */
body:has(> div[style*="display: none"]) {
    display: none !important;
}

/* DevTools detektálás CSS-ben */
@media (max-width: 100px) {
    body::before {
        content: "DevTools Detected";
        display: none;
    }
}

/* v14 global responsive fallback */
/* v14 - teljes web/admin mobil/tablet optimalizálás */
:root{
  --app-bg:#0a0e1a;--app-surface:#111827;--app-card:#1e293b;--app-border:#334155;
  --app-text:#e2e8f0;--app-muted:#94a3b8;--app-primary:#818cf8;--app-radius:20px;
  --mobile-pad:clamp(12px,3.8vw,22px);
}
*{box-sizing:border-box}
html{width:100%;-webkit-text-size-adjust:100%;text-size-adjust:100%;scroll-behavior:smooth}
body{width:100%;min-width:0;overflow-x:hidden;background:var(--app-bg);color:var(--app-text)}
img,video,iframe,canvas,svg{max-width:100%;height:auto} img{display:inline-block} iframe{border:0}
a,button,input,select,textarea{touch-action:manipulation} input,select,textarea{min-width:0}
pre,code,.payload,.payload-box,.log-line,.details,.token,.hash{white-space:pre-wrap;word-break:break-word;overflow-wrap:anywhere}

.container,.wrap,.wrapper,.page,.page-wrap,.main,.content,.admin-page,.bot-page,.legal-page,.forum-shell{
  width:100%;max-width:min(1500px,100%);margin-left:auto;margin-right:auto;min-width:0;
}
.container,.wrap,.page-wrap,.admin-page,.bot-page{padding-left:clamp(14px,3vw,28px);padding-right:clamp(14px,3vw,28px)}
.card,.panel,.box,.hero,.item,.stat,.topic-row,.board-row,.comment,.comment-item,.person,.notification-card,.upload-card,.setting-card,.bot-card{
  min-width:0;overflow-wrap:anywhere;
}
.grid,.admin-grid,.dashboard-grid,.dashboard-layout,.forum-layout,.browse-layout,.view-layout,.home-grid,.landing-grid,.profile-grid,.settings-grid,.stats,.stats-grid,.cards-grid,.quick-grid,.system-grid,.diagnostics-grid,.bot-grid,.privacy-grid{
  min-width:0;gap:clamp(12px,2vw,22px);
}

/* Egységes, nem kilógó navigáció */
.navbar,.site-nav,.top,.topbar{width:100%;min-width:0;overflow:visible}
.nav,.nav-container,.nav-inner,.top,.topbar-inner{min-width:0;max-width:1500px;margin-left:auto;margin-right:auto}
.logo,.brand{min-width:0;overflow-wrap:anywhere;line-height:1.2}
.links,.nav-links,.admin-links,.top-actions,.header-actions,.actions,.hero-actions,.filters,.pagination,.pager{min-width:0;display:flex;flex-wrap:wrap;gap:10px}
.links a,.nav-links a,.admin-links a,.top-actions a,.btn,button[type=submit],button[type=button]{min-width:0;white-space:normal;text-align:center;line-height:1.25}

/* Űrlapok */
form{max-width:100%;min-width:0}.input,.form-group,.field{min-width:0}
input,select,textarea{max-width:100%;width:100%} textarea{resize:vertical}

/* Táblázatok desktopon görgethetőek, mobilon kártyák */
.table-wrap,.table-responsive,.admin-table-wrap,.logs-table,.audit-table,.bot-table,.legal-table-wrap{width:100%;max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:16px}
table{max-width:100%;border-collapse:collapse} td,th{overflow-wrap:anywhere;word-break:break-word;vertical-align:top}

/* Log/payload optimalizálás */
.payload,.payload-box,.json,.logbox,pre{max-width:100%;max-height:360px;overflow:auto;border-radius:12px}

@media (max-width:1200px){
  .grid,.admin-layout,.dashboard-layout,.forum-layout,.browse-layout,.view-layout,.home-grid,.landing-section-grid,.landing-hero-v10,.privacy-v10 .legal-hero,.profile-grid,.settings-grid{grid-template-columns:1fr!important}
  .sidebar,.admin-sidebar,aside{position:static!important;width:100%!important;max-width:100%!important}
  .container,.wrap{max-width:100%!important}
}

@media (max-width:900px){
  body{font-size:15px}.container,.wrap,.page-wrap,.admin-page,.bot-page,.main,.content{padding:var(--mobile-pad)!important}
  .navbar,.site-nav{padding-left:var(--mobile-pad)!important;padding-right:var(--mobile-pad)!important}
  .nav,.nav-container,.nav-inner,.top,.topbar-inner{height:auto!important;min-height:0!important;display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:12px!important;padding-top:12px!important;padding-bottom:12px!important}
  .logo,.brand{font-size:clamp(19px,5vw,24px)!important;white-space:normal!important}
  .links,.nav-links,.admin-links,.top-actions{width:100%!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important}
  .links a,.nav-links a,.admin-links a,.top-actions a{width:100%;display:flex!important;align-items:center;justify-content:center;min-height:42px;padding:10px 11px!important;border:1px solid rgba(148,163,184,.18);border-radius:12px;background:rgba(15,23,42,.58);font-size:13px!important}
  .header,.page-header,.admin-header,.panel-header,.item-head,.topic-head{display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:12px!important}
  .actions,.header-actions,.hero-actions,.filters,.search-form,.admin-filters,.bot-filters{width:100%!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}
  .btn,button[type=submit],button[type=button]{width:100%;justify-content:center;min-height:42px}
  .card,.panel,.box,.hero,.item,.bot-card,.landing-main-card,.landing-side-card,.home-hero-main,.home-hero-side{border-radius:18px!important;padding:clamp(15px,4vw,20px)!important}
  .stats,.stats-grid,.cards-grid,.quick-grid,.system-grid,.diagnostics-grid,.bot-grid,.filter-grid,.admin-grid{grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr))!important}

  table.app-responsive-table{min-width:0!important;width:100%!important;border-collapse:separate!important;border-spacing:0 12px!important;background:transparent!important}
  table.app-responsive-table thead{display:none!important}
  table.app-responsive-table tbody,table.app-responsive-table tr,table.app-responsive-table td{display:block!important;width:100%!important}
  table.app-responsive-table tr{border:1px solid rgba(148,163,184,.18)!important;border-radius:16px!important;background:rgba(15,23,42,.82)!important;overflow:hidden!important;margin-bottom:12px!important;box-shadow:0 10px 25px rgba(0,0,0,.14)}
  table.app-responsive-table td{border:0!important;border-bottom:1px solid rgba(148,163,184,.10)!important;padding:11px 13px!important;text-align:left!important;min-height:40px}
  table.app-responsive-table td:last-child{border-bottom:0!important}
  table.app-responsive-table td::before{content:attr(data-label);display:block;color:var(--app-muted);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.05em;margin-bottom:5px}
}

@media (max-width:560px){
  body{font-size:14px}.container,.wrap,.page-wrap,.admin-page,.bot-page,.main,.content{padding:12px!important}
  h1{font-size:clamp(24px,8.5vw,34px)!important;letter-spacing:-.04em!important;line-height:1.08!important} h2{font-size:clamp(20px,6vw,25px)!important;line-height:1.15!important}
  .links,.nav-links,.admin-links,.top-actions,.actions,.header-actions,.hero-actions,.filters,.search-form,.admin-filters,.bot-filters{grid-template-columns:1fr!important}
  .topic-row,.board-row,.landing-topic-card,.comment-item,.person,.notification-card,.upload-card{display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:12px!important}
  .topic-icon,.board-icon,.avatar,.person-avatar{flex:0 0 auto}
  input,select,textarea{font-size:16px!important} /* iPhone zoom ellen */
  .payload,.payload-box,.json,.logbox,pre{max-height:260px!important}
}

@media (max-width:380px){
  .container,.wrap,.page-wrap,.admin-page,.bot-page,.main,.content{padding:10px!important}.card,.panel,.box,.hero,.item{padding:13px!important;border-radius:15px!important}
}
