* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  background: #000;
  color: #fff;
}

button,
input,
a {
  font: inherit;
}

button {
  color: inherit;
}

.intro-screen,
.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
}

.welcome-logo {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 900;
  letter-spacing: -8px;

  opacity: 0;
  filter: blur(8px);
  transform: scale(.93);

  animation:
    introReveal
    1s
    cubic-bezier(.16, 1, .3, 1)
    forwards;
}

@keyframes introReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.intro-screen.hide {
  pointer-events: none;
  animation: introHide .7s ease forwards;
}

@keyframes introHide {
  to {
    opacity: 0;
    visibility: hidden;
    filter: blur(8px);
  }
}

.boot-screen {
  z-index: 9999;
}

.boot-screen.finished {
  pointer-events: none;
  animation: bootHide .8s ease forwards;
}

@keyframes bootHide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.boot-content {
  width: 260px;
  text-align: center;
}

.boot-logo {
  margin-bottom: 34px;

  font-family:
    "Arial Black",
    Arial,
    sans-serif;

  font-size: 58px;
  font-weight: 900;
  letter-spacing: -5px;
}

.boot-logo span {
  color: rgba(255,255,255,.4);
}

.boot-track {
  width: 100%;
  height: 4px;

  overflow: hidden;

  border-radius: 999px;

  background:
    rgba(255,255,255,.13);
}

.boot-progress-fill {
  width: 0;
  height: 100%;

  background: white;

  border-radius: inherit;
}

.desktop {
  position: relative;

  width: 100vw;
  height: 100vh;

  opacity: 0;
  transform: scale(1.015);

  transition:
    opacity .8s ease,
    transform .8s ease;

  overflow: hidden;
}

.desktop.ready {
  opacity: 1;
  transform: scale(1);
}

.desktop-background {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: -5;
}

.desktop-overlay {
  position: fixed;
  inset: 0;

  z-index: -4;

  background:
    linear-gradient(
      135deg,
      rgba(19, 18, 48, .10),
      rgba(37, 23, 58, .14)
    );
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;

  z-index: 1000;

  width: 100%;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 16px;

  border-bottom:
    1px solid
    rgba(255,255,255,.11);

  background:
    rgba(20, 17, 36, .26);

  backdrop-filter:
    blur(25px)
    saturate(160%);

  -webkit-backdrop-filter:
    blur(25px)
    saturate(160%);
}

.top-left {
  font-size: 11px;
  font-weight: 700;
}

.top-center {
  position: absolute;
  left: 50%;

  transform: translateX(-50%);

  font-family:
    "Arial Black",
    Arial,
    sans-serif;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: -1px;
}

.top-center span {
  color: rgba(255,255,255,.42);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 11px;

  font-size: 10px;
}

.language-control {
  position: relative;
}

.language-control::after {
  content: "";

  position: absolute;

  top: 100%;
  left: 0;

  width: 100%;
  height: 9px;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 6px;

  border: 0;

  background: transparent;

  color: white;

  cursor: pointer;
}

.language-current img {
  width: 20px;
  height: 13px;

  object-fit: cover;

  border-radius: 2px;
}

.language-menu {
  position: absolute;

  top: 25px;
  right: 0;

  width: 140px;

  padding: 6px;

  border:
    1px solid
    rgba(255,255,255,.13);

  border-radius: 12px;

  background:
    rgba(20, 17, 34, .94);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-4px);

  transition: .18s ease;
}

.language-control:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  height: 38px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 0 8px;

  border: 0;
  border-radius: 8px;

  background: transparent;
  color: white;

  cursor: pointer;
}

.language-option:hover,
.language-option.active {
  background:
    rgba(255,255,255,.09);
}

.language-option img {
  width: 22px;
  height: 14px;

  object-fit: cover;
}

.desktop-widgets {
  position: fixed;

  top: 67px;
  left: 42px;

  z-index: 20;

  width: 340px;

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 10px;
}

.currently-widget,
.mini-widget {
  border:
    1px solid
    rgba(255,255,255,.14);

  background:
    rgba(42, 32, 74, .18);

  backdrop-filter:
    blur(22px)
    saturate(130%);

  -webkit-backdrop-filter:
    blur(22px)
    saturate(130%);

  box-shadow:
    0 20px 40px
    rgba(18, 10, 40, .18);
}

.currently-widget {
  grid-column: 1 / -1;

  min-height: 165px;

  padding: 17px;

  border-radius: 17px;
}

.widget-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color:
    rgba(255,255,255,.45);

  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.active-indicator {
  color:
    rgba(255,255,255,.7);
}

.currently-widget h3 {
  margin-top: 13px;

  font-size: 21px;
  letter-spacing: -.7px;
}

.widget-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 11px 13px;

  margin-top: 20px;
}

.widget-rows div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.widget-rows span,
.mini-widget span {
  color:
    rgba(255,255,255,.4);

  font-size: 8px;

  text-transform: uppercase;
}

.widget-rows strong {
  font-size: 10px;
}

.mini-widget {
  min-height: 82px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 14px;

  border-radius: 15px;
}

.mini-widget strong {
  font-size: 13px;
}

.identity-strip {
  position: fixed;

  left: 50%;
  bottom: 112px;

  z-index: 15;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 4px;

  transform:
    translateX(-50%);
}

.identity-strip::before,
.identity-strip::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 130px;
  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255,255,255,.28)
    );
}

.identity-strip::before {
  right: calc(100% + 20px);
}

.identity-strip::after {
  left: calc(100% + 20px);

  transform: rotate(180deg);
}

.identity-strip strong {
  font-size: 10px;
  letter-spacing: 1.7px;
}

.identity-strip span {
  color:
    rgba(255,255,255,.45);

  font-size: 8px;
  letter-spacing: 1.3px;
}

.window {
  position: fixed;

  z-index: 100;

  isolation: isolate;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.15);

  border-radius: 17px;

  box-shadow:
    0 30px 70px
    rgba(20, 10, 50, .25);
}

.window-glass-layer {
  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    rgba(24, 20, 43, .92);

  backdrop-filter:
    blur(32px)
    saturate(135%);

  -webkit-backdrop-filter:
    blur(28px)
    saturate(120%);
}

.window.closed,
.window.minimized {
  display: none;
}

.window.window-animating {
  display: block;
}

.window-header {
  position: relative;

  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom:
    1px solid
    rgba(255,255,255,.08);

  background:
    rgba(28, 22, 47, .92);

  color:
    rgba(255,255,255,.66);

  font-size: 10px;

  cursor: default;
}

.window-controls {
  position: absolute;

  left: 14px;

  display: flex;

  gap: 8px;
}

.window-control {
  position: relative;

  width: 13px;
  height: 13px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  cursor: pointer;
}

.window-control.close {
  background: #ff5f57;
}

.window-control.minimize {
  background: #febc2e;
}

.window-control.maximize {
  background: #28c840;
}

.window-control span {
  position: absolute;

  inset: 0;

  opacity: 0;

  transition:
    opacity
    .15s ease;
}

.window-controls:hover span {
  opacity: 1;
}

.window-control.close span::before,
.window-control.close span::after {
  content: "";

  position: absolute;

  top: 6px;
  left: 3px;

  width: 7px;
  height: 1px;

  background:
    rgba(60, 0, 0, .75);
}

.window-control.close span::before {
  transform: rotate(45deg);
}

.window-control.close span::after {
  transform: rotate(-45deg);
}

.window-control.minimize span::before {
  content: "";

  position: absolute;

  top: 6px;
  left: 3px;

  width: 7px;
  height: 1px;

  background:
    rgba(80, 45, 0, .8);
}

.window-control.maximize span::before,
.window-control.maximize span::after {
  content: "";

  position: absolute;

  background:
    rgba(0, 65, 20, .8);
}

.window-control.maximize span::before {
  top: 3px;
  left: 3px;

  width: 7px;
  height: 1px;

  transform: rotate(-45deg);
}

.window-control.maximize span::after {
  top: 6px;
  left: 6px;

  width: 4px;
  height: 4px;

  border-right:
    1px solid
    rgba(0,65,20,.8);

  border-top:
    1px solid
    rgba(0,65,20,.8);

  background: transparent;
}

#profileWindow {
  top: 70px;
  left: calc(100vw - 535px);

  width: 475px;
  height: 380px;
}

.profile-image-wrapper {
  width: 100%;
  height: calc(100% - 42px);

  overflow: hidden;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

#shortAboutWindow {
  top: calc(100vh - 360px);
  left: 55px;

  width: 735px;
  height: 220px;
}

.short-about-content {
  height: calc(100% - 42px);

  padding: 20px 25px;
}

.short-about-status {
  display: flex;
  align-items: center;

  gap: 7px;

  color:
    rgba(255,255,255,.48);

  font-size: 9px;
}

.status-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: white;
}

.short-about-content h2 {
  margin-top: 10px;

  font-size: 27px;
  letter-spacing: -1px;
}

.short-about-content p {
  max-width: 590px;

  margin-top: 8px;

  color:
    rgba(255,255,255,.65);

  font-size: 12px;
  line-height: 1.55;
}

.short-tags {
  display: flex;
  gap: 6px;

  margin-top: 12px;
}

.short-tags span,
.skills-row span,
.project-tags span,
.resume-tags span {
  padding: 6px 9px;

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius: 999px;

  background:
    rgba(255,255,255,.06);

  color:
    rgba(255,255,255,.7);

  font-size: 8px;
}

.app-window {
  top: 80px;
  left: 50%;

  transform:
    translateX(-50%);

  width: 850px;
  height: 580px;
}

.window-body {
  position: relative;

  height:
    calc(
      100% -
      42px
    );

  overflow: auto;

  padding: 28px 32px;
}

.window.maximized {
  top: 34px !important;
  left: 0 !important;

  width: 100vw !important;
  height:
    calc(
      100vh -
      34px
    ) !important;

  border-radius: 0;

  transform: none !important;
}

.section-kicker {
  margin-bottom: 14px;

  color:
    rgba(255,255,255,.36);

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;

  letter-spacing: 1.7px;
}
#aboutWindow {
  top: 50px;

  width:
    min(
      1050px,
      calc(100vw - 90px)
    );

  height:
    min(
      820px,
      calc(100vh - 90px)
    );
}

.about-body {
  padding: 34px 42px 44px;
}

.about-headline {
  display: flex;
  flex-direction: column;

  font-size: 47px;
  line-height: .98;

  letter-spacing: -2.5px;
}

.about-headline span:last-child {
  color:
    rgba(255,255,255,.56);
}

.about-main-copy {
  max-width: 870px;

  margin-top: 30px;
}

.about-main-copy p {
  margin-bottom: 18px;

  color:
    rgba(255,255,255,.69);

  font-size: 13px;
  line-height: 1.72;
}

.about-final-line {
  margin-top: 25px;

  padding:
    18px
    20px;

  border-left:
    2px solid
    rgba(255,255,255,.72);

  border-radius:
    0 12px 12px 0;

  background:
    rgba(255,255,255,.06);

  color:
    rgba(255,255,255,.94)
    !important;

  font-weight: 600;
}

.about-facts {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 10px;

  margin-top: 30px;
}

.about-facts article {
  min-height: 95px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 14px;

  border:
    1px solid
    rgba(255,255,255,.11);

  border-radius: 14px;

  background:
    rgba(255,255,255,.05);
}

.about-facts span {
  color:
    rgba(255,255,255,.38);

  font-size: 8px;

  text-transform: uppercase;
}

.about-facts strong {
  font-size: 11px;
}

.skills-row {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;

  margin-top: 19px;
}

.projects-body h1 {
  font-size: 39px;
  letter-spacing: -1.7px;
}

.projects-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.projects-heading p {
  margin-top: 8px;

  color:
    rgba(255,255,255,.5);

  font-size: 11px;
}

.projects-heading > span {
  color:
    rgba(255,255,255,.35);

  font-family:
    "Courier New",
    monospace;

  font-size: 11px;
}

.project-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 12px;

  margin-top: 28px;
}

.project-card {
  min-height: 300px;

  padding: 19px;

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.075),
      rgba(20,18,45,.13)
    );
}

.project-number {
  color:
    rgba(255,255,255,.36);

  font-family:
    "Courier New",
    monospace;

  font-size: 10px;
}

.project-type {
  display: block;

  margin-top: 12px;

  color:
    rgba(255,255,255,.3);

  font-size: 8px;
}

.project-card h2 {
  margin-top: 54px;

  font-size: 22px;
}

.project-card p {
  margin-top: 9px;

  color:
    rgba(255,255,255,.56);

  font-size: 11px;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 5px;

  margin-top: 16px;
}

#projectsWindow {
  width: 980px;
  height: 640px;
}

#terminalWindow {
  top: 105px;
  left: 50%;

  width: 680px;
  height: 480px;

  transform:
    translateX(-50%);
}

.terminal-body {
  height:
    calc(
      100% -
      42px
    );

  overflow: auto;

  padding: 17px;

  background:
    rgba(0,0,0,.82);

  font-family:
    "Courier New",
    monospace;

  font-size: 11px;
}

.terminal-output {
  display: flex;
  flex-direction: column;

  gap: 5px;

  color:
    #f0f0f0;
}

.terminal-input-line {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-top: 7px;
}

.terminal-input-line.hidden {
  display: none;
}

.terminal-input-line span {
  color:
    #7cff9b;

  white-space: nowrap;
}

.terminal-input-line input {
  flex: 1;

  border: 0;
  outline: none;

  background: transparent;
  color: white;

  font-family:
    inherit;

  font-size: inherit;
}

.snake-container {
  display: none;

  margin-top: 8px;
}

.snake-container.active {
  display: block;
}

.snake-top {
  width: 520px;

  display: flex;
  justify-content: space-between;

  margin-bottom: 7px;

  color:
    #7cff9b;

  font-size: 10px;
}

#snakeCanvas {
  display: block;

  width: 520px;
  height: 320px;

  border:
    1px solid
    rgba(255,255,255,.15);

  background: #030504;
}

.snake-help {
  margin-top: 7px;

  color:
    rgba(255,255,255,.42);

  font-size: 9px;
}

#resumeWindow {
  width: 900px;
  height: 620px;
}

.resume-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.resume-top h1 {
  font-size: 36px;
  letter-spacing: -1.4px;
}

.resume-top p {
  margin-top: 5px;

  color:
    rgba(255,255,255,.5);

  font-size: 10px;
}

.resume-pdf-button {
  padding:
    10px
    13px;

  border:
    1px solid
    rgba(255,255,255,.13);

  border-radius: 11px;

  background:
    rgba(255,255,255,.07);

  color: white;

  text-decoration: none;

  font-size: 9px;
}

.resume-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 23px 30px;

  margin-top: 31px;
}

.resume-grid h3 {
  margin-bottom: 10px;

  color:
    rgba(255,255,255,.4);

  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.resume-entry {
  margin-bottom: 12px;
}

.resume-entry strong {
  font-size: 12px;
}

.resume-entry > span {
  margin-left: 7px;

  color:
    rgba(255,255,255,.34);

  font-size: 8px;
}

.resume-entry p {
  margin-top: 5px;

  color:
    rgba(255,255,255,.54);

  font-size: 10px;
  line-height: 1.5;
}

.resume-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 5px;
}

.language-lines {
  display: grid;

  gap: 7px;
}

.language-lines div {
  display: flex;
  justify-content: space-between;

  padding-bottom: 7px;

  border-bottom:
    1px solid
    rgba(255,255,255,.07);

  font-size: 10px;
}

.language-lines strong {
  color:
    rgba(255,255,255,.4);

  font-weight: 500;
}

#contactWindow {
  top: 110px;

  width: 720px;
  height: 450px;
}

.contact-body h1 {
  display: flex;
  flex-direction: column;

  font-size: 43px;
  line-height: 1;

  letter-spacing: -2px;
}

.contact-body h1 span:last-child {
  color:
    rgba(255,255,255,.58);
}

.contact-body > p {
  max-width: 520px;

  margin-top: 17px;

  color:
    rgba(255,255,255,.53);

  font-size: 11px;
  line-height: 1.6;
}

.email-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 28px;

  padding:
    14px
    16px;

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius: 14px;

  background:
    rgba(255,255,255,.055);
}

.email-box div {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.email-box div span {
  color:
    rgba(255,255,255,.34);

  font-size: 7px;
  letter-spacing: 1px;
}

.email-box strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 11px;
}

.email-box button {
  padding:
    9px
    12px;

  border:
    1px solid
    rgba(255,255,255,.13);

  border-radius: 10px;

  background:
    rgba(255,255,255,.07);

  cursor: pointer;

  font-size: 9px;
}

.contact-footer {
  display: flex;
  justify-content: space-between;

  margin-top: 27px;

  color:
    rgba(255,255,255,.3);

  font-size: 8px;
}
.desktop-files {
  position: fixed;

  right: 42px;
  bottom: 140px;

  z-index: 25;

  display: grid;

  grid-template-columns:
    repeat(3, 94px);

  gap:
    20px
    12px;
}

.desktop-file {
  min-height: 96px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 7px;

  border: 0;

  background: transparent;

  color: white;

  cursor: pointer;
}

.desktop-file-icon {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,.16);

  border-radius: 16px;

  background:
    rgba(255,255,255,.08);

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

  transition:
    transform
    .2s
    cubic-bezier(.16,1,.3,1),
    background
    .2s ease;
}

.desktop-file:hover .desktop-file-icon {
  transform:
    translateY(-4px)
    scale(1.05);

  background:
    rgba(255,255,255,.13);
}

.desktop-file-icon svg {
  width: 29px;
  height: 29px;

  fill: none;
  stroke: white;

  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-file-label {
  max-width: 90px;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;

  font-size: 9px;

  text-shadow:
    0 1px 5px
    rgba(0,0,0,.3);
}

.dock {
  position: fixed;

  left: 50%;
  bottom: 20px;

  z-index: 1200;

  display: flex;
  align-items: flex-end;

  gap: 4px;

  height: 71px;

  padding:
    8px
    9px;

  border:
    1px solid
    rgba(255,255,255,.17);

  border-radius: 20px;

  background:
    rgba(35, 26, 65, .27);

  box-shadow:
    0 20px 50px
    rgba(20,10,50,.23);

  backdrop-filter:
    blur(27px)
    saturate(160%);

  -webkit-backdrop-filter:
    blur(27px)
    saturate(160%);

  transform:
    translateX(-50%);
}

.dock-item {
  position: relative;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,.09);

  border-radius: 15px;

  background:
    rgba(255,255,255,.07);

  color: white;

  cursor: pointer;

  transition:
    transform
    .22s
    cubic-bezier(.16,1,.3,1),
    background
    .2s ease;
}

.dock-item:hover {
  transform:
    translateY(-8px)
    scale(1.14);

  background:
    rgba(255,255,255,.12);
}

.dock-item svg {
  width: 23px;
  height: 23px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.6;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.dock-item > span {
  position: absolute;

  bottom: 63px;
  left: 50%;

  padding:
    5px
    7px;

  border-radius: 7px;

  background:
    rgba(20,18,34,.84);

  color: white;

  font-size: 8px;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-50%)
    translateY(4px);

  transition:
    .15s ease;
}

.dock-item:hover > span {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);
}

.dock-item.minimized-app::after {
  content: "";

  position: absolute;

  bottom: -7px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: white;
}

.resize-handle {
  position: absolute;

  z-index: 20;
}

.resize-right {
  top: 0;
  right: -3px;

  width: 7px;
  height: 100%;

  cursor: ew-resize;
}

.resize-bottom {
  left: 0;
  bottom: -3px;

  width: 100%;
  height: 7px;

  cursor: ns-resize;
}

.resize-bottom-right {
  right: -4px;
  bottom: -4px;

  width: 12px;
  height: 12px;

  cursor: nwse-resize;
}

.window-body::-webkit-scrollbar,
.terminal-body::-webkit-scrollbar {
  width: 6px;
}

.window-body::-webkit-scrollbar-track,
.terminal-body::-webkit-scrollbar-track {
  background: transparent;
}

.window-body::-webkit-scrollbar-thumb,
.terminal-body::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(255,255,255,.18);
}


/* =========================================================
   M/OS — FINAL POSITION / WINDOW / ANIMATION FIXES
   ========================================================= */

.background-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -5;
}

.boot-center {
  width: 260px;
  text-align: center;
}

.boot-progress {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
}

.top-bar-left {
  font-size: 11px;
  font-weight: 700;
}

.top-bar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -1px;
}

.top-ogan-logo span {
  color: rgba(255,255,255,.42);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
}

.language-switcher {
  position: relative;
}

.language-switcher::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 9px;
}

.language-switcher:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-current svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.language-check {
  margin-left: auto;
  opacity: 0;
}

.language-option.active .language-check {
  opacity: 1;
}

.timezone-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-widget {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(42, 32, 74, .18);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 20px 40px rgba(18, 10, 40, .18);
}

.main-widget {
  grid-column: 1 / -1;
  min-height: 165px;
  padding: 17px;
  border-radius: 17px;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.widget-header-left {
  display: flex;
  align-items: center;
  gap: 7px;
}

.widget-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.widget-updated {
  color: rgba(255,255,255,.7);
}

.main-widget h3 {
  margin-top: 13px;
  font-size: 21px;
  letter-spacing: -.7px;
}

.widget-data-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 13px;
  margin-top: 20px;
}

.widget-data-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.widget-data-row span,
.widget-small-label {
  color: rgba(255,255,255,.4);
  font-size: 8px;
  text-transform: uppercase;
}

.widget-data-row strong {
  font-size: 10px;
}

.widget-progress-area {
  margin-top: 14px;
}

.widget-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-size: 8px;
}

.widget-progress-track {
  height: 3px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.widget-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: rgba(255,255,255,.9);
}

.mini-widget-icon {
  font-family: "Courier New", monospace;
  font-size: 12px;
  opacity: .78;
}

/* ORTADAKİ YAZI */
.identity-strip {
  top: 50%;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
}

.identity-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.identity-strip-line {
  display: none;
}

/* PENCERELER */

.app-window {
  position: fixed;
  z-index: 100;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 17px;
  box-shadow: 0 30px 70px rgba(20,10,50,.25);
  will-change: transform, opacity, filter;
}

.app-window.closed,
.app-window.minimized {
  display: none;
}

.app-window.window-animating {
  display: block;
}

#profileWindow,
#shortAboutWindow {
  transform: none;
}

.profile-content {
  width: 100%;
  height: calc(100% - 42px);
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.48);
  font-size: 9px;
}

.short-about-content h1 {
  margin-top: 10px;
  font-size: 27px;
  letter-spacing: -1px;
}

.about-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.about-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-size: 8px;
}

.app-content {
  position: relative;
  height: calc(100% - 42px);
  overflow: auto;
  padding: 28px 32px;
}

.app-window.maximized {
  top: 34px !important;
  left: 0 !important;
  width: 100vw !important;
  height: calc(100vh - 34px) !important;
  transform: none !important;
  border-radius: 0;
}

.section-label {
  margin-bottom: 14px;
  color: rgba(255,255,255,.36);
  font-family: "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 1.7px;
}

/* ABOUT */

#aboutWindow .app-content {
  padding: 34px 42px 44px;
}

#aboutWindow h2 {
  display: flex;
  flex-direction: column;
  font-size: 47px;
  line-height: .98;
  letter-spacing: -2.5px;
}

#aboutWindow .heading-muted {
  color: rgba(255,255,255,.56);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: start;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 30px;
}

.fact-card {
  min-height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
}

.about-final-line {
  margin-top: 25px;
  padding: 18px 20px;
  border-left: 2px solid rgba(255,255,255,.72);
  border-radius: 0 12px 12px 0;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.94) !important;
  font-weight: 600;
}

/* PROJECTS */

.projects-content h2 {
  font-size: 39px;
  letter-spacing: -1.7px;
}

.project-count {
  color: rgba(255,255,255,.35);
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.project-card h3 {
  margin-top: 54px;
  font-size: 22px;
}

/* TERMINAL */

.terminal-content {
  height: calc(100% - 42px);
  overflow: auto;
  padding: 17px;
  background: rgba(0,0,0,.82);
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.terminal-prompt {
  color: #7cff9b;
  white-space: nowrap;
}

.snake-topbar {
  width: 520px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #7cff9b;
  font-size: 10px;
}

/* RESUME */

.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.resume-header h2 {
  font-size: 36px;
  letter-spacing: -1.4px;
}

.resume-header p {
  margin-top: 5px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
}

.download-button {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  color: #fff;
  text-decoration: none;
  font-size: 9px;
}

.resume-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 30px;
  margin-top: 31px;
}

.resume-section {
  margin-bottom: 24px;
}

.resume-section h3 {
  margin-bottom: 10px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resume-entry {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
}

.resume-date {
  color: rgba(255,255,255,.34);
  font-size: 8px;
}

.resume-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.resume-skill-list span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-size: 8px;
}

.language-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 10px;
}

/* CONTACT */

.contact-content h2 {
  display: flex;
  flex-direction: column;
  font-size: 43px;
  line-height: 1;
  letter-spacing: -2px;
}

.contact-content .heading-muted {
  color: rgba(255,255,255,.58);
}

.contact-intro {
  max-width: 520px;
  margin-top: 17px;
  color: rgba(255,255,255,.53);
  font-size: 11px;
  line-height: 1.6;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}

.copy-button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  color: white;
  cursor: pointer;
  font-size: 9px;
}

.copy-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.desktop-file-name {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
  text-shadow: 0 1px 5px rgba(0,0,0,.3);
}

.svg-fill {
  fill: currentColor;
  stroke: none;
}

/* DOCK RUNNING DOT */

.dock-running-dot {
  position: absolute !important;
  left: 50% !important;
  bottom: -7px !important;

  width: 4px !important;
  height: 4px !important;

  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;

  background: transparent !important;

  opacity: 1 !important;
  visibility: visible !important;

  transform: translateX(-50%) !important;
}

.dock-item:hover > .dock-running-dot {
  transform: translateX(-50%) !important;
}

.dock-item.minimized-app > .dock-running-dot {
  background: white !important;
}

.dock-item > .about-ring {
  pointer-events: none;
  padding: 0;
  background: transparent;
}

/* MACOS PENCERE BUTONLARI */

.window-control span {
  position: absolute;
  inset: 0;

  display: block;

  opacity: 0;

  pointer-events: none;

  transition: opacity .12s ease;
}

.window-controls:hover .window-control span {
  opacity: 1;
}

.window-control.close span::before,
.window-control.close span::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 7px;
  height: 1px;

  background: rgba(75,0,0,.78);

  transform-origin: center;
}

.window-control.close span::before {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.window-control.close span::after {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.window-control.minimize span::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 7px;
  height: 1px;

  background:
    rgba(80,45,0,.82);

  transform:
    translate(-50%, -50%);
}

.window-control.minimize span::after {
  content: none;
}

/* YEŞİL BÜYÜTME İKONU */

.window-control.maximize span::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 5px;
  height: 5px;

  border:
    1px solid
    rgba(0,65,20,.9);

  border-radius: 1px;

  background: transparent;

  transform:
    translate(-50%, -50%);
}

.window-control.maximize span::after {
  content: none;
}

/* RESIZE HANDLE */

.resize-top {
  top: -3px;
  left: 0;

  width: 100%;
  height: 7px;

  cursor: ns-resize;
}

.resize-left {
  top: 0;
  left: -3px;

  width: 7px;
  height: 100%;

  cursor: ew-resize;
}

.resize-top-left,
.resize-top-right,
.resize-bottom-left {
  width: 12px;
  height: 12px;
}

.resize-top-left {
  top: -4px;
  left: -4px;

  cursor: nwse-resize;
}

.resize-top-right {
  top: -4px;
  right: -4px;

  cursor: nesw-resize;
}

.resize-bottom-left {
  left: -4px;
  bottom: -4px;

  cursor: nesw-resize;
}

.app-content::-webkit-scrollbar,
.terminal-content::-webkit-scrollbar {
  width: 6px;
}

.app-content::-webkit-scrollbar-track,
.terminal-content::-webkit-scrollbar-track {
  background: transparent;
}

.app-content::-webkit-scrollbar-thumb,
.terminal-content::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(255,255,255,.18);
}


/* =========================================================
   SON İNCE AYARLAR
   ========================================================= */

/* PENCERE SÜRÜKLEME */

.app-window {
  transition:
    box-shadow .18s ease,
    scale .18s cubic-bezier(.16, 1, .3, 1);
}

.app-window.is-dragging {
  scale: 1.012;

  box-shadow:
    0 38px 90px
    rgba(10,5,30,.42);
}


/* =========================================================
   DOCK ANİMASYONLARI
   ========================================================= */

.dock-item {
  transition:
    transform .28s
    cubic-bezier(.16,1,.3,1),
    background .2s ease,
    box-shadow .28s ease;
}

.dock-item:hover {
  transform:
    translateY(-9px)
    scale(1.14);

  background:
    rgba(255,255,255,.14);

  box-shadow:
    0 14px 28px
    rgba(10,5,30,.25);
}

.dock-item svg {
  transition:
    transform .28s
    cubic-bezier(.16,1,.3,1);
}

.dock-item:hover svg {
  transform:
    scale(1.08);
}


/* HOME */

.home-roof {
  transform-origin: center;

  transition:
    transform .25s ease;
}

.home-item:hover .home-roof {
  transform:
    translateY(-2px);
}


/* ABOUT */

.about-item:hover svg {
  transform:
    scale(1.09)
    rotate(-4deg);
}


/* PROJECTS */

.folder-lid {
  transform-origin: center;

  transition:
    transform .25s ease;
}

.projects-item:hover .folder-lid {
  transform:
    translateY(-2px);
}


/* TERMINAL */

.terminal-arrow {
  transition:
    transform .25s ease;
}

.terminal-item:hover .terminal-arrow {
  transform:
    translateX(2px);
}

.terminal-line {
  transition:
    transform .25s ease,
    opacity .25s ease;
}

.terminal-item:hover .terminal-line {
  transform:
    translateX(1px);
}


/* RESUME */

.resume-corner {
  transition:
    transform .25s ease;
}

.resume-item:hover .resume-corner {
  transform:
    translate(-1px, 1px);
}

.resume-line {
  transition:
    transform .25s ease;
}

.resume-item:hover .line-one {
  transform:
    translateX(1.5px);
}

.resume-item:hover .line-two {
  transform:
    translateX(-1.5px);
}


/* CONTACT */

.envelope-flap {
  transform-origin: center;

  transition:
    transform .25s ease;
}

.contact-item:hover .envelope-flap {
  transform:
    translateY(-2px);
}

/*
                    _..-----._
                  .'          '.
                 /              \
                |                ;
                |                 |
                \                 |
                 \               ;
           _..----'             /
         .`-. .-'``'-.       .-'
       .'_   `  _     '.    `'.
      /  _`    _ `      \      \     _...._
   _  | /  \  /  \      |       | .-'      `'.
  / \ | | /|  | /|      |       ;'            \
 |  |_\ \_|/  \_|/      /                      ;
 .\_/  `'-.            /_...._                 |
/          `                  `\               |
|                        __     |             /
 \                       / `   //'.         .'
  '._                  .'     .'   `'-...-'`
     `"'-.,__    ___.-'    .-'
      `-._````  __..--'`
           ``````
           */