/* =============================================================
   Modelhaus — стили
   ============================================================= */

:root {
  /* Stone (default) */
  --bg: #f5f1e8;
  --surface: #fbf8f1;
  --surface-2: #f0ebde;
  --border: #e3dcc9;
  --border-strong: #cdc4ad;
  --text: #1a1815;
  --text-dim: #6b6660;
  --text-mute: #a39d92;
  --accent: #a8521c;
  --accent-soft: #f1d9bf;
  --accent-fg: #ffffff;
  --chip-bg: #ece6d4;
  --chip-bg-hover: #e2dac3;
  --link: #1a1815;
  --shadow-sm: 0 1px 0 rgba(40, 30, 10, 0.04);
  --row-hover: #f0ebde;

  /* Task hues — kept consistent across themes */
  --task-text: #1f6feb;
  --task-image: #d2447e;
  --task-vision: #b04abf;
  --task-audio: #d68827;
  --task-video: #6b5dd3;
  --task-code: #1e8e7a;
  --task-embed: #4a5d8f;
  --task-any: #8a8a8a;

  /* Type */
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

[data-theme="paper"] {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f6f7;
  --border: #ebebed;
  --border-strong: #d4d4d8;
  --text: #0a0a0c;
  --text-dim: #5a5a62;
  --text-mute: #9a9aa3;
  --accent: #3730a3;
  --accent-soft: #e0e0fb;
  --accent-fg: #ffffff;
  --chip-bg: #f1f1f3;
  --chip-bg-hover: #e5e5ea;
  --link: #0a0a0c;
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.03);
  --row-hover: #f6f6f7;
}

[data-theme="carbon"] {
  --bg: #0e0e0f;
  --surface: #161618;
  --surface-2: #1d1d20;
  --border: #28282c;
  --border-strong: #3a3a3f;
  --text: #ebe9e3;
  --text-dim: #9c9994;
  --text-mute: #66645f;
  --accent: #d9a44e;
  --accent-soft: rgba(217, 164, 78, 0.16);
  --accent-fg: #1a1815;
  --chip-bg: #232327;
  --chip-bg-hover: #2c2c31;
  --link: #ebe9e3;
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.4);
  --row-hover: #1a1a1d;

  --task-text: #6aa3ff;
  --task-image: #ec6aa0;
  --task-vision: #c870d6;
  --task-audio: #e8a04a;
  --task-video: #8d80e4;
  --task-code: #4ab095;
  --task-embed: #7a8bbf;
  --task-any: #9a9a9a;
}

/* =========================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }

.mono { font-family: var(--font-mono); font-feature-settings: "zero" 1; }

/* ========== Top nav ========== */
.topnav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  height: 56px; padding: 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
}
.brand__mark {
  width: 26px; height: 26px;
  background: var(--text);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 13px;
  border-radius: 4px;
}
.brand__name { letter-spacing: -0.02em; }

.search {
  display: flex; align-items: center; gap: 8px;
  flex: 1; max-width: 460px;
  height: 34px; padding: 0 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  cursor: text;
  transition: border-color 120ms;
}
.search:hover { border-color: var(--border-strong); }
.search svg { flex: 0 0 14px; opacity: 0.6; }
.search input {
  flex: 1; min-width: 0;
  border: 0; background: transparent; outline: none;
  font: inherit; color: var(--text);
}
.search input::placeholder { color: var(--text-mute); }
.search kbd {
  font-family: var(--font-mono); font-size: 11px;
  padding: 2px 6px; border-radius: 4px;
  background: var(--chip-bg); color: var(--text-dim);
}

.topnav__links {
  display: flex; align-items: center; gap: 4px;
}
.topnav__links a {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 10px;
  border-radius: 6px;
  color: var(--text-dim);
  font-weight: 500; font-size: 13.5px;
}
.topnav__links a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.topnav__links a.is-active { color: var(--text); background: var(--surface-2); }

.topnav__actions { display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 34px; padding: 0 14px;
  border-radius: 8px;
  font-weight: 500; font-size: 13.5px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 120ms, border-color 120ms, color 120ms;
}
.btn--ghost { color: var(--text); }
.btn--ghost:hover { background: var(--surface-2); }
.btn--primary { background: var(--text); color: var(--bg); }
.btn--primary:hover { opacity: 0.92; }
.btn--accent { background: var(--accent); color: var(--accent-fg); }
.btn--accent:hover { filter: brightness(0.94); }
.btn--outline { border-color: var(--border-strong); color: var(--text); background: transparent; }
.btn--outline:hover { background: var(--surface-2); }
.btn--sm { height: 28px; padding: 0 10px; font-size: 12.5px; border-radius: 6px; }

/* ========== View switching ========== */
.view { display: none; }
.view.is-active { display: block; }

/* ============================================================
   LANDING
   ============================================================ */

.hero {
  padding: 64px 24px 40px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 260px at 12% 0%, var(--accent-soft) 0%, transparent 70%),
    var(--bg);
}
.hero__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 64px; align-items: end;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim);
  padding: 4px 10px; border: 1px solid var(--border-strong); border-radius: 999px;
  margin-bottom: 24px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
}
.hero h1 {
  font-size: 58px; line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 600; margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead {
  font-size: 17px; line-height: 1.5; color: var(--text-dim);
  max-width: 560px; margin: 0 0 28px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex; gap: 10px; align-items: center; margin-bottom: 32px;
}
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.hero__chips .chip {
  font-family: var(--font-mono); font-size: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim);
}

/* Hardware probe card — right column of hero */
.probe {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.probe__title {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-family: var(--font-mono);
  color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.probe__title .live { color: var(--accent); }
.probe__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-top: 1px dashed var(--border);
  font-size: 13px;
}
.probe__row:first-of-type { border-top: 0; }
.probe__row .k { color: var(--text-dim); font-family: var(--font-mono); font-size: 12px; }
.probe__row .v { font-weight: 500; }
.probe__match {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.probe__match .num { font-size: 26px; letter-spacing: -0.02em; font-weight: 600; }
.probe__match .num em { font-style: normal; color: var(--accent); }

/* Stats strip */
.stats {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 24px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.stat .v { font-size: 24px; letter-spacing: -0.02em; font-weight: 600; font-family: var(--font-mono); }
.stat .l { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* Sections */
.section {
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
}
.section__inner { max-width: 1280px; margin: 0 auto; }
.section__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 24px;
  gap: 24px;
}
.section__head h2 {
  font-size: 28px; letter-spacing: -0.025em; font-weight: 600; margin: 0 0 6px;
}
.section__head p { color: var(--text-dim); margin: 0; max-width: 520px; }
.section__head .more { color: var(--text-dim); font-size: 13.5px; }
.section__head .more:hover { color: var(--text); }

/* Featured grid */
.featured {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.fcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 120ms, transform 120ms;
}
.fcard:hover { border-color: var(--border-strong); }
.fcard__head {
  display: flex; align-items: center; gap: 10px;
}
.fcard__name {
  font-family: var(--font-mono); font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fcard__desc {
  font-size: 13px; color: var(--text-dim); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
.fcard__meta {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.fcard__meta .pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--chip-bg);
}
.fcard__perf {
  display: flex; gap: 12px; padding-top: 10px; border-top: 1px dashed var(--border);
  font-size: 12px;
}
.fcard__perf .k { color: var(--text-mute); margin-right: 4px; font-family: var(--font-mono); }
.fcard__perf .v { font-weight: 500; }

/* Task tiles */
.tasks {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.tasktile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex; gap: 12px; align-items: center;
  transition: border-color 120ms;
}
.tasktile:hover { border-color: var(--border-strong); text-decoration: none; }
.tasktile__icon {
  flex: 0 0 28px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
  background: var(--chip-bg);
}
.tasktile__name { font-weight: 500; font-size: 13.5px; }
.tasktile__count { font-size: 12px; color: var(--text-dim); font-family: var(--font-mono); margin-top: 1px; }

/* Hardware tiers */
.tiers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.tier__head { display: flex; justify-content: space-between; align-items: baseline; }
.tier__name { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.tier__spec { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim); }
.tier__count { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.tier__hint { font-size: 12px; color: var(--text-dim); }
.tier__bar {
  height: 4px; border-radius: 2px;
  background: var(--surface-2);
  overflow: hidden;
  margin-top: 6px;
}
.tier__bar > span { display: block; height: 100%; background: var(--accent); }

/* How it works */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.step__num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--accent); margin-bottom: 12px;
}
.step__title { font-size: 16px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.step__desc { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
.step__code {
  margin-top: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
}
.step__code .copy { color: var(--text-dim); cursor: pointer; }

/* Footer */
.footer {
  padding: 40px 24px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 13px;
}
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
}
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-mute); margin: 0 0 12px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__bottom {
  max-width: 1280px; margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-mute);
}

/* ============================================================
   CATALOG
   ============================================================ */

.catalog {
  display: grid; grid-template-columns: 280px 1fr;
  max-width: 1480px; margin: 0 auto;
  min-height: calc(100vh - 56px);
}

/* Sidebar */
.sidebar {
  border-right: 1px solid var(--border);
  padding: 20px 18px 60px;
}
.sidebar__tabs {
  display: flex; gap: 2px;
  border-bottom: 1px solid var(--border);
  margin: -4px -2px 16px;
  padding: 0 2px;
  overflow-x: auto;
}
.sidebar__tab {
  font-size: 13px; font-weight: 500;
  padding: 8px 10px; border-radius: 0;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  white-space: nowrap; cursor: pointer;
}
.sidebar__tab.is-active {
  color: var(--text);
  border-bottom-color: var(--text);
  background: var(--surface-2);
  border-radius: 6px 6px 0 0;
}
.sidebar__tab:hover { color: var(--text); }

.facet { margin-bottom: 24px; }
.facet__head {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.facet__head .clear { color: var(--accent); cursor: pointer; text-transform: none; letter-spacing: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 10px;
  background: var(--chip-bg);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text);
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  transition: background 100ms, border-color 100ms;
}
.chip:hover { background: var(--chip-bg-hover); }
.chip.is-active {
  background: var(--text); color: var(--bg);
}
.chip.is-active.has-accent { background: var(--accent); color: var(--accent-fg); }
.chip__count { color: var(--text-mute); font-family: var(--font-mono); font-size: 11px; }
.chip.is-active .chip__count { color: rgba(255,255,255,0.65); }

/* Slider */
.range {
  margin: 8px 4px 4px;
}
.range__track {
  position: relative; height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
}
.range__fill {
  position: absolute; top: 0; bottom: 0;
  background: var(--text);
  border-radius: 2px;
}
.range__ticks {
  display: flex; justify-content: space-between;
  margin-top: 8px; font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim);
}
.range__handle {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--bg); border: 2px solid var(--text);
}

/* Main column */
.main {
  padding: 18px 24px 60px;
  min-width: 0;
}
.toolbar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.toolbar h1 {
  font-size: 22px; letter-spacing: -0.02em; font-weight: 600;
  margin: 0;
}
.toolbar .count {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text-dim); margin-left: 6px;
}
.toolbar__filter {
  flex: 1; max-width: 320px;
  height: 30px; padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  font: inherit; font-size: 13px;
  color: var(--text);
  outline: none;
}
.toolbar__filter:focus { border-color: var(--border-strong); }
.toolbar__filter::placeholder { color: var(--text-mute); }
.toolbar__right { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--text-dim);
  padding: 4px 10px; border-radius: 6px; cursor: pointer;
}
.toggle:hover { background: var(--surface-2); color: var(--text); }
.toggle .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }

/* Model rows */
.modellist { display: flex; flex-direction: column; gap: 6px; }
.row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 16px; align-items: center;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 120ms, background 120ms;
}
.row:hover { border-color: var(--border-strong); background: var(--row-hover); }
.row__id {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.row__name {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.row__name .author { color: var(--text-dim); }
.row__name .slash { color: var(--text-mute); padding: 0 2px; }
.row__badge {
  font-family: var(--font-mono); font-size: 10.5px;
  padding: 1px 6px; border-radius: 3px;
  background: var(--accent-soft); color: var(--accent);
  flex: 0 0 auto;
}
.row__meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim);
  flex-wrap: nowrap; overflow: hidden;
}
.row__meta .item { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.row__meta .item.task { color: var(--text); }
.row__meta .sep { width: 3px; height: 3px; border-radius: 999px; background: var(--text-mute); flex: 0 0 3px; }
.row__stats {
  display: flex; gap: 14px; justify-content: flex-end;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim);
}
.row__stats .item { display: inline-flex; align-items: center; gap: 4px; }
.row__stats .v { color: var(--text); font-weight: 500; }

/* Avatar */
.avatar {
  width: 26px; height: 26px;
  border-radius: 6px;
  flex: 0 0 26px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.avatar::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(0,0,0,0.12));
  pointer-events: none;
}

/* Task icon (inline) */
.tic {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  flex: 0 0 8px;
}
.tic--text-gen { background: var(--task-text); }
.tic--image-gen { background: var(--task-image); border-radius: 999px; }
.tic--vision { background: var(--task-vision); transform: rotate(45deg); }
.tic--audio { background: var(--task-audio); border-radius: 999px; height: 4px; width: 12px; }
.tic--video { background: var(--task-video); border-radius: 1px; height: 4px; width: 12px; }
.tic--code { background: var(--task-code); }
.tic--embed { background: var(--task-embed); border-radius: 999px; }
.tic--any { background: var(--task-any); border-radius: 999px; box-shadow: inset 0 0 0 2px var(--bg); }

/* Pagination */
.pager {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}
.pager__pages { display: flex; gap: 4px; }
.pager__pages a {
  display: inline-grid; place-items: center;
  height: 28px; min-width: 28px; padding: 0 8px;
  border-radius: 6px; font-family: var(--font-mono); font-size: 12.5px;
  color: var(--text-dim);
}
.pager__pages a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.pager__pages a.is-active { background: var(--text); color: var(--bg); }

/* ============================================================
   Tweaks panel custom (uses TweaksPanel starter)
   ============================================================ */

/* Density: comfortable */
[data-density="comfortable"] .row { padding: 16px 16px; }
[data-density="comfortable"] .row__meta { font-size: 12.5px; }
[data-density="comfortable"] .modellist { gap: 8px; }

/* Responsive (just keep readable; not a full resp design) */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .featured, .tasks, .tiers, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
  .stats__inner { grid-template-columns: repeat(3, 1fr); }
  .catalog { grid-template-columns: 240px 1fr; }
}
@media (max-width: 800px) {
  .topnav__links, .search { display: none; }
  .hero h1 { font-size: 40px; }
  .row { grid-template-columns: 24px 1fr; }
  .row__stats { display: none; }
  .catalog { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}
