/*
Theme Name:   ZalaZone Tudástár
Description:  Privát e-learning sablon a ZalaZone Tudástárhoz. A régi Next.js alkalmazás dizájnjának portja: fehér háttér hálós mintával, ZalaZone zöld accent, Syne + Space Mono betűtípusok, világos/sötét mód.
Version:      1.0.0
Author:       ZalaZone
Text Domain:  zalazone-tudastar
Requires PHP: 7.4
*/

/* ==========================================================================
   1. TÉMÁK (LIGHT & DARK MODE) SZÍNPALETTÁJA  — a global.css portja
   ========================================================================== */
:root {
	/* LIGHT MODE (alapértelmezett) */
	--bg-main: #f8fafc;
	--bg-gradient-start: rgba(77, 124, 15, 0.05);
	--bg-gradient-end: #e2e8f0;

	--bg-card: #ffffff;
	--bg-secondary: #f1f5f9;
	--bg-card-hover: #f0fdf4;

	--text-primary: #1e293b;
	--text-secondary: #475569;
	--text-muted: #94a3b8;

	--accent: #4d7c0f;
	--accent-secondary: #65a30d;
	--accent-dim: rgba(77, 124, 15, 0.1);
	--accent-glow: rgba(77, 124, 15, 0.2);

	--border: #cbd5e1;
	--border-bright: #94a3b8;

	--success: #15803d;
	--warning: #b45309;
	--error: #b91c1c;

	/* Betűtípusok (a Next.js projektben a next/font adta, itt mi definiáljuk) */
	--font-display: 'Nunito', system-ui, sans-serif;
	--font-mono: 'Space Mono', ui-monospace, monospace;
}

[data-theme='dark'] {
	--bg-main: #020617;
	--bg-gradient-start: rgba(132, 204, 22, 0.08);
	--bg-gradient-end: #0a0a0a;

	--bg-card: #0f172a;
	--bg-secondary: #1e293b;
	--bg-card-hover: #1e293b;

	--text-primary: #f8fafc;
	--text-secondary: #cbd5e1;
	--text-muted: #64748b;

	--accent: #84cc16;
	--accent-secondary: #a3e635;
	--accent-dim: rgba(132, 204, 22, 0.1);
	--accent-glow: rgba(132, 204, 22, 0.3);

	--border: #334155;
	--border-bright: #475569;

	--success: #22c55e;
	--warning: #f59e0b;
	--error: #ef4444;
}

/* ==========================================================================
   2. ALAPFELÉPÍTÉS ÉS HÁTTÉR
   ========================================================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-main);
	background-image: linear-gradient(to bottom right, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
	background-attachment: fixed;
	color: var(--text-primary);
	font-family: var(--font-display);
	line-height: 1.6; /* levegős alapérték minden szövegre */
	min-height: 100vh;
	overflow-x: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

::selection {
	background: var(--accent-dim);
	color: var(--accent);
}

*:focus-visible {
	outline: 1px solid var(--accent);
	outline-offset: 2px;
}

/* Rács (grid) overlay a háttérben */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(var(--accent-dim) 1px, transparent 1px),
		linear-gradient(90deg, var(--accent-dim) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: -1;
}

a {
	color: var(--accent);
}

/* ==========================================================================
   3. MARKDOWN TANANYAG FORMÁZÁSA (a modul tartalma — the_content)
   ========================================================================== */
.markdown-content {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--text-primary);
	max-width: 800px;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4 {
	color: var(--accent);
	margin-top: 2.5em;
	margin-bottom: 1em;
	font-weight: 800;
	line-height: 1.3;
	font-family: var(--font-display);
}

.markdown-content > :first-child {
	margin-top: 0;
}

.markdown-content p {
	margin-bottom: 1.5em;
}

.markdown-content strong {
	color: var(--text-primary);
	font-weight: 800;
	background-color: var(--accent-dim);
	padding: 0 4px;
	border-radius: 4px;
}

.markdown-content code {
	font-family: var(--font-mono);
	font-size: 0.9em;
	background: var(--bg-secondary);
	padding: 2px 6px;
	border-radius: 4px;
}

.markdown-content ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 2em;
}

.markdown-content li {
	margin-bottom: 0.8em;
	padding-left: 1.5em;
	position: relative;
}

.markdown-content li::before {
	content: "•";
	color: var(--accent);
	font-weight: bold;
	font-size: 1.5em;
	position: absolute;
	left: 0;
	top: -0.2em;
}

.markdown-content img {
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	margin: 2.5em 0;
	width: 100%;
	border: 1px solid var(--border);
}

/* Két egymás melletti kép egy bekezdésben */
.markdown-content p:has(img:nth-of-type(2)) {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin: 2.5em 0;
}

.markdown-content p:has(img:nth-of-type(2)) img {
	flex: 1;
	width: calc(50% - 12px);
	margin: 0;
}

@media (max-width: 640px) {
	.markdown-content p:has(img:nth-of-type(2)) {
		flex-direction: column;
		gap: 16px;
	}
	.markdown-content p:has(img:nth-of-type(2)) img {
		width: 100%;
	}
}

/* ==========================================================================
   4. UTILITY OSZTÁLYOK ÉS ANIMÁCIÓK
   ========================================================================== */
.glow-text { text-shadow: 0 0 20px var(--accent-glow); }

.glass {
	background: var(--bg-card);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 8px var(--accent-glow); }
	50% { box-shadow: 0 0 24px var(--accent-glow), 0 0 48px rgba(148, 193, 31, 0.15); }
}

.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-fade-up-delay-1 { animation: fadeUp 0.6s ease 0.1s both; }
.animate-fade-up-delay-2 { animation: fadeUp 0.6s ease 0.2s both; }
.animate-fade-up-delay-3 { animation: fadeUp 0.6s ease 0.3s both; }
.animate-fade-up-delay-4 { animation: fadeUp 0.6s ease 0.4s both; }

.zz-mono-label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-muted);
}

/* ==========================================================================
   5. GOMBOK
   ========================================================================== */
.zz-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: 4px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: box-shadow 0.2s ease;
}

.zz-btn:hover {
	box-shadow: 0 0 20px var(--accent-glow);
	color: #fff;
}

.zz-btn--ghost {
	background: var(--bg-secondary);
	color: var(--text-primary);
	border: 1px solid var(--border);
	text-transform: none;
	letter-spacing: 0.02em;
}

.zz-btn--ghost:hover {
	color: var(--accent);
	border-color: var(--accent);
	box-shadow: none;
}

/* ==========================================================================
   6. OLDALSÁV (Sidebar) + hamburger
   ========================================================================== */
.zz-burger {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 60;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text-primary);
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.zz-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 80;
	width: 264px;
	background: var(--bg-card);
	border-right: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	transform: translateX(-100%);
	transition: transform 0.25s ease;
}

body.zz-sidebar-open .zz-sidebar {
	transform: translateX(0);
	box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
}

.zz-backdrop {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(2, 6, 23, 0.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

body.zz-sidebar-open .zz-backdrop {
	opacity: 1;
	pointer-events: auto;
}

.zz-sidebar__head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px;
	border-bottom: 1px solid var(--border);
}

.zz-sidebar__close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--accent);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 16px;
	cursor: pointer;
	flex-shrink: 0;
}

.zz-logo__name {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.06em;
	color: var(--text-primary);
}

.zz-logo__sub {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.25em;
	color: var(--text-muted);
	text-transform: uppercase;
}

.zz-theme-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 12px;
	padding: 12px 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	color: var(--text-primary);
	cursor: pointer;
	width: calc(100% - 24px);
}

.zz-sidebar__nav {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0 16px;
}

.zz-sidebar__label {
	display: block;
	padding: 18px 20px 8px;
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--accent);
}

.zz-sidebar__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	border-left: 3px solid transparent;
	transition: background 0.15s ease;
}

.zz-sidebar__link:hover {
	background: var(--bg-card-hover);
	color: var(--accent);
}

.zz-sidebar__link.is-active {
	background: var(--accent-dim);
	border-left-color: var(--accent);
	color: var(--accent);
}

.zz-sidebar__num {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--accent);
	width: 18px;
	flex-shrink: 0;
}

.zz-sidebar__foot {
	border-top: 1px solid var(--border);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.zz-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #0f172a;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
	border: 2px solid var(--bg-card);
	box-shadow: 0 0 0 1px var(--border);
}

.zz-logout {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
	text-decoration: none;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 8px 12px;
	flex: 1;
	text-align: center;
}

.zz-logout:hover {
	color: var(--error);
	border-color: var(--error);
}

/* ==========================================================================
   7. FŐ TARTALOM KERET
   ========================================================================== */
.zz-main {
	min-height: 100vh;
	position: relative;
	z-index: 1;
}

.zz-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 88px 32px 64px;
}

.zz-backlink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 40px;
	color: var(--text-secondary);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.05em;
	transition: color 0.2s;
}

.zz-backlink:hover {
	color: var(--accent);
}

.zz-footnote {
	margin-top: 24px;
	text-align: center;
	font-size: 12px;
	color: var(--text-muted);
	opacity: 0.5;
	letter-spacing: 0.03em;
}

/* ==========================================================================
   8. NYITÓOLDAL (landing, kijelentkezve)
   ========================================================================== */
.zz-hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.zz-hero__left {
	padding: 56px 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.zz-hero__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.zz-hero__brandicon {
	width: 34px;
	height: 34px;
	border: 1px solid var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}

.zz-hero__version {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.3em;
	color: var(--text-muted);
	text-transform: uppercase;
	margin: 0 0 48px 46px;
}

.zz-hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	line-height: 1.22;
	letter-spacing: -0.01em;
	margin-bottom: 24px;
}

.zz-hero__title span {
	color: var(--accent);
}

.zz-hero__lead {
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.8;
	max-width: 420px;
	margin-bottom: 36px;
}

.zz-hero__divider {
	border: none;
	border-top: 1px solid var(--border);
	margin: 48px 0 32px;
	max-width: 620px;
}

.zz-hero__stats {
	display: flex;
	gap: 48px;
}

.zz-hero__statnum {
	font-family: var(--font-mono);
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
}

.zz-hero__statlabel {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.2em;
	color: var(--text-muted);
	text-transform: uppercase;
	margin-top: 4px;
}

/* Jobb oldali, zárolt előnézet */
.zz-hero__right {
	position: relative;
	background: rgba(100, 116, 139, 0.25);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zz-hero__preview {
	width: 80%;
	max-width: 560px;
	filter: blur(2px);
	opacity: 0.55;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zz-skeleton-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.zz-skeleton-card i {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background: var(--bg-secondary);
	flex-shrink: 0;
}

.zz-skeleton-card b {
	display: block;
	height: 12px;
	border-radius: 3px;
	background: var(--border);
	width: 60%;
	margin-bottom: 8px;
}

.zz-skeleton-card s {
	display: block;
	height: 8px;
	border-radius: 3px;
	background: var(--bg-secondary);
	width: 85%;
}

.zz-hero__lock {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	z-index: 2;
}

.zz-hero__lockicon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	color: #1e293b;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.zz-hero__locktext {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #f8fafc;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
	.zz-hero { grid-template-columns: 1fr; }
	.zz-hero__right { display: none; }
}

/* ==========================================================================
   9. ÁTTEKINTŐ (dashboard)
   ========================================================================== */
.zz-dash__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 36px;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
	line-height: 1.25;
}

.zz-dash__title span {
	color: var(--accent);
}

.zz-dash__lead {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 48px;
}

.zz-progress {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 32px;
}

.zz-progress__count {
	font-family: var(--font-mono);
	font-size: 32px;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
}

.zz-progress__count small {
	color: var(--text-muted);
	font-size: 18px;
}

.zz-progress__label {
	font-size: 12px;
	color: var(--text-muted);
	letter-spacing: 0.1em;
	margin-top: 6px;
}

.zz-progress__barwrap {
	flex: 1;
}

.zz-progress__bar {
	height: 6px;
	background: var(--border);
	border-radius: 3px;
	overflow: hidden;
}

.zz-progress__fill {
	height: 100%;
	background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
	border-radius: 3px;
	box-shadow: 0 0 8px var(--accent-glow);
	transition: width 0.6s ease;
}

.zz-progress__percent {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 6px;
	font-family: var(--font-mono);
}

.zz-modulelist {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.zz-modulecard {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 20px 24px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.zz-modulecard:hover {
	border-color: var(--accent);
	background: var(--bg-card-hover);
	transform: translateX(4px);
}

.zz-modulecard--done {
	border-color: rgba(132, 204, 22, 0.35);
}

.zz-modulecard__badge {
	width: 44px;
	height: 44px;
	border: 1px solid var(--border-bright);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: var(--bg-secondary);
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 700;
	color: var(--text-muted);
}

.zz-modulecard--done .zz-modulecard__badge {
	border-color: var(--success);
	background: rgba(132, 204, 22, 0.08);
	color: var(--success);
}

.zz-modulecard__body {
	flex: 1;
	min-width: 0;
}

.zz-modulecard__titlerow {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}

.zz-modulecard__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	color: var(--text-primary);
}

.zz-modulecard--done .zz-modulecard__title {
	color: var(--success);
}

.zz-modulecard__meta {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

.zz-modulecard__desc {
	font-size: 12px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.zz-modulecard__arrow {
	flex-shrink: 0;
	color: var(--text-muted);
}

.zz-finalcta {
	margin-top: 32px;
	background: linear-gradient(135deg, rgba(132, 204, 22, 0.1), rgba(16, 185, 129, 0.1));
	border: 1px solid var(--accent);
	border-radius: 8px;
	padding: 28px;
	text-align: center;
}

.zz-finalcta h3 {
	font-weight: 800;
	font-size: 20px;
	margin-bottom: 12px;
}

/* ==========================================================================
   10. MODUL OLDAL
   ========================================================================== */
.zz-module__header {
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.zz-module__title {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.25; /* elég hely a betűszáraknak (g, j) */
}

.zz-module__desc {
	color: var(--text-secondary);
	font-size: 1.125rem;
	line-height: 1.6;
}

.zz-bottomnav {
	margin-top: 60px;
	padding: 32px 0;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.zz-bottomnav > div {
	flex: 1;
	min-width: 200px;
}

.zz-bottomnav__center { text-align: center; }
.zz-bottomnav__right { text-align: right; }

.zz-bottomnav .zz-btn--primary {
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.05rem;
	text-transform: none;
	letter-spacing: 0.02em;
	box-shadow: 0 4px 15px var(--accent-glow);
}

/* ==========================================================================
   11. KVÍZ OLDAL FEJLÉCE
   ========================================================================== */
.zz-quiz__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.2rem;
	color: var(--accent);
	margin-bottom: 40px;
}

/* ==========================================================================
   12. BELÉPÉSI OLDAL
   ========================================================================== */
.zz-login {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.zz-login__inner {
	width: 100%;
	max-width: 420px;
}

.zz-login__card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.zz-login__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.zz-login__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 28px;
	letter-spacing: -0.02em;
	margin-bottom: 32px;
}

.zz-login__error {
	background: rgba(255, 68, 102, 0.1);
	border: 1px solid rgba(255, 68, 102, 0.3);
	border-radius: 4px;
	padding: 12px 16px;
	margin-bottom: 20px;
	color: var(--error);
	font-size: 13px;
	font-family: var(--font-mono);
}

/* A wp_login_form() kimenetének stílusozása */
.zz-login__card form p {
	margin-bottom: 16px;
}

.zz-login__card form label {
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--text-muted);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.zz-login__card form input[type='text'],
.zz-login__card form input[type='password'] {
	width: 100%;
	padding: 12px 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 4px;
	color: var(--text-primary);
	font-family: var(--font-mono);
	font-size: 13px;
	outline: none;
	transition: border-color 0.2s;
}

.zz-login__card form input[type='text']:focus,
.zz-login__card form input[type='password']:focus {
	border-color: var(--accent);
	box-shadow: 0 0 12px var(--accent-dim);
}

.zz-login__card form .login-remember {
	display: none;
}

.zz-login__card form input[type='submit'] {
	width: 100%;
	padding: 14px;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: 4px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: box-shadow 0.2s ease;
}

.zz-login__card form input[type='submit']:hover {
	box-shadow: 0 0 20px var(--accent-glow);
}

/* ==========================================================================
   13. RESZPONZIVITÁS
   ========================================================================== */
@media (max-width: 640px) {
	.zz-container { padding: 80px 20px 48px; }
	.zz-hero__left { padding: 40px 24px; }
	.zz-progress { flex-direction: column; align-items: flex-start; gap: 16px; }
	.zz-progress__barwrap { width: 100%; }
	.zz-bottomnav__right,
	.zz-bottomnav__center { text-align: left; }
}
