:root {
  --bg-main: #0d111c;
  --surface-color: #161b26;
  --surface-hover: #1c2333;
  --primary-color: #7c5cff; 
  --secondary-color: #00d4ff; 
  --success-color: #10b981; 
  --text-main: #f5f7ff;
  --text-muted: #9ca3af;
  --border-color: rgba(255,255,255,0.08);
  --mask-color: 0, 0, 0; 
  --mask-opacity: 0.8;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: ''; position: fixed; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(124,92,255,0.12), transparent 40%),
              radial-gradient(circle at 85% 80%, rgba(0,212,255,0.08), transparent 40%);
  pointer-events: none; z-index: -1;
}

h1, h2, h3, h4, .logo-text, .page-title { font-family: 'Space Grotesk', sans-serif; }

/* Header */
.site-header { width: 100%; position: sticky; top: 0; z-index: 100; background-color: rgba(13, 17, 28, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-color); }
.header-inner { width: 95%; max-width: 1300px; margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-main); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.5px; }
.logo .material-symbols-rounded { color: var(--primary-color); font-size: 1.6rem; }
.top-nav { display: flex; gap: 32px; align-items: center; }
.top-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s ease; }
.top-nav a:hover { color: var(--text-main); }
.btn-nav { background: var(--surface-color); color: var(--text-main); padding: 8px 20px; border-radius: 8px; border: 1px solid var(--border-color); font-weight: 600; transition: all 0.2s ease; text-decoration: none; }
.btn-nav:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }

/* Main */
main { width: 95%; max-width: 1300px; margin: 40px auto; flex: 1; display: flex; flex-direction: column; gap: 60px; }
.glass { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 18px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.ad-slot { width: 100%; height: 90px; display: flex; justify-content: center; align-items: center; color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; background: var(--surface-color); border: 1px dashed var(--border-color); border-radius: 12px; margin: 20px 0; }

/* Tool */
.hero-tool-section { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.left-panel { display: flex; flex-direction: column; gap: 40px; }
.hero-text { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,92,255,0.1); border: 1px solid rgba(124,92,255,0.2); color: #ffffff; padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; }
.trust-badge span { font-size: 1.1rem; color: var(--primary-color); }
.page-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--text-main); }
.text-gradient { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }

.tool-controls { display: flex; flex-direction: column; gap: 32px; }
.control-block { display: flex; flex-direction: column; gap: 12px; }
.control-block h3 { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.upload-zone { border: 2px dashed var(--border-color); border-radius: 16px; padding: 32px; text-align: center; cursor: pointer; transition: all 0.3s ease; background: var(--surface-color); }
.upload-zone:hover, .upload-zone.dragover { border-color: var(--primary-color); background: var(--surface-hover); }
.upload-zone .icon-large { font-size: 40px; color: var(--text-muted); margin-bottom: 12px; }
.upload-zone p { font-weight: 500; margin-bottom: 4px; }
.upload-zone .highlight { color: var(--primary-color); }
.hint { font-size: 0.8rem; color: var(--text-muted); }

.toggle-group { display: flex; background: #000; border-radius: 10px; padding: 4px; border: 1px solid var(--border-color); }
.toggle-btn { flex: 1; background: transparent; border: none; color: var(--text-muted); padding: 12px 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: 8px; transition: all 0.2s; }
.toggle-btn.active { background: var(--surface-hover); color: var(--text-main); box-shadow: 0 4px 12px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); }

.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.custom-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.95rem; color: var(--text-main); user-select: none; background: var(--surface-color); padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border-color); transition: border-color 0.2s; }
.custom-checkbox:hover { border-color: rgba(255,255,255,0.2); }
.custom-checkbox input { width: 18px; height: 18px; accent-color: var(--primary-color); cursor: pointer; }

.text-input { width: 100%; padding: 16px; background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; color: var(--text-main); font-size: 1rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s, box-shadow 0.2s; }
.text-input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(124,92,255,0.2); }

.slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
#opacity-val { font-size: 0.95rem; font-weight: 700; color: var(--primary-color); }
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; margin-top: 10px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%; background: #fff; cursor: pointer; margin-top: -10px; box-shadow: 0 4px 12px rgba(0,0,0,0.5); border: 2px solid var(--primary-color); }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 6px; cursor: pointer; background: var(--surface-hover); border-radius: 3px; }

/* Phone Frame */
.right-panel { display: flex; justify-content: center; align-items: flex-start; position: sticky; top: 100px; }
.phone-frame { width: 100%; max-width: 420px; border: 14px solid #111520; border-radius: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05); background-color: #000; position: relative; margin: 0 auto; }
.phone-frame::before { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background-color: #000; border-radius: 20px; z-index: 20; }
.preview-canvas { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 36px; overflow: hidden; background-color: #0a0c12; }
.bg-image { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; justify-content: center; align-items: center; transition: background-image 0.3s ease; z-index: 1; }
.placeholder-text { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.placeholder-text span { font-size: 32px; opacity: 0.5; }

.helper-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 5; }
.helper-overlay.hidden { display: none !important; }
.grid-thirds { background-image: linear-gradient(to right, transparent calc(33.33% - 0.5px), rgba(255,255,255,0.3) calc(33.33% - 0.5px), rgba(255,255,255,0.3) 33.33%, transparent 33.33%), linear-gradient(to right, transparent calc(66.66% - 0.5px), rgba(255,255,255,0.3) calc(66.66% - 0.5px), rgba(255,255,255,0.3) 66.66%, transparent 66.66%), linear-gradient(to bottom, transparent calc(33.33% - 0.5px), rgba(255,255,255,0.3) calc(33.33% - 0.5px), rgba(255,255,255,0.3) 33.33%, transparent 33.33%), linear-gradient(to bottom, transparent calc(66.66% - 0.5px), rgba(255,255,255,0.3) calc(66.66% - 0.5px), rgba(255,255,255,0.3) 66.66%, transparent 66.66%); }
.grid-crosshair { background-image: linear-gradient(to right, transparent calc(50% - 0.5px), var(--primary-color) calc(50% - 0.5px), var(--primary-color) 50%, transparent 50%), linear-gradient(to bottom, transparent calc(50% - 0.5px), var(--primary-color) calc(50% - 0.5px), var(--primary-color) 50%, transparent 50%); }
.grid-safe-area { top: 12%; bottom: 22%; left: 10%; right: 20%; border: 2px dashed var(--success-color); border-radius: 12px; background: rgba(16, 185, 129, 0.05); }
.grid-subtitle-safe { top: 60%; bottom: 24%; left: 10%; right: 20%; border: 2px solid var(--secondary-color); border-radius: 8px; background: rgba(0, 212, 255, 0.1); display: flex; justify-content: center; align-items: flex-end; padding-bottom: 8px; }
.grid-subtitle-safe span { font-size: 0.7rem; font-weight: 700; color: var(--secondary-color); text-transform: uppercase; }
.live-hook-text { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); width: 80%; text-align: center; font-size: 2rem; font-family: 'Space Grotesk', sans-serif; font-weight: 800; color: white; text-shadow: 0px 4px 16px rgba(0,0,0,0.9), 0px 0px 4px rgba(0,0,0,0.6); z-index: 15; pointer-events: none; word-wrap: break-word; line-height: 1.1; }

.ui-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 20; }
.danger-zone { position: absolute; background-color: rgba(var(--mask-color), var(--mask-opacity)); background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 69, 58, 0.15) 10px, rgba(255, 69, 58, 0.15) 20px); backdrop-filter: blur(4px); transition: all 0.3s ease; display: flex; flex-direction: column; }
.top-zone { top: 0; left: 0; right: 0; height: 60px; border-bottom: 1px solid rgba(255, 69, 58, 0.4); }
.right-zone { right: 0; width: 75px; height: auto; padding-top: 24px; align-items: center; justify-content: flex-end; padding-bottom: 24px; gap: 20px; border-left: 1px solid rgba(255, 69, 58, 0.4); }
.bottom-zone { bottom: 0; left: 0; right: 0; height: 20%; padding: 24px; justify-content: flex-end; gap: 14px; border-top: 1px solid rgba(255, 69, 58, 0.4); }

.mock-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.mock-icon.profile { width: 52px; height: 52px; margin-bottom: 10px; }
.mock-text { height: 14px; background: rgba(255,255,255,0.3); border-radius: 6px; flex-shrink: 0; }
.mock-text.title { width: 45%; height: 18px; margin-bottom: 6px;}
.mock-text.line { width: 85%; }
.mock-text.line.short { width: 65%; }

.preview-canvas.tiktok .bottom-zone { height: 26%; }
.preview-canvas.tiktok .right-zone { bottom: 16%; } 
.preview-canvas.reels .bottom-zone { height: 22%; }
.preview-canvas.reels .right-zone { bottom: 12%; } 
.preview-canvas.shorts .bottom-zone { height: 28%; }
.preview-canvas.shorts .right-zone { bottom: 20%; } 

/* Feature Cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }
.feature-card { background: var(--surface-color); border: 1px solid var(--border-color); padding: 32px; border-radius: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; transition: all 0.3s ease; position: relative; text-decoration: none; color: var(--text-main); }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(124,92,255,0.4); box-shadow: 0 10px 40px rgba(124,92,255,0.15); }
.card-icon { width: 48px; height: 48px; background: rgba(124,92,255,0.1); border-radius: 12px; display: flex; justify-content: center; align-items: center; color: var(--primary-color); }
.feature-card h3 { font-size: 1.2rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }
.read-more { color: var(--primary-color); font-weight: 600; font-size: 0.9rem; margin-top: auto; }

/* SEO Content & Blocks */
.seo-content { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 24px; padding: 60px; }
.seo-header { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.seo-header h2 { font-size: 2rem; margin-bottom: 16px; }
.seo-header p { color: var(--text-muted); font-size: 1.1rem; }

.seo-featured-image { width: 100%; max-width: 900px; margin: 0 auto 40px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.seo-featured-image img { width: 100%; height: auto; display: block; object-fit: cover; }

.content-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.text-block h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--primary-color); }
.text-block p { color: var(--text-muted); font-size: 1rem; }

.e-e-a-t-block { background: rgba(124,92,255,0.05); border-left: 4px solid var(--primary-color); padding: 24px; border-radius: 0 12px 12px 0; margin: 20px 0; }
.e-e-a-t-block h3 { margin-bottom: 8px; color: var(--text-main); font-size: 1.1rem;}
.e-e-a-t-block p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.use-cases-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px;}
.use-cases-list span { background: var(--surface-color); padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border-color); font-size: 0.85rem; color: #ffffff; font-weight: 500;}

/* Table */
.table-container { margin: 40px 0; overflow-x: auto; }
.table-container h3 { text-align: center; margin-bottom: 24px; font-size: 1.5rem; }
.seo-table { width: 100%; border-collapse: collapse; background: var(--bg-main); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
.seo-table th, .seo-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--border-color); }
.seo-table th { background: var(--surface-hover); color: var(--text-main); font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.seo-table td { color: var(--text-muted); }

/* Downloads Block */
.downloads-block { margin-top: 60px; display: flex; flex-direction: column; align-items: center; gap: 32px; background: linear-gradient(135deg, rgba(124,92,255,0.05), rgba(0,212,255,0.05)); border: 1px solid rgba(124,92,255,0.2); border-radius: 20px; padding: 48px; text-align: center; }
.downloads-content h3 { font-size: 1.6rem; margin-bottom: 12px; }
.downloads-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-download { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-color); border: 1px solid var(--border-color); color: var(--text-main); text-decoration: none; padding: 14px 28px; border-radius: 12px; font-weight: 600; transition: all 0.2s; }
.btn-download:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }

/* FAQ SECTION */
.faq-section { padding: 60px 0; width: 100%; max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
details.faq-item { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: border-color 0.2s; }
details.faq-item:hover { border-color: rgba(255,255,255,0.2); }
details.faq-item summary { padding: 24px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; color: var(--primary-color); font-size: 1.5rem; transition: transform 0.2s; }
details.faq-item[open] summary::after { content: '−'; }
details.faq-item p { padding: 0 24px 24px; color: var(--text-muted); }

/* Related Tools */
.related-tools { padding: 20px 0 60px; }
.link-card { cursor: pointer; }
.coming-soon { position: absolute; top: 24px; right: 24px; background: rgba(124,92,255,0.2); color: var(--primary-color); font-size: 0.7rem; font-weight: 700; padding: 6px 12px; border-radius: 20px; text-transform: uppercase; }

/* Article Layout (Guides) */
.article-layout { max-width: 800px; margin: 0 auto; width: 100%; margin-top: 40px; }
.breadcrumbs { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumbs a { color: var(--primary-color); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.updated-date { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-bottom: 40px; }

.table-of-contents { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; padding: 32px; margin: 40px 0; }
.table-of-contents h2 { margin-top: 0; font-size: 1.4rem; color: var(--text-main); margin-bottom: 16px; }
.table-of-contents ul { list-style: none; padding: 0; margin: 0; }
.table-of-contents li { margin-bottom: 12px; }
.table-of-contents a { color: var(--primary-color); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.table-of-contents a:hover { color: var(--secondary-color); text-decoration: underline; }

.prose { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); }
.prose h1.page-title { 
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-top: 10px; margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block; width: fit-content;
}
.prose h2 { font-size: 1.8rem; color: var(--text-main); margin: 50px 0 20px; font-family: 'Space Grotesk', sans-serif; }
.prose h3 { font-size: 1.4rem; color: var(--text-main); margin: 40px 0 16px; font-family: 'Space Grotesk', sans-serif; }
.prose p { margin-bottom: 20px; }
.prose ul { margin-bottom: 20px; padding-left: 20px; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--text-main); }
.prose img { width: 100%; border-radius: 16px; margin: 30px 0; border: 1px solid var(--border-color); }
.snippet-box { background: rgba(124,92,255,0.05); border-left: 4px solid var(--primary-color); padding: 24px; border-radius: 0 12px 12px 0; margin: 30px 0; }
.snippet-box ul { margin: 0; }
.cta-box { background: var(--surface-color); border: 1px solid var(--primary-color); border-radius: 16px; padding: 32px; text-align: center; margin: 40px 0; }
.cta-box h3 { margin-top: 0; color: var(--text-main); }
.cta-box p { margin-bottom: 24px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-color); color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 12px; font-weight: 600; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: #6a4deb; }

.related-guides { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-color); }
.related-guides h3 { color: var(--text-main); font-size: 1.4rem; margin-bottom: 20px; }
.related-guides ul { list-style: none; padding: 0; }
.related-guides li { margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.related-guides li::before { content: '→'; color: var(--primary-color); font-weight: bold; }
.related-guides a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.related-guides a:hover { color: var(--primary-color); text-decoration: underline; }

/* Footer */
.site-footer { width: 100%; background-color: #000; border-top: 1px solid var(--border-color); padding: 60px 0 40px; margin-top: 60px;}
.footer-inner { width: 95%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.btn-back { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-color); color: var(--text-main); text-decoration: none; font-weight: 500; padding: 12px 28px; border-radius: 30px; border: 1px solid var(--border-color); transition: all 0.2s ease; }
.btn-back:hover { background-color: var(--surface-hover); color: var(--primary-color); border-color: var(--primary-color); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text-main); }
.footer-bottom { color: var(--text-muted); font-size: 0.85rem; text-align: center; }
.footer-bottom a { color: var(--primary-color); text-decoration: none; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: rgba(22, 27, 38, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-color); box-shadow: 0 10px 40px rgba(0,0,0,0.8); padding: 16px 24px; border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 24px; z-index: 9999; width: 90%; max-width: 700px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; }
.cookie-banner.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cookie-content p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.cookie-content a { color: var(--primary-color); text-decoration: underline; font-weight: 500; }
.cookie-actions button { white-space: nowrap; padding: 10px 24px; font-size: 0.9rem; }

/* ==========================================
   RESPONSIVE DESIGN (MOBILE PADDING)
   ========================================== */
@media (max-width: 1024px) {
  .hero-tool-section { grid-template-columns: 1fr; gap: 40px; }
  .right-panel { position: static; }
  .content-blocks { grid-template-columns: 1fr; gap: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Alap padding hozzáadása a mobilos nézethez, hogy a tartalom ne lógjon ki a képernyő szélére */
  .header-inner { flex-direction: column; gap: 16px; padding: 16px 20px; }
  main { width: 100%; padding: 0 20px; gap: 40px; margin-top: 20px; }
  .site-footer { padding: 40px 20px; }
  
  .top-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .page-title { font-size: 2rem; }
  .checkbox-group { grid-template-columns: 1fr; }
  
  .seo-content, .downloads-block { padding: 32px 20px; }
  .btn-download { width: 100%; justify-content: center; }
  .seo-table th, .seo-table td { padding: 12px; font-size: 0.9rem; }
  
  .cookie-banner { flex-direction: column; text-align: center; gap: 16px; bottom: 16px; width: calc(100% - 40px); padding: 20px; }
  .cookie-actions, .cookie-actions button { width: 100%; }

  /* Biztonsági finomhangolás az Article Layout elemeinek */
  .prose h1.page-title { font-size: 1.8rem; }
  .table-of-contents { padding: 20px; }
  .snippet-box { padding: 20px; }
}