/* Güventur — ortak stil dosyası
   Renkler token olarak :root'ta; koyu tema prefers-color-scheme ile. */

:root {
  color-scheme: light dark;

  /* Marka (uygulama ve ikonla aynı) */
  --navy-900: #071F45;
  --navy-700: #0B3B8C;
  --blue-500: #1670D6;
  --sky-400: #22A4EE;
  --amber-500: #F59E0B;
  --amber-300: #FCD34D;

  /* Açık tema — nötrler maviye hafif eğilimli */
  --bg: #F5F8FC;
  --surface: #FFFFFF;
  --surface-2: #EDF2F9;
  --border: #D6E0ED;
  --border-strong: #B9C8DC;
  --text: #0C1A2F;
  --text-muted: #46597A;
  --text-soft: #5E7090;
  --link: #0B5CC0;
  --link-hover: #0B3B8C;
  --focus: #F59E0B;
  --accent-ink: #7A4A00;
  --accent-bg: #FEF3D6;
  --hero-from: #071F45;
  --hero-to: #0B3B8C;
  --hero-text: #F2F6FC;
  --hero-muted: #BCD0EC;
  --icon-bg: #E3EEFB;
  --icon-ink: #0B3B8C;
  --shadow: 0 1px 2px rgba(7, 31, 69, .06), 0 8px 24px rgba(7, 31, 69, .07);

  --font-head: "Bricolage Grotesque", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --wrap: 1120px;
  --gutter: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #06132A;
    --surface: #0B1C38;
    --surface-2: #0F2547;
    --border: #1C355C;
    --border-strong: #2A4A78;
    --text: #E8EEF8;
    --text-muted: #A9BAD3;
    --text-soft: #8EA2C0;
    --link: #74C8F8;
    --link-hover: #A9DEFB;
    --focus: #FCD34D;
    --accent-ink: #FCD34D;
    --accent-bg: rgba(245, 158, 11, .14);
    --hero-from: #04112A;
    --hero-to: #0A2E6B;
    --hero-text: #F2F6FC;
    --hero-muted: #AFC4E4;
    --icon-bg: rgba(34, 164, 238, .14);
    --icon-ink: #74C8F8;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 10px 28px rgba(0, 0, 0, .28);
  }
}

@media (min-width: 720px) {
  :root { --gutter: 28px; }
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-padding-top: 16px; }
@media (min-width: 900px) { html { scroll-padding-top: 88px; } }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 1.2rem + .9vw, 1.8rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: var(--link); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--link-hover); text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 100;
  background: var(--surface);
  color: var(--text);
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--focus);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.icon { width: 22px; height: 22px; flex: none; }
.icon-stroke { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Üst menü ---------- */
.site-header {
  position: relative;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--border);
}
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .site-header { background: var(--surface); }
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.25rem;
  padding-block: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}
.brand:hover { color: var(--text); }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; line-height: 1.1; }
.brand-sub { display: block; font-size: .78rem; color: var(--text-soft); font-weight: 600; letter-spacing: .01em; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  font-size: .9rem;
  padding: .35rem .7rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
}
.lang-switch:hover { color: var(--text); border-color: var(--link); }
.lang-switch .icon { width: 16px; height: 16px; }

.site-nav { width: 100%; order: 3; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 .15rem;
  display: flex;
  flex-wrap: wrap;
  gap: .15rem .35rem;
}
.site-nav a {
  display: inline-block;
  padding: .35rem .6rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .95rem;
}
.site-nav a:hover { color: var(--text); background: var(--surface-2); }
.site-nav a[aria-current="page"] { color: var(--text); background: var(--surface-2); box-shadow: inset 0 -2px 0 var(--amber-500); }

/* Dar ekranda menü iki satır olduğu için üst bar yapışkan DEĞİL (uzun metinlerde
   ekranın üçte birini kaplamasın); geniş ekranda tek satır ve yapışkan. */
@media (min-width: 900px) {
  .site-header { position: sticky; top: 0; }
  .site-nav { width: auto; order: 0; }
  .site-nav ul { padding: 0; }
}

/* ---------- Hero (ana sayfa) ---------- */
.hero {
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(34, 164, 238, .28), transparent 60%),
    linear-gradient(160deg, var(--hero-from) 0%, var(--hero-to) 100%);
  color: var(--hero-text);
  padding-block: 3rem 3.25rem;
}
.hero h1 { color: var(--hero-text); margin-bottom: .35em; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
  .hero { padding-block: 4rem 4.5rem; }
}

.hero-id { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; }
.hero-id img { width: 64px; height: 64px; border-radius: 16px; box-shadow: 0 6px 20px rgba(0, 0, 0, .3); }
.hero-id p { margin: 0; font-weight: 600; color: var(--hero-muted); font-size: .95rem; line-height: 1.35; }
.hero-id strong { display: block; color: var(--hero-text); font-family: var(--font-head); font-size: 1.15rem; }

.hero-lead { font-size: 1.15rem; color: var(--hero-muted); max-width: 36rem; margin-bottom: 1.75rem; }

.store-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 190px;
  padding: .65rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
  color: rgba(242, 246, 252, .72);
  cursor: not-allowed;
  user-select: none;
}
.store-btn .icon { width: 26px; height: 26px; opacity: .8; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn .store-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: rgba(242, 246, 252, .85); }
.store-btn .store-small { font-size: .78rem; }
.badge-soon {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #3D2600;
  background: var(--amber-300);
  border-radius: 999px;
  padding: .15rem .5rem;
}
.store-note { margin: .9rem 0 0; font-size: .92rem; color: var(--hero-muted); }

/* Hero'daki canlı takip önizlemesi (dekoratif) */
.preview {
  background: #FFFFFF;
  color: #0C1A2F;
  border-radius: 20px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  max-width: 380px;
  width: 100%;
  justify-self: center;
}
@media (prefers-color-scheme: dark) {
  .preview { background: #0E2244; color: #E8EEF8; box-shadow: 0 20px 50px rgba(0, 0, 0, .5); border: 1px solid #1F3C68; }
}
.preview-head { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; font-weight: 600; opacity: .75; margin-bottom: .75rem; }
.live-dot { display: inline-flex; align-items: center; gap: .35rem; color: #0E8A4F; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(14, 138, 79, .2); }
@media (prefers-color-scheme: dark) { .live-dot { color: #4ADE80; } }
.preview-eta { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; line-height: 1.1; margin: 0 0 .2rem; }
.preview-sub { font-size: .9rem; opacity: .75; margin: 0 0 1rem; }
.route {
  position: relative;
  height: 44px;
  margin: 0 .35rem 1rem;
}
.route::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px; margin-top: -2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1670D6 0%, #1670D6 62%, #C9D6E8 62%);
}
@media (prefers-color-scheme: dark) {
  .route::before { background: linear-gradient(90deg, #22A4EE 0%, #22A4EE 62%, #2A4A78 62%); }
}
.route .stop {
  position: absolute; top: 50%;
  width: 12px; height: 12px; margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #1670D6;
}
.route .stop.next { border-color: #B9C8DC; }
.route .stop.home { width: 18px; height: 18px; margin: -9px 0 0 -9px; border-color: #071F45; }
@media (prefers-color-scheme: dark) {
  .route .stop { background: #0E2244; border-color: #22A4EE; }
  .route .stop.next { border-color: #2A4A78; }
  .route .stop.home { border-color: #FCD34D; }
}
.route .bus {
  position: absolute; top: 50%; left: 62%;
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border-radius: 9px;
  background: #F59E0B;
  color: #071F45;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(245, 158, 11, .45);
}
.route .bus svg { width: 18px; height: 18px; }
.preview-feed { list-style: none; margin: 0; padding: .75rem 0 0; border-top: 1px solid #E3EAF4; display: grid; gap: .55rem; }
@media (prefers-color-scheme: dark) { .preview-feed { border-top-color: #1F3C68; } }
.preview-feed li { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; line-height: 1.35; }
.preview-feed .icon { width: 18px; height: 18px; margin-top: 1px; color: #1670D6; }
@media (prefers-color-scheme: dark) { .preview-feed .icon { color: #74C8F8; } }
.preview-feed time { margin-left: auto; opacity: .6; font-variant-numeric: tabular-nums; }

/* ---------- Bölümler ---------- */
.section { padding-block: 3.5rem; }
.section + .section { padding-top: 0; }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; margin: 0; }
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-bg);
  padding: .2rem .6rem;
  border-radius: 6px;
  margin-bottom: .75rem;
}

.roles { display: grid; gap: 1rem; }
@media (min-width: 900px) { .roles { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
}
.card h3 { display: flex; align-items: center; gap: .65rem; font-size: 1.2rem; margin-bottom: .6rem; }
.card > p { color: var(--text-muted); }
.icon-chip {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--icon-bg);
  color: var(--icon-ink);
  flex: none;
}
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.feature-list li { display: flex; gap: .55rem; align-items: flex-start; }
.feature-list .icon { width: 18px; height: 18px; margin-top: .22rem; color: var(--blue-500); }
@media (prefers-color-scheme: dark) { .feature-list .icon { color: var(--sky-400); } }

.trust {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.trust-grid { display: grid; gap: 1.25rem 2rem; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; gap: .9rem; align-items: flex-start; }
.trust-item h3 { margin-bottom: .25rem; font-size: 1.08rem; }
.trust-item p { margin: 0; color: var(--text-muted); }
.trust-links { margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; font-weight: 600; }

.contact-card {
  display: grid;
  gap: 1rem 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}
@media (min-width: 720px) { .contact-card { grid-template-columns: 1fr auto; padding: 2rem 2.2rem; } }
.contact-card h2 { margin-bottom: .35rem; }
.contact-card p { margin: 0; color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: .75rem 1.2rem;
  border-radius: 11px;
  text-decoration: none;
  background: var(--navy-700);
  color: #FFFFFF;
  border: 1px solid transparent;
  max-width: 100%;
}
.btn:hover { background: var(--navy-900); color: #FFFFFF; }
@media (prefers-color-scheme: dark) {
  .btn { background: var(--amber-300); color: #071F45; }
  .btn:hover { background: #FDE68A; color: #071F45; }
}
.btn .icon { width: 20px; height: 20px; }
.btn-text { overflow-wrap: anywhere; }

/* ---------- Belge sayfaları ---------- */
.doc-head {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: 2.25rem 1.75rem;
}
.doc-head h1 { margin-bottom: .4rem; }
.doc-head .lead { color: var(--text-muted); font-size: 1.1rem; max-width: 44rem; margin-bottom: .9rem; }
.doc-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; font-size: .93rem; color: var(--text-soft); margin: 0; }
.doc-meta strong { color: var(--text-muted); }

.doc-layout { display: grid; gap: 2rem; padding-block: 2rem 3.5rem; }
@media (min-width: 1000px) {
  .doc-layout { grid-template-columns: 250px minmax(0, 1fr); gap: 3.5rem; padding-top: 2.75rem; }
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  align-self: start;
  font-size: .95rem;
}
@media (min-width: 1000px) {
  .toc { position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow: auto; }
}
.toc h2 { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .6rem; }
.toc ol { margin: 0; padding-left: 1.3rem; display: grid; gap: .3rem; }
.toc li::marker { color: var(--text-soft); font-variant-numeric: tabular-nums; }
.toc a { text-decoration: none; color: var(--text-muted); }
.toc a:hover { color: var(--link); text-decoration: underline; }

.prose { max-width: 70ch; min-width: 0; }
.prose h2 {
  font-size: 1.4rem;
  margin-top: 2.4rem;
  padding-top: .2rem;
}
.prose > h2:first-child, .prose > section:first-child > h2 { margin-top: 0; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1em; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--text-soft); }
.prose strong { font-weight: 700; }

.callout {
  border-left: 4px solid var(--amber-500);
  background: var(--accent-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .9rem 1.1rem;
  margin: 1.25rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout.info { border-left-color: var(--blue-500); background: var(--icon-bg); }

.table-wrap { overflow-x: auto; margin: 0 0 1.25rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
table { border-collapse: collapse; width: 100%; font-size: .96rem; }
caption { text-align: left; padding: .8rem 1rem .2rem; font-weight: 700; font-family: var(--font-head); }
th, td { text-align: left; vertical-align: top; padding: .7rem 1rem; border-bottom: 1px solid var(--border); }
th { background: var(--surface-2); font-weight: 700; }
tr:last-child td { border-bottom: 0; }

address.org {
  font-style: normal;
  line-height: 1.55;
}
.prose address.org {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  margin: 0 0 1.25rem;
}

/* Hesap silme adımları */
.steps { counter-reset: step; list-style: none; padding: 0 !important; display: grid; gap: .75rem; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: .9rem 1rem .9rem 3.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 0 !important;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem; top: .85rem;
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .9rem;
  background: var(--navy-700);
  color: #FFFFFF;
}
@media (prefers-color-scheme: dark) { .steps li::before { background: var(--amber-300); color: #071F45; } }

.mail-box {
  display: grid;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin: 0 0 1.25rem;
  font-size: .98rem;
}
.mail-box dt { font-weight: 700; color: var(--text-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.mail-box dd { margin: 0 0 .5rem; }
.mail-box dd:last-child { margin-bottom: 0; }

.split { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
@media (min-width: 720px) { .split { grid-template-columns: 1fr 1fr; } }
.split .card { box-shadow: none; }
.split .card h3 { font-size: 1.05rem; margin-top: 0; }
.split .card ul { margin: 0; }

/* Tek sütunlu belge gövdesi (Destek) */
.narrow { max-width: 860px; }
.doc-body { padding-block: 2.25rem 3.5rem; }
.doc-body > h2 { font-size: 1.4rem; margin-bottom: 1rem; }

/* ---------- SSS ---------- */
.faq { display: grid; gap: .75rem; margin-bottom: 2rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 3rem 1rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.2rem; top: 50%;
  width: 9px; height: 9px;
  margin-top: -7px;
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transform: rotate(45deg);
  transition: transform .15s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:focus-visible { outline-offset: -3px; border-radius: var(--radius-sm); }
.faq .answer { padding: 0 1.1rem 1rem; color: var(--text-muted); }
.faq .answer p:last-child, .faq .answer ul:last-child { margin-bottom: 0; }
.faq .answer ul { padding-left: 1.2rem; }

/* ---------- Altbilgi ---------- */
.site-footer {
  background: var(--navy-900);
  color: #C9D7EC;
  padding-block: 2.5rem 2rem;
  font-size: .95rem;
}
@media (prefers-color-scheme: dark) { .site-footer { background: #030C1E; border-top: 1px solid var(--border); } }
.site-footer a { color: #E6EEF9; }
.site-footer a:hover { color: #FCD34D; }
.site-footer :focus-visible { outline-color: #FCD34D; }
.footer-grid { display: grid; gap: 1.75rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; color: #FFFFFF; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .45rem 1.25rem; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between;
  color: #9FB3D1;
}
.footer-bottom p { margin: 0; }

@media print {
  .site-header, .site-footer, .toc, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .doc-layout { display: block; }
  a { color: #000; }
}
