#transition-container {
  position: absolute;
  z-index: 1000;
  width: 200vw;
  bottom: -100%;
  transform: rotate(20deg);
  left: -40%;
  pointer-events: none;
}

#transition-wave-svg {
  transform: translateY(20px);
}

#transition-wave-svg-bottom {
  transform: rotate(180deg) translateY(20px);
}

.hideTopTransition {
  animation: hideTopTransition ease-in 0.7s;
  animation-fill-mode: forwards;
}

@keyframes hideTopTransition {
  0% {
    bottom: -120%;
    left: -40%;
  }

  100% {
    bottom: 100%;
    left: 40%;
  }
}

.showTransition {
  animation: showTransition ease-in 0.7s;
  animation-fill-mode: forwards;
}

@keyframes showTransition {
  0% {
    bottom: -450%;
    left: -60%;
  }

  100% {
    bottom: -120%;
    left: -40%;
  }
}

#transition-push {
  height: 200vh;
  background: #ff923e;
}

/**---------------------------------------------------------------Responsive-----------------------------------------------------*/
@media (max-aspect-ratio: 12/10) {
  #transition-container {
    transform: translate(0, -20%) scale(1.2) rotate(10deg);
  }
}

/****************************Overlay**************************/
#overlay-container {
  position: absolute;
  height: calc(100% - 30px);
  padding: 15px 0;
  margin: 0 auto;
  right: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}

#header-container {
  position: absolute;
  top: 0;
  width: 100%;
  transition: 250ms;
  padding-top: 15px;
  pointer-events: none;
}

.overlay-button {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  border-radius: 15px;
  cursor: pointer;
  pointer-events: auto;
}

/*Header Logo*/
#header-logo-svg {
  position: absolute;
  transform-origin: center center;
}

#logo-dark-background {
  background: #091434;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 15px;
  clip-path: url(#logo-clip-path);
}

#logo-white-background {
  background: white;
  width: 200px;
}

#logo-click-container {
  height: 53px;
  width: 49px;
  position: absolute;
  cursor: pointer;
  pointer-events: auto;
  transform-origin: top left;
}

/**Sound button*/
#sound-button {
  right: 62px;
  overflow: hidden;
}

#header-sound-svg {
  height: 48px;
  width: 48px;
  transform: translateX(12px) scale(1.2);
}

.sound-wave-bars {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 9px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

#sound-button.sound-playing .sound-wave-bars {
  opacity: 1;
}

.sound-wave-bar {
  width: 2px;
  height: 100%;
  background: #ffffff;
  border-radius: 1px;
  transform-origin: bottom;
  animation: soundWaveAnim 1.2s ease-in-out infinite;
}

.sound-wave-bar:nth-child(1) {
  height: 45%;
  animation-delay: 0s;
}

.sound-wave-bar:nth-child(2) {
  height: 85%;
  animation-delay: 0.25s;
}

.sound-wave-bar:nth-child(3) {
  height: 60%;
  animation-delay: 0.5s;
}

@keyframes soundWaveAnim {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}

#sound-button-scale-container {
  transform-origin: top right;
  position: relative;
}

/**Menu Button*/
#menu-button {
  right: 0;
}

.menu-button-bar {
  width: 26px;
  height: 4px;
  background: white;
  margin: 2.5px;
  border-radius: 2px;
}

#menu-button-scale-container {
  transform-origin: top right;
}

/**Section Stepper HUD*/
#section-stepper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 350ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

#section-stepper.is-scrolling,
#section-stepper:hover,
#section-stepper:focus-within {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.stepper-dot {
  background: transparent;
  border: 0;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  cursor: pointer;
}

.stepper-label {
  font-size: 12px;
  font-weight: 600;
  color: #7c8594;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    color 200ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.stepper-bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(9, 20, 52, 0.3);
  transition:
    height 250ms cubic-bezier(0.4, 0, 0.2, 1),
    width 250ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 250ms ease,
    box-shadow 250ms ease,
    transform 200ms ease;
}

.stepper-dot:hover .stepper-label {
  opacity: 1;
  transform: translateX(0);
  color: #091434;
}

.stepper-dot:hover .stepper-bullet {
  background: #ff923e;
  transform: scale(1.3);
}

.stepper-dot.active .stepper-label {
  opacity: 1;
  transform: translateX(0);
  color: #ff923e;
}

.stepper-dot.active .stepper-bullet {
  height: 18px;
  width: 6px;
  border-radius: 3px;
  background: #ff923e;
  box-shadow: 0 0 10px rgba(255, 146, 62, 0.5);
}

@media (max-aspect-ratio: 12/10), (max-width: 800px) {
  #section-stepper {
    display: none;
  }
}

/**Scroll Icon*/
.scroll-container {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.scroll-border-container {
  width: 24px;
  height: 38px;
  border: 3px solid #091434;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  background: #091434;
  width: 4px;
  height: 11px;
  border-radius: 2px;
  margin-top: 4px;
}

.scroll-touch-icon {
  height: 38px;
  width: 38px;
}

/*------------------------------------------ Responsive -----------------------------*/
/**Scale down buttons*/
@media (max-width: 800px), (max-height: 800px) {
  #scroll-icon,
  #menu-button-scale-container,
  #sound-button-scale-container,
  .scroll-container,
  #logo-clip-path,
  #logo-click-container {
    transform: scale(0.9);
  }

  #sound-button {
    right: 64px;
  }
}

@media (max-width: 550px), (max-height: 550px) {
  #scroll-icon,
  #menu-button-scale-container,
  #sound-button-scale-container,
  .scroll-container,
  #logo-clip-path,
  #logo-click-container {
    transform: scale(0.8);
  }

  #sound-button {
    right: 60px;
  }
}

#landing-page {
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
}

#landing-page-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: calc(100% - 30px);
  left: 0;
  position: relative;
}

#landing-content-svg {
  width: 550px;
  max-width: 45%;
  max-height: 53%;
  position: relative;
}

.landing-headline {
  transform-origin: left;
  font-size: 64px;
  font-weight: 600;
  fill: #091434;
  letter-spacing: -0.5px;
}

.landing-subheading {
  font-size: 17px;
  fill: #7c8594;
  transform-origin: left;
}

/**---------------------------------------------------------------Responsive-----------------------------------------------------*/
@media (max-aspect-ratio: 12/10) {
  #landing-content-svg {
    max-width: 94%;
    max-height: 80%;
  }

  #landing-page {
    align-items: flex-start;
    padding-top: 45px;
    background-image: linear-gradient(180deg, #f5efe6 45%, transparent 50%);
  }

  #landing-page-section {
    max-height: 40vh;
    justify-content: center;
    align-items: center;
    position: unset;
  }
}

#scroll-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.scroll-container-transitions {
  transition:
    left 0.9s cubic-bezier(0.645, 0.045, 0.355, 1),
    top 700ms cubic-bezier(0.6, 0, 0.4, 1);
}

#hover-icon-color-switch {
  position: absolute;
  width: 300%;
  height: 50%;
  top: 0;
}

#about-section {
  justify-content: flex-start;
  align-items: center;
  font-family: "Electrolize", sans-serif;
  color: #34bfff;
  min-height: 100vh;
  padding-bottom: 90px;
}

/**---------------------------------------------------------------Content-----------------------------------------------------*/
#about-content-container {
  width: 580px;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: filter 0.4s ease;
}

#about-content-container span {
  color: #34bfff;
}

/* Cyberpunk HUD Status Bar */
.lab-hud-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 75px;
  margin-bottom: -105px;
  padding: 6px 14px;
  background: rgba(0, 24, 56, 0.7);
  border: 1px solid rgba(0, 183, 255, 0.4);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 16px rgba(0, 183, 255, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: "Electrolize", monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  z-index: 10;
  box-sizing: border-box;
}

.lab-hud-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #70d8ff;
  font-weight: bold;
}

.lab-hud-dot {
  width: 7px;
  height: 7px;
  background: #38ef7d;
  border-radius: 50%;
  box-shadow: 0 0 8px #38ef7d;
  animation: labDotPulse 2s infinite ease-in-out;
}

@keyframes labDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

.lab-hud-telemetry {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a0e8ff;
  font-size: 11px;
}

.lab-hud-vital {
  color: #38ef7d;
  font-weight: 600;
}

.lab-hud-sync {
  color: #70d8ff;
}

.lab-hud-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lab-hud-btn {
  border: 1px solid rgba(0, 183, 255, 0.5);
  background: rgba(0, 48, 96, 0.6);
  color: #8cdbff;
  padding: 3px 9px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 10px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.lab-hud-btn:hover {
  color: #ffffff;
  background: rgba(0, 183, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 183, 255, 0.5);
  transform: translateY(-1px);
}

.lab-hud-btn--caffeine.is-boosted {
  background: linear-gradient(135deg, #d35400, #f39c12);
  border-color: #f39c12;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.7);
}

.lab-hud-btn--overclock {
  border-color: rgba(255, 75, 75, 0.5);
  color: #ff8080;
}

.lab-hud-btn--overclock:hover,
.lab-hud-btn--overclock.is-active {
  background: linear-gradient(135deg, #b71c1c, #ff3b3b);
  border-color: #ff3b3b;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(255, 59, 59, 0.8);
}

/* Overclock Global Red Alert */
#about-content-container[data-overclock="true"] {
  filter: drop-shadow(0 0 15px rgba(255, 59, 59, 0.4));
}

#about-content-container[data-overclock="true"] .lab-hud-status-bar {
  border-color: rgba(255, 59, 59, 0.8);
  background: rgba(48, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.4);
}

#about-content-container[data-overclock="true"] .lab-hud-dot {
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
}

#about-content-container[data-overclock="true"] .lab-hud-vital {
  color: #ff4d4d;
}

/* Palette Themes for HUD */
#about-content-container[data-lab-palette="amberGold"] .lab-hud-status-bar {
  border-color: rgba(255, 184, 0, 0.6);
  background: rgba(36, 22, 0, 0.75);
}

#about-content-container[data-lab-palette="amberGold"] .lab-hud-label,
#about-content-container[data-lab-palette="amberGold"] .lab-hud-sync {
  color: #ffd266;
}

#skills-svg {
  margin-top: 120px;
  width: 100%;
}

.about-box-line {
  fill: none;
  stroke: #00b7ff;
  stroke-width: 2;
}

.about-up-animation-line {
  fill: none;
  stroke: #00b7ff;
  opacity: 0;
  stroke-width: 2;
}

.about-down-animation-line {
  fill: none;
  stroke: #00b7ff;
  opacity: 0;
  stroke-width: 2;
}

.about-box-background {
  stroke-width: 0;
  fill: url("#about-background-gradient");
}

.about-header {
  font-weight: bold;
  font-size: 18px;
  fill: #34bfff;
}

.about-text {
  font-weight: bold;
  font-size: 15px;
  fill: #34bfff;
}

/**Main Skills Box*/
#about-skills-container {
  position: relative;
  box-sizing: border-box;
  height: 210px;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px 4px 0;
  font-weight: bold;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 183, 255, 0.4) transparent;
}

#about-skills-container::-webkit-scrollbar {
  width: 4px;
}

#about-skills-container::-webkit-scrollbar-thumb {
  background: rgba(0, 183, 255, 0.4);
  border-radius: 3px;
}

.ability-mode-switch {
  display: flex;
  gap: 4px;
  width: 100%;
  height: 28px;
  padding: 2px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 183, 255, 0.45);
  background: rgba(0, 32, 70, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  box-shadow:
    0 0 12px rgba(0, 183, 255, 0.12) inset,
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.ability-mode-button {
  flex: 1;
  border: 0;
  border-radius: 4px;
  padding: 0 8px;
  color: #8cdbff;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.ability-mode-button:hover,
.ability-mode-button:focus-visible {
  color: #ffffff;
  background: rgba(0, 183, 255, 0.22);
  outline: none;
}

.ability-mode-button.is-active {
  color: #001736;
  background: linear-gradient(135deg, #34bfff 0%, #00a2f3 100%);
  box-shadow:
    0 0 10px rgba(0, 183, 255, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.25);
  font-weight: bold;
}

#about-content-container[data-ability-mode="process"]
  .ability-mode-button.is-active {
  background: linear-gradient(135deg, #ffb800 0%, #e67e00 100%);
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.7);
  color: #1a0f00;
}

#about-skills-container > .ability-mode-panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 8px;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
}

.ability-mode-panel--it,
.ability-mode-panel--process,
#about-process-summary-container {
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  pointer-events: none;
}

#about-content-container[data-ability-mode="it"] .ability-mode-panel--it,
#about-content-container[data-ability-mode="process"]
  .ability-mode-panel--process,
#about-content-container[data-ability-mode="process"]
  #about-process-summary-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

#about-content-container[data-ability-mode="it"] #about-it-content,
#about-content-container[data-ability-mode="process"]
  #about-process-summary-container {
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
}

#about-content-container[data-ability-mode="process"] #about-it-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  pointer-events: none;
}

#about-content-container[data-ability-mode="it"] #about-it-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Process Capabilities */
.process-capability {
  display: flex;
  align-items: flex-start;
  min-height: 40px;
  box-sizing: border-box;
  padding: 5px 14px;
  border-bottom: 1px solid rgba(0, 183, 255, 0.15);
  color: #34bfff;
  transition: background-color 0.2s ease;
}

.process-capability:hover {
  background: rgba(0, 183, 255, 0.12) !important;
}

.process-capability:nth-child(odd) {
  background: rgba(45, 136, 221, 0.08);
}

.process-capability-index {
  flex: 0 0 28px;
  color: #ffb800;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
}

.process-capability-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.process-capability-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.process-capability-title-row strong {
  color: #ffffff;
  font-size: 13px;
}

.process-capability-badge {
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: #ffca28;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: bold;
}

.process-capability-desc {
  overflow: hidden;
  color: #8cdbff;
  font-size: 11px;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Process Focus */
#about-process-summary-container {
  display: flex;
  box-sizing: border-box;
  height: 100%;
  flex-direction: column;
  padding: 14px 16px 8px;
}

.process-summary-heading {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.process-summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 10px;
  border-left: 2px solid #ffb800;
  background: rgba(255, 184, 0, 0.05);
  border-radius: 0 4px 4px 0;
}

.process-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-summary-item strong {
  color: #ffffff;
  font-size: 13px;
}

.process-summary-metric {
  color: #ffb800;
  font-size: 11px;
  font-weight: bold;
}

.process-summary-item span {
  color: #90caf9;
  font-size: 11px;
  font-weight: normal;
  line-height: 15px;
}

/* Interactive IT Skill Cards */
.about-skill-container {
  box-sizing: border-box;
  padding: 4px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 183, 255, 0.12);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.about-skill-container:hover {
  background: rgba(0, 183, 255, 0.1) !important;
}

.about-skill-container.is-expanded {
  background: rgba(0, 48, 96, 0.35) !important;
  border-left: 2px solid #34bfff;
  padding-bottom: 8px;
}

.about-skill-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.about-skill-span {
  color: #e0f7ff !important;
  font-size: 13px;
  font-weight: bold;
}

.about-skill-percent {
  color: #38ef7d;
  font-size: 12px;
  font-family: monospace;
  font-weight: bold;
}

/* Progress Bar */
.about-skill-bar-container {
  width: 100%;
  height: 7px;
  background: rgba(0, 183, 255, 0.15) !important;
  border: 1px solid rgba(0, 183, 255, 0.25);
  border-radius: 4px;
  overflow: hidden;
}

.about-skill-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    #1f78db 0%,
    #34bfff 70%,
    #6fe7ff 100%
  ) !important;
  box-shadow: 0 0 8px rgba(52, 191, 255, 0.5);
  border-radius: 3px;
  width: 30%;
  transition: width 0.5s ease-out;
}

/* Expandable Skill Details */
.about-skill-detail-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  padding: 6px 8px;
  background: rgba(0, 20, 48, 0.6);
  border-radius: 4px;
  border: 1px dashed rgba(0, 183, 255, 0.3);
  animation: skillDrawerFade 0.2s ease-out;
}

.about-skill-container.is-expanded .about-skill-detail-drawer {
  display: flex;
}

@keyframes skillDrawerFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-skill-tagline {
  color: #70d8ff;
  font-size: 11px;
  font-weight: 600;
}

.about-skill-highlights {
  margin: 0;
  padding-left: 14px;
  color: #b0e8ff;
  font-size: 10px;
  line-height: 14px;
  font-weight: normal;
}

.about-skill-highlights li {
  margin-bottom: 2px;
}

.about-skill-jump-btn {
  align-self: flex-start;
  margin-top: 3px;
  padding: 2px 8px;
  background: rgba(0, 183, 255, 0.25);
  border: 1px solid rgba(0, 183, 255, 0.5);
  border-radius: 3px;
  color: #ffffff;
  font-size: 10px;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.15s ease;
}

.about-skill-jump-btn:hover {
  background: rgba(0, 183, 255, 0.5);
  box-shadow: 0 0 8px rgba(0, 183, 255, 0.6);
  transform: translateY(-1px);
}

/**About Content Pixel Icons*/
#about-svg-about image {
  image-rendering: pixelated;
  opacity: 0.9;
}

.about-pixel-mask-rect {
  fill: white;
}

/**---------------------------------------------------------------Responsive-----------------------------------------------------*/
@media (max-aspect-ratio: 12/10) {
  #about-section {
    justify-content: center;
    padding-bottom: 3vh;
  }

  #about-content-container {
    max-width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #skills-svg {
    margin-top: 63vh;
    margin-bottom: 90px;
  }
}

.landing-slow-transition {
  transition: top 700ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide-out-left-transition {
  transition:
    left 0.9s cubic-bezier(0.6, 0, 0.4, 1),
    right 0.9s cubic-bezier(0.6, 0, 0.4, 1);
}

#work-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 3vh;
  position: relative;
  min-height: 100vh;
  width: 100%;
}

#work-content {
  position: relative;
  padding: 90px 0;
  box-sizing: border-box;
  margin-top: 20px;
  justify-content: flex-start;
}

#work-background {
  box-shadow: 0px 30px 70px #93683310;
  background: #f5efe6;
  width: 300%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

#work-render-container {
  position: relative;
  width: 350px;
  height: 570px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 80px;
}

/**Cards*/
.work-item-container {
  background: white;
  height: 100%;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  width: 100%;
  box-shadow:
    0 12px 36px -8px rgba(147, 104, 51, 0.16),
    0 4px 12px -2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.work-item-container-transition {
  transition:
    transform 400ms ease-in-out,
    opacity 400ms ease-in-out,
    filter 400ms ease-in-out,
    border-color 100ms,
    box-shadow 300ms ease;
}

.work-inactive-item-container {
  opacity: 0.5 !important;
  filter: grayscale(0.5) !important;
  cursor: pointer;
}

.work-inactive-item-container * {
  cursor: unset !important;
  pointer-events: none;
}

.work-inactive-item-container:hover {
  border: 2px solid #7c8594;
}

.work-item-image {
  width: calc(100% - 16px);
  margin: 8px;
  margin-bottom: 5px;
  object-fit: cover;
  min-height: 300px;
  border-radius: 10px;
}

.work-item-content-container {
  padding: 8px 16px;
  box-sizing: border-box;
  flex: 1;
}

.work-item-content-container a {
  text-decoration: underline;
}

.work-item-tag-container {
  margin-top: 6px;
  margin-bottom: 14px;
  max-width: 100%;
  flex-wrap: wrap;
}

.work-item-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 9px;
  margin-right: 6px;
  color: white;
  border-radius: 12px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.work-item-button-container {
  margin: 8px;
}

.work-item-orange-button {
  border: 0;
  font: inherit;
  width: 100%;
  padding: 10px !important;
  margin-left: 0;
  border-radius: 12px !important;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 146, 62, 0.3);
}

.work-item-gray-button {
  border: 0;
  padding: 8px 14px;
  color: white;
  font: inherit;
  border-radius: 13px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.work-item-gray-button .code-icon {
  fill: white;
  height: 28px;
  width: 28px;
}

.work-item-gray-button span {
  color: white;
  margin-left: 10px;
}

/**---------------------------------------------------------------Navigation-----------------------------------------------------*/
#work-navigation-container {
  margin-top: 50px;
  margin-bottom: 20px;
}

.work-navigation-button {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  margin: 20px;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease !important;
}

.work-navigation-button:hover:not(:disabled) {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(255, 146, 62, 0.35);
}

.work-navigation-button:active:not(:disabled) {
  transform: scale(0.95);
}

.work-disabled-navigation-button {
  background: #a7adb8 !important;
  cursor: unset !important;
}

.work-navigation-button:disabled {
  pointer-events: none;
}

.work-disabled-navigation-button:hover {
  background: #a7adb8 !important;
}

/**---------------------------------------------------------------Responsive-----------------------------------------------------*/
@media (max-aspect-ratio: 12/10) {
  #work-content {
    align-items: center;
    justify-content: center;
  }

  #work-header-container {
    width: 580px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .work-inactive-item-container {
    opacity: 0;
  }
}

#contact-section {
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 0;
  box-sizing: border-box;
}

#contact-container {
  margin-top: 40px;
  padding: 10px;
  border-radius: 20px;
  background: white;
  width: 540px;
  max-width: 45%;
  height: 560px;
  max-height: 90vh;
  box-sizing: border-box;
}

#contact-container input,
textarea {
  border: none;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  background: transparent !important;
  font-weight: 500;
  color: #111029;
  resize: none;
}

#contact-container input:focus,
textarea:focus {
  outline: none;
  border: none;
}

#contact-message-input {
  flex: 1;
}

#contact-container textarea {
  height: 100%;
}

.contact-container {
  height: 100%;
}

.input-container {
  width: 100%;
  box-sizing: border-box;
  background: #f7f7f8;
  color: #8c93a0;
  border-radius: 13px;
  padding: 7px;
  padding-left: 15px;
  border: 2px solid #edf0f3;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.input-container:focus-within {
  border-color: #ff923e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 146, 62, 0.15);
}

.input-container label,
.input-container span {
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 10px;
}

#contact-subject-input {
  margin-bottom: 20px;
}

#contact-button-container {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

#contact-button-container .small-button {
  margin-left: auto;
  font-size: 1rem;
}

#contact-button-container .social-icon {
  margin: 0 8px;
}

.contact-email-helper {
  display: flex;
  align-items: center;
  margin-top: 14px;
  gap: 10px;
}

.copy-email-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(9, 20, 52, 0.04);
  border: 1px dashed #cbd2dc;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: #5d6778;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.copy-email-btn:hover {
  background: rgba(255, 146, 62, 0.1);
  border-color: #ff923e;
  color: #ff7e1e;
}

.copy-email-toast {
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 600;
}

/**Errors*/
.error-label {
  color: rgb(216, 84, 84);
}

.error-container {
  background: #ffdbdb;
  border-color: #f0caca;
}

/**Result Container*/
#contact-result-message-container {
  margin-bottom: auto;
}

#contact-result-message-container h4 {
  text-align: center;
  margin: 3px;
}

#contact-result-message-container span {
  font-size: 1rem;
  text-align: center;
  margin: 3px;
}

#contact-result-container svg {
  margin-top: auto;
  margin-bottom: 50px;
  height: 90px;
  min-height: 90px;
}

#contact-result-container polyline,
line {
  fill: none;
  stroke-width: 15;
}

#contact-result-button {
  font-size: 1rem;
}

@media (max-aspect-ratio: 12/10) {
  #contact-section {
    margin-top: 10vh;
    align-items: center;
    justify-content: flex-start;
    height: fit-content;
    margin-bottom: 80vh;
    padding: 0;
    min-height: unset;
  }

  #contact-header-container {
    width: 580px;
    max-width: 100%;
  }

  #contact-container {
    max-width: 100%;
    width: 580px;
  }
}

@media (max-width: 360px), (max-width: 800px) and (min-aspect-ratio: 12/10) {
  #contact-button-container .social-icon {
    margin: 0 4px;
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px), (max-width: 700px) and (min-aspect-ratio: 12/10) {
  #contact-button-container .social-icon {
    display: none;
  }
}

#hover-icon {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    height 200ms,
    width 200ms,
    border-color 200ms,
    border-width 200ms;
  opacity: 0;
}

.clickCTA::after {
  content: "Click to enable\Asounds.";
  line-height: 17px;
  white-space: pre-wrap;
  text-align: center;
  min-width: 200px;
  position: relative;
  top: 50px;
  color: #7c8594;
}

.hover-spread {
  height: 16px;
  min-width: 16px;
  background: #ff923e;
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
}

#menu-container {
  position: absolute;
  right: 0;
  width: calc(320px + calc((100vw - 90rem) / 2));
  height: 100%;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: -20px 0 60px rgba(9, 20, 52, 0.08);
  z-index: 2;
  max-width: 45vw;
  box-sizing: border-box;
  padding: 40px 45px 60px 45px;
}

#menu-content-container {
  position: relative;
  height: 100%;
  width: 240px;
}

.menu-status-card {
  background: rgba(9, 20, 52, 0.03);
  border: 1px solid rgba(9, 20, 52, 0.07);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 20px;
}

.menu-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.status-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #091434;
}

.menu-time-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: #7c8594;
}

.time-value {
  font-family: monospace;
  font-weight: 600;
  color: #ff923e;
}

#menu-items-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-group-label {
  margin-bottom: 8px;
  color: #9ba3af;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.menu-items-column-container {
  width: 100%;
}

.menu-page-link {
  padding: 0;
  border: 0;
  background: transparent;
  margin: 12px 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  width: fit-content;
  color: #091434;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition:
    transform 220ms cubic-bezier(0.4, 0, 0.2, 1),
    color 200ms ease;
}

.menu-page-link:hover {
  transform: translateX(8px);
  color: #ff923e;
}

.menu-page-link:nth-child(1)::before {
  content: "01.";
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ba3af;
  font-family: monospace;
}

.menu-page-link:nth-child(2)::before {
  content: "02.";
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ba3af;
  font-family: monospace;
}

.menu-page-link:nth-child(3)::before {
  content: "03.";
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ba3af;
  font-family: monospace;
}

.menu-page-link:nth-child(4)::before {
  content: "04.";
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ba3af;
  font-family: monospace;
}

.menu-page-link.active-menu-item::before {
  color: #ff923e;
}

#menu-external-container {
  width: 100%;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.menu-external-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 6px 0;
  color: #657080;
  font-size: 1.05rem;
  font-weight: 600;
}

.menu-external-link::after {
  content: "↗";
  margin-left: 7px;
  color: #ff923e;
  font-size: 0.85em;
}

.menu-external-link:hover {
  color: #091434;
}

.active-menu-item {
  position: relative;
}

.active-menu-item {
  cursor: unset !important;
  transform: translateX(28px);
}

.active-menu-item::after {
  position: absolute;
  height: 14px;
  width: 14px;
  display: flex;
  border-radius: 50%;
  content: "";
  color: white;
  background: #ff923e;
  left: -10px;
  top: 50%;
  transform: translate(-16px, -50%);
}

#menu-container .social-icon {
  margin-right: 15px;
}

#music-credit-container {
  margin-bottom: 10px;
}

/**Music Credit Container*/
#music-credit-container a,
#music-credit-container span {
  font-size: 0.9rem;
  color: #7c8594;
}

#music-credit-container a:hover {
  text-decoration: underline;
}

@media (max-aspect-ratio: 12/10) {
  #menu-container {
    right: -100%;
    width: 100% !important;
    max-width: unset;
    align-items: center;
  }

  .menu-items-column-container {
    align-items: center;
  }

  .menu-link-group {
    align-items: center;
  }

  #menu-social-container {
    justify-content: center;
  }

  #music-credit-container {
    justify-content: center;
  }

  .active-menu-item::after {
    position: absolute;
    height: 3px;
    margin: 0 auto;
    content: "";
    background: #ff923e;
    width: 100%;
    bottom: -2px;
    left: 0;
    transform: translateY(16px);
    border-radius: 0px;
  }

  .active-menu-item {
    transform: unset;
  }
}

/**Decrease Menu in height*/
@media (max-height: 600px) {
  .menu-page-link {
    font-size: 1.3rem;
    margin: 10px 0;
  }

  .menu-external-link {
    font-size: 0.95rem;
    margin: 4px 0;
  }

  #menu-container .social-icon {
    height: 24px;
    width: 24px;
  }

  #menu-container hr {
    margin: 15px 0;
  }

  #music-credit-container a,
  #music-credit-container span {
    font-size: 12px;
  }

  .menu-items-column-container {
    justify-content: center;
  }
}

@media (max-height: 450px) {
  #menu-items-container {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  #menu-external-container {
    width: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 32px;
    border-top: 0;
    border-left: 1px solid #e5e7eb;
  }

  #menu-container {
    padding: 30px 30px 45px 30px;
  }
}

#intro-container {
  z-index: 998;
  background: #f5efe6;
  height: 100%;
  width: 100%;
  position: absolute;
  cursor: wait;
}

.resource-error {
  gap: 8px;
  max-width: min(360px, 90vw);
  padding: 20px;
  color: #091434;
  text-align: center;
}

.resource-error h2,
.resource-error p {
  margin: 0;
}

.resource-error p {
  font-size: 14px;
}

#resource-retry-button {
  border: 0;
  padding: 9px 22px;
  border-radius: 8px;
  color: #ffffff;
  background: #ff923e;
  font: inherit;
  cursor: pointer;
}

footer {
  margin-bottom: 20px;
}

footer span,
footer a {
  font-size: 0.9rem;
  color: #7c8594;
}

footer a:hover {
  text-decoration: underline;
}

#legal-container {
  margin-left: 40px;
}

#legal-container :first-child {
  margin-right: 40px;
}

@media (max-width: 420px) {
  footer {
    flex-direction: column !important;
  }

  #legal-container {
    margin-left: 0;
  }
}

/* @import url('https://fonts.googleapis.com/css2?family=Electrolize&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/**---------------------------------------------------------------Main Stylings-----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

#main-canvas {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
  max-width: 100%;
  max-height: 100%;
  pointer-events: all;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "WenQuanYi Micro Hei",
    sans-serif;
  color: #091434;
  position: relative;
  display: flex;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.content-width {
  width: 92rem;
  max-width: calc(100% - 60px);
}

.hide {
  display: none !important;
}

:where(a, button, input, textarea):focus-visible {
  outline: 2px solid #ff923e;
  outline-offset: 3px;
}

.pointer {
  cursor: pointer;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.width-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

.no-transition {
  transition: none !important;
}

h1 {
  font-size: 4.3rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.16667;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

h5 {
  color: #ff923e;
  font-size: 1.2rem;
  font-weight: 500;
}

span {
  color: #7c8594;
  font-size: 1rem;
}

a {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

hr {
  height: 2px;
  width: 100%;
  background-color: rgb(240, 240, 240);
  margin: 25px 0;
  border: none;
}

.section-subheader-container {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.section-subheader-container hr {
  width: 40px;
  background-color: #ff923e;
  margin: 0;
  margin-right: 20px;
}

/*Selection*/
::-moz-selection {
  /* Code for Firefox */
  color: #343352;
  background: #93683327;
}

::selection {
  color: #343352;
  background: #9368332a;
}

/**Big button*/
.big-button {
  padding: 13px 34px;
  border-radius: 26px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  width: max-content;
}

/**Small Button*/
.small-button {
  border: 0;
  padding: 9px 36px;
  color: white;
  font: inherit;
  border-radius: 13px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.orange-hover {
  background-color: #ff923e;
  background-image: radial-gradient(
    circle at center,
    #ff9b4f 50%,
    transparent 50%
  );
  background-repeat: no-repeat;
  transition: background-size 300ms;
  background-size: 0 0;
  background-position: 50% 50%;
}

.orange-hover:hover {
  background-size: 200% 200%;
}

.gray-hover {
  background-color: #b9bbbe;
  background-image: radial-gradient(
    circle at center,
    #caccce 50%,
    transparent 50%
  );
  background-repeat: no-repeat;
  transition: background-size 300ms;
  background-size: 0 0;
  background-position: 50% 50%;
}

.gray-hover:hover {
  background-size: 200% 200%;
}

/****************************icons**************************/
.social-icon {
  cursor: pointer;
  filter: grayscale(1) brightness(8);
  transition: 0.125s ease-in;
}

.social-icon:hover {
  filter: unset;
  transform: scale(1.05);
}

/****************************sections**************************/
section {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.content-container {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*------------------------------------------ Responsive -----------------------------*/
@media (max-aspect-ratio: 12/10) {
  .content-width {
    max-width: calc(100% - 30px);
  }
}

@media (max-width: 800px), (max-height: 800px) {
  h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 480px), (max-height: 480px) {
  h1 {
    font-size: 3rem;
  }
}

/* electrolize-regular - latin */
@font-face {
  font-family: "Electrolize";
  font-style: normal;
  font-weight: 400;
  src:
    url("/assets/portfolio/fonts/c14a304d12898fe7.woff2") format("woff2"),
    url("/assets/portfolio/fonts/8e32b846f66b6378.woff") format("woff"),
    url("/assets/portfolio/fonts/3a0b3faf63af040c.ttf") format("truetype");
  font-display: swap;
}

/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/portfolio/fonts/916d3686010a8de2.woff2") format("woff2");
  font-display: swap;
}

/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/portfolio/fonts/7777133e901cd5ed.woff2") format("woff2");
  font-display: swap;
}

/* poppins-600 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/portfolio/fonts/d869208648ca5469.woff2") format("woff2");
  font-display: swap;
}

/* 3D Mesh Tooltip */
.mesh-tooltip {
  position: fixed;
  z-index: 100;
  pointer-events: none;
  background: rgba(9, 20, 52, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(9, 20, 52, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -130%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.mesh-tooltip.hide {
  display: none !important;
  opacity: 0;
  transform: translate(-50%, -110%) scale(0.9);
}

/* Easter Egg Exploration Tracker */
.easter-egg-tracker {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(9, 20, 52, 0.08);
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #091434;
  box-shadow: 0 4px 16px rgba(9, 20, 52, 0.06);
  pointer-events: none;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.easter-egg-tracker.celebrate {
  animation: trackerBounce 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes trackerBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 20px rgba(255, 146, 62, 0.4);
  }
}

@media (max-aspect-ratio: 12/10), (max-width: 768px) {
  .easter-egg-tracker {
    display: none;
  }
}

/* Music Player Capsule */
.music-player-capsule {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(9, 20, 52, 0.08);
  border-radius: 20px;
  padding: 6px 12px;
  box-shadow: 0 4px 16px rgba(9, 20, 52, 0.06);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 250ms ease,
    transform 250ms ease;
  white-space: nowrap;
}

#sound-button-scale-container:hover .music-player-capsule,
#sound-button:focus-within + .music-player-capsule {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.music-meta {
  display: flex;
  flex-direction: column;
}

.music-track-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: #091434;
  line-height: 1.1;
}

.music-track-status {
  font-size: 0.68rem;
  color: #7c8594;
}

@media (max-width: 600px) {
  .music-player-capsule {
    display: none;
  }
}

/* Hotkeys Modal */
.hotkeys-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 220ms ease;
}

.hotkeys-modal.hide {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.hotkeys-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 52, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hotkeys-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(9, 20, 52, 0.25);
  z-index: 1;
}

.hotkeys-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hotkeys-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #091434;
}

.hotkeys-close-btn {
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  color: #9ba3af;
  cursor: pointer;
  line-height: 1;
}

.hotkeys-close-btn:hover {
  color: #091434;
}

.hotkeys-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotkey-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: #4b5563;
}

.hotkey-row kbd {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-bottom: 2px solid #9ca3af;
  border-radius: 6px;
  padding: 2px 7px;
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f2937;
}

/* CLI Terminal Floating Drawer */
.cli-terminal {
  position: fixed;
  bottom: 24px;
  right: 28px;
  width: 460px;
  max-width: calc(100vw - 40px);
  background: rgba(13, 17, 23, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 998;
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  transition:
    transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 250ms ease;
}

.cli-terminal.hide {
  display: none !important;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
}

.cli-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cli-dots {
  display: flex;
  gap: 6px;
}

.cli-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cli-dot.red {
  background: #ff5f56;
}
.cli-dot.yellow {
  background: #ffbd2e;
}
.cli-dot.green {
  background: #27c93f;
}

.cli-title {
  font-size: 0.72rem;
  color: #8b949e;
}

.cli-close-btn {
  background: transparent;
  border: 0;
  color: #8b949e;
  cursor: pointer;
  font-size: 0.9rem;
}

.cli-close-btn:hover {
  color: #ffffff;
}

.cli-output {
  max-height: 160px;
  overflow-y: auto;
  padding: 10px 14px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #c9d1d9;
}

.cli-line {
  margin: 3px 0;
}

.cli-highlight {
  color: #58a6ff;
  font-weight: 600;
}

.cli-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cli-prompt {
  font-size: 0.78rem;
  color: #7ee787;
  white-space: nowrap;
}

.cli-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: 0.82rem;
  color: #ffffff;
}

/* Work Filter Buttons */
.work-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.work-filter-btn {
  background: rgba(9, 20, 52, 0.04);
  border: 1px solid rgba(9, 20, 52, 0.08);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5d6778;
  cursor: pointer;
  transition: all 180ms ease;
}

.work-filter-btn:hover {
  background: rgba(255, 146, 62, 0.12);
  border-color: #ff923e;
  color: #ff7e1e;
}

.work-filter-btn.is-active {
  background: #ff923e;
  border-color: #ff923e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 146, 62, 0.35);
}
