/* FakeEmail.net v2 — tasarım sistemi. Font indirmesi yok (sistem yazı tipleri, 14 dil). */
:root {
  --bg: #f6f6fd;
  --surface: #ffffff;
  --surface-2: #f0f0fb;
  --border: #e3e3f1;
  --text: #15172f;
  --text-2: #4b4f6e;
  --text-3: #5d6186;
  --brand: #4f46e5;
  --brand-strong: #4338ca;
  --brand-soft: #eceeff;
  --accent: #0d9488;
  --accent-soft: #e2f7f4;
  --accent-text: #0f766e;
  --warn: #b45309;
  --warn-soft: #fff4e2;
  --danger: #dc2626;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(21, 23, 47, .06), 0 10px 30px rgba(21, 23, 47, .07);
  --shadow-sm: 0 1px 2px rgba(21, 23, 47, .08);
  --container: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #0e1022;
  --surface: #161933;
  --surface-2: #1c2040;
  --border: #2a2f57;
  --text: #ecedfa;
  --text-2: #b3b6d8;
  --text-3: #8e92bb;
  --brand: #8f89ff;
  --brand-strong: #aaa5ff;
  --brand-soft: #242852;
  --accent: #2dd4bf;
  --accent-soft: #10302f;
  --accent-text: #2dd4bf;
  --warn: #fbbf24;
  --warn-soft: #3a2c0f;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 10px 30px rgba(0, 0, 0, .25);
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0e1022; --surface: #161933; --surface-2: #1c2040; --border: #2a2f57;
    --text: #ecedfa; --text-2: #b3b6d8; --text-3: #8e92bb;
    --brand: #8f89ff; --brand-strong: #aaa5ff; --brand-soft: #242852;
    --accent: #2dd4bf; --accent-soft: #10302f; --accent-text: #2dd4bf; --warn: #fbbf24; --warn-soft: #3a2c0f;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 10px 30px rgba(0, 0, 0, .25);
    color-scheme: dark;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--brand-strong); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 6px; }
h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -.015em; margin: 0 0 .5em; }
h1, h2, h3 { text-wrap: balance; }
:lang(ja) h1, :lang(ja) h2, :lang(ja) h3, :lang(zh-Hans) h1, :lang(zh-Hans) h2, :lang(zh-Hans) h3 { word-break: auto-phrase; letter-spacing: 0; }
h1 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem); font-weight: 750; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip-link:focus { top: 8px; color: #fff; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45em; min-height: 44px; padding: .55em 1.05em; border-radius: 12px; border: 1px solid transparent; font: inherit; font-weight: 650; font-size: .95rem; cursor: pointer; text-decoration: none; transition: background .15s, color .15s, border-color .15s, transform .05s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-strong); color: #fff; }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-soft { background: var(--brand-soft); color: var(--brand-strong); }
.btn-soft:hover { color: var(--brand-strong); filter: brightness(.97); }
.btn-danger:hover { border-color: var(--danger); color: var(--danger); }
.btn[disabled] { opacity: .6; cursor: default; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 12px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand:hover { color: var(--text); }
.brand img { width: 34px; height: 34px; }
.brand-text small { color: var(--text-3); font-weight: 600; font-size: 1em; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { color: var(--text-2); text-decoration: none; font-weight: 600; font-size: .95rem; padding: 8px 12px; border-radius: 10px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); background: var(--surface-2); }
.header-tools { display: flex; align-items: center; gap: 6px; }
.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text-2); cursor: pointer; }
.icon-btn:hover { color: var(--brand); border-color: var(--brand); }
.icon-btn svg { width: 20px; height: 20px; }
.lang-menu { position: relative; }
.lang-menu summary { list-style: none; display: inline-flex; align-items: center; gap: 6px; height: 42px; padding: 0 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text-2); font-weight: 650; font-size: .9rem; cursor: pointer; }
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary svg { width: 18px; height: 18px; }
.lang-menu[open] summary { border-color: var(--brand); color: var(--brand); }
.lang-list { position: absolute; right: 0; top: calc(100% + 8px); width: 220px; max-height: 70vh; overflow: auto; margin: 0; padding: 6px; list-style: none; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); z-index: 50; }
.lang-list a { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 9px; color: var(--text); text-decoration: none; font-size: .95rem; }
.lang-list a:hover { background: var(--surface-2); }
.lang-list a[aria-current="true"] { background: var(--brand-soft); color: var(--brand-strong); font-weight: 650; }
.lang-list small { color: var(--text-3); text-transform: uppercase; }
.nav-toggle { display: none; }
@media (max-width: 820px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 64px; flex-direction: column; align-items: stretch; gap: 2px; padding: 10px 16px 16px; background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .nav-toggle { display: inline-grid; margin-left: auto; }
  .header-tools { margin-left: 0; }
  .lang-menu summary .lang-name { display: none; }
}

/* Language suggestion banner */
.lang-suggest { background: var(--brand-soft); border-bottom: 1px solid var(--border); font-size: .95rem; }
.lang-suggest .container { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.lang-suggest a { font-weight: 700; }
.lang-suggest button { margin-left: auto; background: none; border: 0; color: var(--text-2); font: inherit; cursor: pointer; padding: 4px 8px; }

/* Hero + tool */
.hero { padding: 36px 0 28px; background: radial-gradient(1200px 400px at 50% -80px, color-mix(in srgb, var(--brand) 16%, transparent), transparent 70%); }
.hero-head { text-align: center; max-width: 760px; margin: 0 auto 22px; }
.hero-head p { color: var(--text-2); font-size: 1.08rem; margin: 0; }
.tool-card { max-width: 860px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); padding: 18px; }
.addr-label { display: block; font-size: .85rem; font-weight: 650; color: var(--text-3); margin: 0 0 6px 4px; }
.addr-row { display: flex; gap: 8px; }
.addr-field { flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 0 12px; }
.addr-field input { flex: 1; min-width: 0; height: 52px; border: 0; background: transparent; color: var(--text); font: 600 1.08rem/1 var(--mono); outline: none; }
.addr-field select { max-width: 42%; border: 0; background: transparent; color: var(--text-2); font: inherit; }
.addr-row .btn-primary { min-width: 120px; min-height: 54px; border-radius: 14px; }
.tool-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tool-actions .btn { flex: 1 1 130px; }
.tool-note { display: flex; align-items: center; gap: 8px; margin: 12px 4px 0; font-size: .88rem; color: var(--text-3); }
.tool-note svg { width: 16px; height: 16px; flex: none; color: var(--accent); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } html { scroll-behavior: auto; } }
@media (max-width: 560px) {
  .addr-row { flex-direction: column; }
  .addr-row .btn-primary { width: 100%; }
  .addr-field input { font-family: var(--font); font-size: 1rem; letter-spacing: -.01em; }
}
@media (max-width: 400px) {
  .addr-field > svg { display: none; }
  .addr-field { padding: 0 10px; }
}

.inbox { max-width: 860px; margin: 16px auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.inbox-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); font-weight: 700; }
.inbox-head small { color: var(--text-3); font-weight: 600; }
.inbox-list { list-style: none; margin: 0; padding: 0; }
.mail-item { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center; width: 100%; padding: 12px 16px; border: 0; border-bottom: 1px solid var(--border); background: transparent; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.mail-item:hover { background: var(--surface-2); }
.mail-item.unread .mail-subject { font-weight: 750; }
.mail-item.unread .avatar::after { content: ""; position: absolute; right: -2px; top: -2px; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); border: 2px solid var(--surface); }
.avatar { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-strong); font-weight: 800; text-transform: uppercase; }
.mail-from { font-size: .88rem; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mail-subject { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mail-date { font-size: .8rem; color: var(--text-3); white-space: nowrap; }
.mail-meta { min-width: 0; }
.empty-state { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 34px 20px; color: var(--text-3); }
.empty-state svg { width: 64px; height: 64px; color: var(--brand); opacity: .8; }
.empty-state strong { color: var(--text); font-size: 1.05rem; }

/* Dialogs */
dialog { width: min(760px, calc(100% - 24px)); max-height: calc(100vh - 40px); padding: 0; border: 1px solid var(--border); border-radius: 20px; background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(10, 12, 30, .55); }
.dlg-head { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.dlg-head h2 { font-size: 1.15rem; margin: 0; word-break: break-word; }
.dlg-head .icon-btn { margin-left: auto; flex: none; }
.dlg-body { padding: 16px 18px; }
.dlg-foot { display: flex; gap: 8px; justify-content: flex-end; padding: 12px 18px; border-top: 1px solid var(--border); }
.mail-frame { width: 100%; min-height: 55vh; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.mail-info { font-size: .9rem; color: var(--text-2); margin: 4px 0 0; word-break: break-all; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-weight: 650; font-size: .92rem; }
.field input, .field select, .field textarea { font: inherit; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.field textarea { min-height: 150px; resize: vertical; }
.qr-box { display: grid; place-items: center; gap: 10px; text-align: center; }
.qr-box #qr { background: #fff; padding: 12px; border-radius: 12px; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); opacity: 0; background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: 12px; font-weight: 650; transition: .2s; z-index: 90; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Sections */
.section { padding: 48px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 760px; margin: 0 auto 26px; text-align: center; }
.section-head p { color: var(--text-2); }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--text-2); margin: 0; }
.card .ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-strong); margin-bottom: 12px; }
.card .ico svg { width: 22px; height: 22px; }

/* Prose (makale ve sayfa gövdesi) */
.prose { font-size: 1.06rem; line-height: 1.75; }
.prose > * + * { margin-top: 1em; }
.prose h2 { margin-top: 1.8em; scroll-margin-top: 84px; }
.prose h3 { margin-top: 1.4em; scroll-margin-top: 84px; }
.prose p, .prose ul, .prose ol { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .35em; }
.prose blockquote { margin: 1.4em 0; padding: 4px 0 4px 18px; border-left: 4px solid var(--brand); color: var(--text-2); }
.prose .table-wrap, .prose table { display: block; overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; font-size: .96rem; border: 1px solid var(--border); border-radius: 12px; }
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; min-width: 120px; }
.prose thead th { background: var(--surface-2); font-weight: 700; }
.prose code { font-family: var(--mono); font-size: .92em; background: var(--surface-2); padding: .1em .35em; border-radius: 6px; }
.callout { padding: 14px 16px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface-2); }
.callout.tip { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.callout.warning { background: var(--warn-soft); border-color: color-mix(in srgb, var(--warn) 30%, transparent); }
.callout > :last-child { margin-bottom: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 0 18px; margin-bottom: 10px; }
.faq summary { list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 16px 0; cursor: pointer; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--brand); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 16px; color: var(--text-2); }
.faq details > div > :last-child { margin-bottom: 0; }

/* Blog */
.page-head { padding: 34px 0 10px; }
.page-head p { color: var(--text-2); max-width: 720px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 6px; padding: 0; list-style: none; }
.chip { display: inline-flex; align-items: center; min-height: 36px; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text-2); text-decoration: none; font-weight: 650; font-size: .9rem; }
.chip:hover, .chip[aria-current="page"] { border-color: var(--brand); color: var(--brand-strong); background: var(--brand-soft); }
.post-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); padding: 20px 0 10px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--surface-2); }
.post-card .pc-body { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; flex: 1; }
.post-card h2, .post-card h3 { font-size: 1.12rem; margin: 0; }
.post-card h2 a, .post-card h3 a { color: var(--text); text-decoration: none; }
.post-card h2 a::after, .post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card { position: relative; }
.post-card p { color: var(--text-2); font-size: .95rem; margin: 0; }
.pc-meta { display: flex; gap: 10px; align-items: center; font-size: .82rem; color: var(--text-3); margin-top: auto; }
.cat { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--accent-text); }
.pager { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; padding: 20px 0 40px; list-style: none; margin: 0; }
.pager a, .pager span { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); text-decoration: none; font-weight: 650; }
.pager [aria-current="page"] { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Article */
.breadcrumbs { font-size: .88rem; color: var(--text-3); margin: 22px 0 12px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--border); }
.breadcrumbs a { color: var(--text-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 40px; align-items: start; }
.article-main { min-width: 0; max-width: 760px; }
.article-aside { position: sticky; top: 84px; }
@media (max-width: 980px) { .article-layout { grid-template-columns: minmax(0, 1fr); } .article-aside { display: none; } }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; color: var(--text-3); font-size: .92rem; margin: 6px 0 18px; }
.byline { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 650; text-decoration: none; }
.byline:hover { color: var(--brand); }
.av { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; font-weight: 800; font-size: .9rem; flex: none; }
.hero-img { border-radius: 18px; border: 1px solid var(--border); overflow: hidden; margin: 0 0 22px; background: var(--surface-2); }
.hero-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.takeaways { background: var(--surface); border: 1px solid var(--border); border-left: 5px solid var(--accent); border-radius: 14px; padding: 16px 18px; margin: 0 0 24px; }
.takeaways h2 { font-size: 1.05rem; margin: 0 0 8px; }
.takeaways ul { margin: 0; padding-left: 1.2em; }
.takeaways li + li { margin-top: .3em; }
.toc { font-size: .92rem; }
.toc strong { display: block; margin-bottom: 8px; }
.toc ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--border); }
.toc a { display: block; padding: 5px 0 5px 12px; margin-left: -2px; border-left: 2px solid transparent; color: var(--text-2); text-decoration: none; line-height: 1.4; }
.toc a:hover, .toc a.active { color: var(--brand-strong); border-left-color: var(--brand); }
.toc-mobile { margin: 0 0 22px; }
.toc-mobile summary { cursor: pointer; font-weight: 700; padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.toc-mobile ol { margin: 8px 0 0; padding: 0 0 0 1.4em; }
@media (min-width: 981px) { .toc-mobile { display: none; } }
.author-box { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 20px; margin: 34px 0; }
.author-box .av { width: 56px; height: 56px; font-size: 1.1rem; }
.author-box p { color: var(--text-2); margin: 4px 0 0; font-size: .96rem; }
.cta-box { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; background: linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand) 55%, var(--accent))); color: #fff; border-radius: 20px; padding: 22px 24px; margin: 30px 0; }
.cta-box p { margin: 0; font-weight: 650; font-size: 1.08rem; max-width: 520px; }
.cta-box .btn { background: #fff; color: var(--brand-strong); }
.dates { font-size: .88rem; color: var(--text-3); }

/* Forms / contact */
.form-card { max-width: 720px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 22px; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; font-weight: 600; }
.alert-ok { background: var(--accent-soft); color: var(--accent-text); }
.alert-err { background: #fdecec; color: var(--danger); }

/* Ads (yalnızca reklam kodu varsa görünür; CLS olmaması için min-height) */
.ad-slot { margin: 26px auto; text-align: center; min-height: 100px; }
.ad-slot::before { content: attr(data-label); display: block; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }

/* Footer */
.site-footer { margin-top: 40px; background: var(--surface); border-top: 1px solid var(--border); padding: 40px 0 26px; font-size: .95rem; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: 1.4fr repeat(3, 1fr); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
.footer-grid h2 { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li + li { margin-top: 6px; }
.footer-grid a { color: var(--text-2); text-decoration: none; }
.footer-grid a:hover { color: var(--brand); }
.footer-about p { color: var(--text-2); max-width: 360px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--text-3); font-size: .88rem; }
.footer-langs { display: flex; flex-wrap: wrap; gap: 4px 12px; }
.footer-langs a { color: var(--text-3); text-decoration: none; }
.footer-langs a:hover { color: var(--brand); }
