:root {
  --dark: #131311;
  --bg: #1b1b1a;
  --panel: #313233;
  --head: #585659;
  --stone: #c6c6c6;
  --stone-text: #3f3f3f;
  --white: #ffffff;
  --yellow: #ffff54;
  --green: #218306;
  --green-hi: #53d95a;
  --green-lo: #118316;
  --line: #000;
  --mono: "Minecraft", "Segoe UI", Tahoma, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.9);
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
}

.yellow { color: var(--yellow); }
.muted { color: #a9a9a9; font-size: 13px; }

::selection { background: var(--yellow); color: #000; }

/* ---------- loader ---------- */

.loader { position: fixed; inset: 0; z-index: 999; pointer-events: none; }

.loader-half {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--dark);
  transition: transform 1s cubic-bezier(0.7, 0, 0.2, 1) 0.2s;
}
.loader-top { top: 0; }
.loader-bottom { top: 50%; }
.loader.loaded .loader-top { transform: translateY(-101%); }
.loader.loaded .loader-bottom { transform: translateY(101%); }

.loader-msg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.35s ease;
}
.loader.loaded .loader-msg { opacity: 0; }

.loader-name {
  font-size: clamp(20px, 5vw, 40px);
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 #000;
}
.loader-bar {
  width: min(320px, 70vw);
  height: 22px;
  border: 3px solid #000;
  background: #585659;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.loader-fill {
  height: 100%;
  width: 0;
  background: var(--green);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  transition: width 0.3s linear;
}
.loader-sub { font-size: 13px; color: #c0c0c0; }
.dots::after { content: ""; animation: dots 1.2s steps(4) infinite; }
@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, #8ec9f0 0%, #b7dcf7 55%, #7db8e6 100%);
}

.hero-canvas { position: absolute; inset: 0; }
.hero-canvas canvas { display: block; width: 100%; height: 100%; }

.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 34vh;
  background: linear-gradient(to top, var(--dark) 8%, transparent);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
}

.hero-overlay a { pointer-events: auto; }

.hero-glass {
  --fx-blur: 4px;
  --fx-dim: 0.45;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 860px;
  padding: clamp(20px, 4vw, 36px) clamp(20px, 5vw, 48px) clamp(24px, 5vw, 40px);
  background: rgba(9, 11, 10, var(--fx-dim, 0.45));
  -webkit-backdrop-filter: blur(var(--fx-blur, 4px));
  backdrop-filter: blur(var(--fx-blur, 4px));
  border: 3px solid #000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12), 0 12px 34px rgba(0, 0, 0, 0.4);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-glass { background: rgba(9, 11, 10, 0.9); }
}

/* hero FX controls */

.fx-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  font-size: 13px;
  padding: 6px 14px;
}

.fx-toggle.open { color: #fff; background: var(--green); border-color: #fff; }

.fx-panel {
  position: absolute;
  top: 64px;
  right: 18px;
  z-index: 6;
  width: 250px;
  padding: 14px 16px 16px;
  background: var(--panel);
  border: 3px solid #000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06), 0 10px 26px rgba(0, 0, 0, 0.45);
}

.fx-title {
  font-size: 13px;
  letter-spacing: 1px;
  color: #fff;
  background: var(--head);
  margin: -14px -16px 12px;
  padding: 7px 16px;
  border-bottom: 3px solid #000;
}

.fx-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.fx-row:last-of-type { margin-bottom: 4px; }

.fx-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 1px;
  color: #cfcfcf;
}

.fx-label .val { color: var(--yellow); }

.fx-panel input[type="range"] {
  width: 100%;
  accent-color: var(--green-hi);
  cursor: pointer;
}

.fx-actions { display: flex; gap: 8px; margin-top: 8px; }

.fx-actions .mc-btn { font-size: 12px; padding: 4px 10px; }

.welcome {
  font-size: 13px;
  color: #123f12;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.75);
  padding: 4px 10px;
  border: 2px solid #000;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.hero-name {
  font-size: clamp(34px, 8vw, 78px);
  line-height: 1.05;
  margin: 18px 0 6px;
  color: #fff;
  text-shadow: 4px 4px 0 #000;
}

.hero-name .yellow { text-shadow: 4px 4px 0 #000; }

.hero-sub {
  font-size: clamp(14px, 2.4vw, 19px);
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  padding: 2px 10px;
  background: rgba(19, 19, 17, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.hero-desc {
  max-width: 560px;
  margin-top: 14px;
  font-size: clamp(13px, 2vw, 16px);
  color: #fff;
  text-shadow: 2px 2px 0 #000;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; justify-content: center; }
.center-btns { margin-top: 18px; }

.hero-hint {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 12px;
  color: #08280a;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.7);
  width: max-content;
  margin: 0 auto;
  padding: 2px 10px;
  border: 2px solid #000;
}

/* ---------- minecraft buttons ---------- */

.mc-btn {
  font-family: inherit;
  font-size: 16px;
  color: var(--stone-text);
  background: var(--stone);
  border: 2px solid #000;
  padding: 8px 18px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
  box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.75), inset -2px -2px 0 rgba(0, 0, 0, 0.4);
  line-height: 1.3;
}

.mc-btn:hover,
.mc-btn:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  box-shadow: inset 2px 2px 0 var(--green-hi), inset -2px -2px 0 var(--green-lo);
  outline: none;
}

.mc-btn.primary { background: var(--yellow); color: #000; text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.4); }
.mc-btn.primary:hover { background: var(--green); color: #fff; border-color: #fff; }

/* ---------- content shell / windows ---------- */

.shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 20px 80px;
  display: grid;
  gap: 40px;
}

.scroll-anchor { scroll-margin-top: 20px; }

.window {
  background: var(--panel);
  border: 3px solid #000;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--head);
  border-bottom: 3px solid #000;
  padding: 9px 16px;
  flex-wrap: wrap;
}

.head-title {
  font-size: 18px;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  letter-spacing: 1px;
}

.head-tag {
  font-size: 12px;
  color: #cfcfcf;
  text-shadow: 1px 1px 0 #000;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  border: 2px solid #000;
}

.window-body { padding: 20px 22px 22px; }
.window-body p { margin: 0 0 14px; }
.window-body p:last-child { margin-bottom: 0; }

/* slots */

.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.slot {
  font-size: 13px;
  color: #202020;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.35);
  background: var(--stone);
  border: 2px solid #000;
  padding: 3px 9px;
  box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.75), inset -2px -2px 0 rgba(0, 0, 0, 0.4);
}

/* skills groups */

.skill-group { margin-bottom: 18px; }
.skill-group:last-child { margin-bottom: 0; }

.skill-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
  margin-bottom: 2px;
}

/* project buttons */

.project-buttons { display: grid; gap: 14px; margin-top: 16px; }

.project-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  font-size: 15px;
  text-align: left;
  padding: 12px 16px;
}

.btn-cat {
  font-size: 11px;
  background: #000;
  color: #fff;
  padding: 3px 7px;
  letter-spacing: 1px;
  flex: none;
  border: 2px solid #fff;
  box-shadow: none;
  text-shadow: none;
}

.mc-btn:hover .btn-cat { border-color: #000; }

/* education */

.edu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.12);
}
.edu-row:last-child { border-bottom: 0; }
.edu-main { font-size: 16px; }
.edu-side { font-size: 13px; color: #cfcfcf; white-space: nowrap; }

/* center text */

.window-body.center { text-align: center; }
.big { font-size: clamp(22px, 4.5vw, 34px); text-shadow: 3px 3px 0 #000; letter-spacing: 1px; }
.credits { margin-top: 26px !important; }
.credits.muted { color: #9a9a9a; }

/* ---------- overlay & modal ---------- */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.overlay[hidden] { display: none; }

.modal {
  width: 100%;
  max-width: 640px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 4px solid #000;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.open { transform: none; opacity: 1; }

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--stone);
  border-bottom: 3px solid #000;
  padding: 12px 16px;
  gap: 12px;
}

.modal-title {
  color: var(--stone-text);
  font-size: 19px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.title-dim { font-size: 14px; color: #6a6a6a; text-shadow: none; }

.modal-close {
  flex: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  color: var(--stone-text);
  background: #a0a0a0;
  border: 2px solid #000;
  cursor: pointer;
  box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.75), inset -2px -2px 0 rgba(0, 0, 0, 0.4);
}

.modal-close:hover {
  color: #fff;
  background: #ed4245;
  border-color: #fff;
}

.modal-body {
  overflow-y: auto;
  padding: 20px 22px 22px;
  border: 3px solid var(--head);
  background: var(--panel);
}

.modal-body p { margin: 0 0 14px; }
.modal-body ul { margin: 0 0 14px; padding-left: 0; list-style: none; }
.modal-body li { margin-bottom: 9px; padding-left: 26px; position: relative; }
.modal-body li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: var(--green);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.mc-media {
  height: 110px;
  margin-bottom: 18px;
  border: 3px solid #000;
  position: relative;
  background-color: #9c7a54;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.16) 25%, transparent 25%),
    linear-gradient(315deg, rgba(0, 0, 0, 0.16) 25%, transparent 25%),
    linear-gradient(#8a6b45, #8a6b45);
  background-size: 16px 16px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.mc-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.18) 25%, transparent 25%), linear-gradient(315deg, rgba(0, 0, 0, 0.18) 25%, transparent 25%);
  background-color: var(--green-hi);
  background-size: 16px 16px;
}

.mc-media span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 13px;
  padding: 4px 12px;
  border: 2px solid #fff;
  margin-top: 12px;
  white-space: nowrap;
}

.modal-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-stack span {
  font-size: 12.5px;
  color: #eaffec;
  background: #232323;
  border: 2px solid var(--green-lo);
  padding: 3px 8px;
  box-shadow: inset 0 0 0 2px rgba(83, 217, 90, 0.15);
}

.noscript-note { position: fixed; inset: auto 0 0 0; z-index: 500; background: #000; color: #fff; padding: 12px; text-align: center; }

/* ---------- responsive ---------- */

@media (max-width: 600px) {
  .window-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .modal-body li::before { top: 8px; }
  .project-btn { gap: 10px; }
  .hero-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader-half, .loader-msg { transition: none; }
  .modal { transition: none; }
}

/* ---------- v2: roomier layout + framed image sections ---------- */

body { font-size: 16px; line-height: 1.9; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 36px 36px;
}

.shell {
  max-width: 1180px;
  padding: 72px 28px 100px;
  gap: 64px;
}

.window-head { padding: 13px 22px; }
.head-title { font-size: 20px; letter-spacing: 2px; }
.window-body { padding: 32px 36px 36px; }
.window-body p { max-width: 76ch; margin-bottom: 18px; }
.window-body p:last-child { margin-bottom: 0; }
.window-body.center p { max-width: none; }

.about-grid { display: grid; gap: 40px; align-items: center; }
.about-text { min-width: 0; }
.about-text p { max-width: 68ch; }
@media (min-width: 940px) {
  .about-grid { grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr); }
}
@media (max-width: 939px) {
  .avatar-frame { max-width: 440px; margin: 0 auto; }
}

/* framed images (item frames) */

.frames {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.frame { display: flex; flex-direction: column; gap: 10px; }

.frame-screen {
  position: relative;
  padding: 12px;
  border: 3px solid #000;
  background-color: #7a5329;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0 2px,
    transparent 2px 13px,
    rgba(255, 255, 255, 0.06) 13px 14px,
    transparent 14px 26px
  );
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.07), 0 9px 0 rgba(0, 0, 0, 0.32);
}

.frame-hole {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #141413;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 14px);
}

.frame-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 12px;
}

.frame-hint .big-txt { color: #9c9c9c; font-size: 12.5px; letter-spacing: 1px; }

.frame-hint .fname {
  color: var(--green-hi);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #000;
  padding: 3px 10px;
  letter-spacing: 1px;
}

.frame-hole img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.frame-hole img.show { opacity: 1; }

.frame-plate {
  display: block;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 1px;
  color: #e8e8e8;
  background: #0b0b0a;
  border: 2px solid #000;
  padding: 8px 10px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}
.frame-plate .pname { color: var(--yellow); }

.avatar-frame .frame-hole { aspect-ratio: 1 / 1; }
.avatar-frame .frame-screen { padding: 10px; }

.split-2 > * { min-width: 0; }
.split-2 .window { height: 100%; }

@media (max-width: 999px) {
  .split-2 > section + section { margin-top: 56px; }
}

@media (min-width: 1000px) {
  .split-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: stretch;
  }
  .split-2 .window-body p { max-width: 62ch; }
}

@media (max-width: 600px) {
  .shell { padding: 48px 16px 72px; gap: 44px; }
  .window-body { padding: 22px 18px 26px; }
  .frames { grid-template-columns: 1fr; gap: 28px; }
  .window-head { gap: 8px; }
}

/* ---------- v3: full-screen sections that fit the window ---------- */

html { scroll-snap-type: y proximity; }

.hero { scroll-snap-align: start; }

.shell { display: block; max-width: none; padding: 0; gap: 0; }

.shell > .scroll-anchor,
.shell > .split-2 {
  --spad: clamp(2.5rem, 9vh, 6.5rem);
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spad) max(1.5rem, 4vw);
  scroll-snap-align: start;
}

.shell > .scroll-anchor { flex-direction: column; }

.shell > .scroll-anchor > .window {
  width: 100%;
  max-width: 1180px;
  margin: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2 * var(--spad));
}

.shell > .scroll-anchor > .window .window-head { flex: 0 0 auto; }
.shell > .scroll-anchor > .window .window-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.split-2 {
  flex-direction: column;
  gap: clamp(1.5rem, 5vh, 4rem);
}
.split-2 > section { width: 100%; display: flex; justify-content: center; margin-top: 0; }
.split-2 > section + section { margin-top: 0; }
.split-2 .window {
  width: 100%;
  max-width: 620px;
  margin: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2 * var(--spad));
}
.split-2 .window-head { flex: 0 0 auto; }
.split-2 .window-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }

@media (min-width: 900px) {
  .split-2 { flex-direction: row; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); }
  .split-2 > section { flex: 1 1 0; }
  .split-2 .window { max-width: none; }
}

@media (max-width: 600px) {
  .shell > .scroll-anchor,
  .shell > .split-2 { --spad: clamp(1.75rem, 6vh, 3rem); }
  .shell > .split-2 { gap: clamp(1rem, 4vh, 2.5rem); }
}

/* ---------- v4: motion fx support ---------- */

.xp-wrap {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 190;
  width: min(420px, 72vw);
  height: 10px;
  background: #141412;
  border: 2px solid #000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14), 0 5px 0 rgba(0, 0, 0, 0.35);
  pointer-events: none;
  overflow: hidden;
}

.xp-fill {
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(to right, var(--green-hi), var(--green-lo) 88%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ---------- v5: wallpaper background screens ---------- */

.shell > .scroll-anchor,
.shell > .split-2 {
  position: relative;
  overflow: hidden;
}

.wall {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
  will-change: transform, filter;
  display: block;
}

.wall-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 62%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.1) 68%, rgba(0, 0, 0, 0.6));
}

.shell > .scroll-anchor > .window,
.split-2 > section .window,
.shell > .split-2 > section > .window {
  position: relative;
  z-index: 2;
}
