:root {
  --primary-bg: #121212;
  --primary-text: #FFFFFF;
  --secondary-text: #CCCCCC;
  --border-color: #222222;
  --container-bg: #111111;
  --accent: #444444;
  --heading-color: #CCCCCC;
  --font-family: 'Jersey 15', Ubuntu, Inter, sans-serif;
  --shadow-color-1: rgba(0, 0, 0, 1);
  --shadow-color-2: rgba(0, 0, 0, 0.98);
  --shadow-color-3: rgba(0, 0, 0, 0.95);
  --shadow-color-4: rgba(0, 0, 0, 0.92);
  --shadow-color-5: rgba(0, 0, 0, 0.9);
  --shadow-color-6: rgba(0, 0, 0, 1);
}

#loading-screen {
  position: fixed;
  background-color: var(--primary-bg);
  z-index: 1000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.loading-screen-enhanced {
  background: radial-gradient(ellipse at center,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(0, 0, 0, 0.9) 70%,
      rgba(0, 0, 0, 1) 100%), var(--primary-bg);
  animation: loadingScreenPulse 4s ease-in-out infinite;
}

@keyframes loadingScreenPulse {

  0%,
  100% {
    background-size: 100% 100%;
    opacity: 1;
  }

  50% {
    background-size: 110% 110%;
    opacity: 0.95;
  }
}

.loading-content-enhanced {
  position: relative;
  border-radius: 50%;
}

.loading-spinner-border {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #FFFFFF;
  animation: loadingSpinEnhanced 2s linear infinite,
    loadingGlow 3s ease-in-out infinite;
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

@keyframes loadingSpinEnhanced {
  0% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }

  25% {
    transform: rotate(90deg) scale(1.05) translateZ(0);
  }

  50% {
    transform: rotate(180deg) scale(1) translateZ(0);
  }

  75% {
    transform: rotate(270deg) scale(1.05) translateZ(0);
  }

  100% {
    transform: rotate(360deg) scale(1) translateZ(0);
  }
}

@keyframes loadingGlow {

  0%,
  100% {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.3),
      0 0 40px rgba(255, 255, 255, 0.2),
      0 0 60px rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow:
      0 0 30px rgba(255, 255, 255, 0.6),
      0 0 60px rgba(255, 255, 255, 0.4),
      0 0 90px rgba(255, 255, 255, 0.2);
  }
}


.loading-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.loading-particle {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

@keyframes particleOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--orbit-angle)));
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 360deg)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--orbit-angle) - 360deg));
    opacity: 0.3;
  }
}

.loading-energy-ring {
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}

@keyframes energyRingPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }
}


.loading-screen-violent-expansion {
  animation: violentExpansion 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  transform-origin: center;
  will-change: transform, opacity;
}

@keyframes violentExpansion {
  0% {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }

  15% {
    transform: scale(1.5) translateZ(0);
    opacity: 0.9;
  }

  30% {
    transform: scale(3) translateZ(0);
    opacity: 0.8;
  }

  50% {
    transform: scale(6) translateZ(0);
    opacity: 0.6;
  }

  70% {
    transform: scale(12) translateZ(0);
    opacity: 0.4;
  }

  85% {
    transform: scale(20) translateZ(0);
    opacity: 0.2;
  }

  100% {
    transform: scale(30) translateZ(0);
    opacity: 0;
  }
}



.expansion-shockwave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.6) 20%,
      rgba(255, 255, 255, 0.3) 40%,
      rgba(255, 255, 255, 0.1) 60%,
      transparent 80%);
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.expansion-shockwave.shockwave-expand {
  animation: expansionShockwave 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes expansionShockwave {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(255, 255, 255, 0.6),
      0 0 80px rgba(255, 255, 255, 0.4);
  }

  20% {
    width: 200px;
    height: 200px;
    opacity: 0.9;
    box-shadow:
      0 0 40px rgba(255, 255, 255, 0.9),
      0 0 80px rgba(255, 255, 255, 0.7),
      0 0 120px rgba(255, 255, 255, 0.5);
  }

  50% {
    width: 600px;
    height: 600px;
    opacity: 0.7;
    box-shadow:
      0 0 80px rgba(255, 255, 255, 0.8),
      0 0 160px rgba(255, 255, 255, 0.6),
      0 0 240px rgba(255, 255, 255, 0.4);
  }

  80% {
    width: 1200px;
    height: 1200px;
    opacity: 0.4;
    box-shadow:
      0 0 120px rgba(255, 255, 255, 0.5),
      0 0 240px rgba(255, 255, 255, 0.3),
      0 0 360px rgba(255, 255, 255, 0.2);
  }

  100% {
    width: 2000px;
    height: 2000px;
    opacity: 0;
    box-shadow:
      0 0 160px rgba(255, 255, 255, 0.3),
      0 0 320px rgba(255, 255, 255, 0.2),
      0 0 480px rgba(255, 255, 255, 0.1);
  }
}


#mobile-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-bg);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#mobile-warning.show {
  opacity: 1;
}

#mobile-warning-content {
  text-align: center;
  max-width: 90%;
  padding: 5vh;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.6vh;
  box-shadow: 0 1vh 4.2vh rgba(0, 0, 0, 0.3);
}

#mobile-warning .warning-icon {
  font-size: 8.5vh;
  color: var(--primary-text);
  margin-bottom: 2.6vh;
  opacity: 0.8;
}

#mobile-warning h2 {
  font-family: var(--font-family);
  font-size: 4.2vh;
  color: var(--primary-text);
  margin: 0 0 2.1vh 0;
  font-weight: 600;
}

#mobile-warning p {
  font-family: var(--font-family);
  font-size: 2.1vh;
  color: var(--secondary-text);
  line-height: 1.6;
  margin: 0 0 4vh 0;
}

#continue-anyway-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-text);
  padding: 1.6vh 3.2vh;
  border-radius: 1.6vh;
  font-family: var(--font-family);
  font-size: 2.1vh;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#continue-anyway-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-0.26vh);
  box-shadow: 0 0.53vh 2.6vh rgba(0, 0, 0, 0.3);
}

#continue-anyway-btn:active {
  transform: translateY(-0.13vh) scale(0.98);
  transition: all 0.1s ease;
}


#notification-container {
  position: fixed;
  top: 2.6vh;
  right: 2.6vh;
  z-index: 999998;
  display: flex;
  flex-direction: column;
  gap: 1.6vh;
  pointer-events: none;
}

.notification {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.6vh;
  padding: 2.1vh 2.6vh;
  min-width: 40vh;
  max-width: 50vh;
  box-shadow:
    0 1vh 4.2vh rgba(0, 0, 0, 0.3),
    0 0.26vh 1.1vh rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    height 0.3s ease,
    margin-bottom 0.3s ease,
    padding-top 0.3s ease,
    padding-bottom 0.3s ease,
    border-width 0.3s ease;
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  height: auto;
  margin-bottom: 0;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.hide {
  transform: translateX(120%);
  opacity: 0;
}

.notification.collapse {
  height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  border-width: 0 !important;
  min-height: 0 !important;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.1vh;
}

.notification-title {
  font-family: var(--font-family);
  font-size: 2.1vh;
  font-weight: 600;
  color: var(--primary-text);
  margin: 0;
  line-height: 1.3;
}

.notification-close {
  background: none;
  border: none;
  color: var(--secondary-text);
  cursor: pointer;
  font-size: 2.4vh;
  line-height: 1;
  padding: 0;
  margin-left: 1.6vh;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  color: var(--primary-text);
}

.notification-description {
  font-family: var(--font-family);
  font-size: 1.8vh;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.4;
}

.notification-progress-container {
  position: absolute;
  bottom: 1.1vh;
  left: 2.1vh;
  right: 2.1vh;
  height: 0.6vh;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.8vh;
  overflow: hidden;
}

.notification-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(101, 103, 101, 0.9) 0%,
      rgba(152, 156, 152, 0.8) 50%,
      rgba(198, 201, 200, 0.6) 100%);
  border-radius: 0.8vh;
  width: 100%;
  transform-origin: left;
  animation: notificationProgress 8s linear forwards;
  box-shadow: 0 0 1.6vh rgba(34, 197, 94, 0.3);
}

@keyframes notificationProgress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.notification:hover .notification-progress {
  animation-play-state: paused;
}

.notification:hover {
  transform: translateX(-0.53vh);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 1.6vh 5.3vh rgba(0, 0, 0, 0.4),
    0 0.53vh 2.1vh rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

#test-notification-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-0.26vh) !important;
  box-shadow: 0 0.53vh 2.6vh rgba(0, 0, 0, 0.3) !important;
}

#test-notification-btn:active {
  transform: translateY(-0.13vh) scale(0.98) !important;
  transition: all 0.1s ease !important;
}

html,
body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

body {
  background-color: var(--primary-bg);
  color: var(--primary-text);
  font-family: var(--font-family);
  font-size: 2.1vh;
  line-height: 1.5;
  font-weight: 400;
  overflow: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#greeting-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

#first-name {
  font-size: 20vh;
  color: var(--primary-text);
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

#last-name {
  font-size: 20vh;
  color: var(--primary-text);
  font-family: var(--font-family);
  margin: -20vh 0 0 0;
  padding: 0;
  position: relative;
  z-index: 3;
  text-shadow:
    0 3.3vh 10vh var(--shadow-color-1),
    0 2vh 6vh var(--shadow-color-2),
    0 1.1vh 3.2vh var(--shadow-color-3),
    0 0.53vh 1.6vh var(--shadow-color-4),
    0 0.26vh 0.8vh var(--shadow-color-5),
    0 0.13vh 0.4vh var(--shadow-color-6);
}

#greeting-text {
  font-size: 3.2vh;
  color: var(--secondary-text);
  font-family: var(--font-family);
  margin: -3.2vh;
  padding: 0;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}


.name-slam-entrance {
  animation: dramaticNameSlam 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  transform-origin: center;
  will-change: transform, opacity;
}

@keyframes dramaticNameSlam {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(8) rotate(-15deg) translateZ(0);
  }

  15% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(6) rotate(-10deg) translateZ(0);
  }

  30% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(4) rotate(-5deg) translateZ(0);
  }

  60% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.8) rotate(2deg) translateZ(0);
  }

  75% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7) rotate(-1deg) translateZ(0);
  }

  85% {
    transform: translate(-50%, -50%) scale(1.1) rotate(0.5deg) translateZ(0);
  }

  95% {
    transform: translate(-50%, -50%) scale(0.95) translateZ(0);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateZ(0);
  }
}

.name-slam-settle {
  animation: nameSettle 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes nameSettle {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02) translateY(-2px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

.greeting-fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


.name-animation-complete {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) scale(1) !important;
  filter: none !important;
}


.screen-shake {
  animation: violentScreenShake 2.5s ease-out;
}

@keyframes violentScreenShake {

  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  2% {
    transform: translate(-12px, 8px) rotate(-1deg);
  }

  4% {
    transform: translate(18px, -14px) rotate(2deg);
  }

  6% {
    transform: translate(-15px, 12px) rotate(-1.5deg);
  }

  8% {
    transform: translate(22px, -8px) rotate(1.8deg);
  }

  10% {
    transform: translate(-18px, 15px) rotate(-2deg);
  }

  12% {
    transform: translate(20px, -12px) rotate(1.5deg);
  }

  14% {
    transform: translate(-16px, 10px) rotate(-1.2deg);
  }

  16% {
    transform: translate(14px, -18px) rotate(1.8deg);
  }

  18% {
    transform: translate(-20px, 16px) rotate(-1.6deg);
  }

  20% {
    transform: translate(12px, -10px) rotate(1.2deg);
  }

  22% {
    transform: translate(-8px, 12px) rotate(-0.8deg);
  }

  24% {
    transform: translate(10px, -8px) rotate(1deg);
  }

  26% {
    transform: translate(-6px, 8px) rotate(-0.6deg);
  }

  28% {
    transform: translate(8px, -6px) rotate(0.8deg);
  }

  30% {
    transform: translate(-4px, 6px) rotate(-0.4deg);
  }

  35% {
    transform: translate(4px, -4px) rotate(0.4deg);
  }

  40% {
    transform: translate(-2px, 3px) rotate(-0.2deg);
  }

  50% {
    transform: translate(2px, -2px) rotate(0.2deg);
  }

  60% {
    transform: translate(-1px, 1px) rotate(-0.1deg);
  }

  70% {
    transform: translate(1px, -1px) rotate(0.1deg);
  }

  80% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}


.name-shockwave {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.4) 30%,
      rgba(255, 255, 255, 0.1) 60%,
      transparent 100%);
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.shockwave-expand {
  animation: shockwaveExpansion 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes shockwaveExpansion {
  0% {
    width: 0;
    height: 0;
    opacity: 0.9;
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(255, 255, 255, 0.6),
      0 0 80px rgba(255, 255, 255, 0.4);
  }

  20% {
    width: 100px;
    height: 100px;
    opacity: 0.8;
    box-shadow:
      0 0 40px rgba(255, 255, 255, 0.9),
      0 0 80px rgba(255, 255, 255, 0.7),
      0 0 120px rgba(255, 255, 255, 0.5);
  }

  50% {
    width: 300px;
    height: 300px;
    opacity: 0.6;
    box-shadow:
      0 0 60px rgba(255, 255, 255, 0.7),
      0 0 120px rgba(255, 255, 255, 0.5),
      0 0 180px rgba(255, 255, 255, 0.3);
  }

  80% {
    width: 600px;
    height: 600px;
    opacity: 0.3;
    box-shadow:
      0 0 80px rgba(255, 255, 255, 0.4),
      0 0 160px rgba(255, 255, 255, 0.2),
      0 0 240px rgba(255, 255, 255, 0.1);
  }

  100% {
    width: 1000px;
    height: 1000px;
    opacity: 0;
    box-shadow:
      0 0 100px rgba(255, 255, 255, 0.2),
      0 0 200px rgba(255, 255, 255, 0.1),
      0 0 300px rgba(255, 255, 255, 0.05);
  }
}

#about h1 {
  font-size: 13.3vh;
  color: var(--primary-text);
  font-family: var(--font-family);
}

#about {
  min-height: 100vh;
  width: 100%;
  color: var(--primary-text);
  background-color: var(--primary-bg);
  font-family: var(--font-family);
  font-size: 2.1vh;
  line-height: 1.5;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

#launcher {
  position: fixed;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 40vh;
  height: 8.7vh;
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(2.6vh);
  -webkit-backdrop-filter: blur(2.6vh);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 1.1vh 4.2vh rgba(0, 0, 0, 0.3);
  border-radius: 2.6vh;
  z-index: 100;
  pointer-events: auto;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.1vh;
  padding: 0 2.1vh;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
}

.launcher-vaporize-in {
  animation: launcherVaporizeIn 1.5s ease-out forwards;
}

@keyframes launcherVaporizeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
    filter: blur(10px);
  }

  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.05);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: blur(0px);
  }
}

.notification-clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.notification-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

#launcher:hover {
  transform: translateX(-50%) translateY(-0.26vh);
  box-shadow: 0 1.6vh 5.3vh rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.7vh;
  height: 6.7vh;
  border-radius: 1.6vh;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
}

.app-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-0.26vh) scale(1.05);
  box-shadow: 0 0.53vh 2.6vh rgba(0, 0, 0, 0.3);
}

.app-icon:active {
  transform: translateY(-0.13vh) scale(0.98);
  transition: all 0.1s ease;
}

.app-icon.active {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: scale(0.95);
}

.icon-content {
  font-size: 2.6vh;
  margin-bottom: 0.26vh;
  filter: drop-shadow(0 0.13vh 0.26vh rgba(0, 0, 0, 0.5));
}

.app-label {
  font-size: 1.2vh;
  color: var(--secondary-text);
  font-family: var(--font-family);
  text-align: center;
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 0.13vh 0.26vh rgba(0, 0, 0, 0.8);
}


.folder-icon {
  position: relative;
}

.folder-popup {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background-color: rgba(17, 17, 17, 1);
  backdrop-filter: blur(2.6vh);
  -webkit-backdrop-filter: blur(2.6vh);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 1.1vh 4.2vh rgba(0, 0, 0, 0.3);
  border-radius: 2.6vh;
  z-index: 100;
  padding: 0 2.1vh;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  height: 8.7vh;
}

.folder-popup.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.folder-content {
  display: flex;
  flex-direction: row;
  gap: 1.1vh;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.folder-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.7vh;
  height: 6.7vh;
  border-radius: 1.6vh;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  position: relative;
}

.folder-app:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-0.26vh) scale(1.05);
  box-shadow: 0 0.53vh 2.6vh rgba(0, 0, 0, 0.3);
}

.folder-app:active {
  transform: translateY(-0.13vh) scale(0.98);
  transition: all 0.1s ease;
}

.folder-app-icon {
  font-size: 2.6vh;
  margin-bottom: 0.26vh;
  filter: drop-shadow(0 0.13vh 0.26vh rgba(0, 0, 0, 0.5));
  color: var(--text-primary);
}

.folder-app:hover .folder-app-icon {
  filter: drop-shadow(0 0.13vh 0.26vh rgba(0, 0, 0, 0.8)) brightness(1.1);
}

.folder-app-label {
  font-size: 1.2vh;
  color: var(--secondary-text);
  font-family: var(--font-family);
  text-align: center;
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 0.13vh 0.26vh rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s ease;
}

.folder-app:hover .folder-app-label {
  color: var(--text-primary);
}

#app-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
}

#app-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#app-container.has-open-apps::before {
  opacity: 1;
  pointer-events: none;
}

.app-window {
  position: absolute;

  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(5.3vh);
  -webkit-backdrop-filter: blur(5.3vh);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.1vh;
  display: none;
  flex-direction: column;
  pointer-events: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.app-window.open {
  display: flex;
  opacity: 1;
  transform: scale(1);
  animation: windowOpen 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes windowOpen {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(2.6vh);
  }

  50% {
    transform: scale(1.02) translateY(-0.67vh);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0vh);
  }
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.1vh 2.6vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2.1vh 2.1vh 0 0;
  cursor: grab;
  user-select: none;
}

.app-header:active {
  cursor: grabbing;
}

.app-title {
  display: flex;
  align-items: center;
  gap: 1.1vh;
  font-family: var(--font-family);
  font-size: 2.1vh;
  font-weight: 600;
  color: var(--primary-text);
}

.app-icon-small {
  font-size: 2.1vh;
}

.close-btn {
  width: 3.7vh;
  height: 3.7vh;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-text);
  font-family: var(--font-family);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6vh;
  cursor: pointer;
  font-size: 2.1vh;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.26vh);
}

.app-content {
  flex: 1;
  padding: 2.6vh;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-content::-webkit-scrollbar {
  width: 0.8vh;
}

.app-content::-webkit-scrollbar-track {
  background: transparent;
}

.app-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.4vh;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33.3vh, 1fr));
  gap: 2.1vh;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6vh;
  padding: 2.1vh;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.26vh);
}

.project-item h3 {
  margin: 0 0 1.1vh 0;
  color: var(--primary-text);
  font-family: var(--font-family);
  font-size: 2.4vh;
}

.project-item p {
  margin: 0 0 1.6vh 0;
  color: var(--secondary-text);
  font-size: 1.9vh;
  line-height: 1.5;
}

.project-links {
  display: flex;
  gap: 1.1vh;
}

.project-link {
  padding: 0.8vh 1.6vh;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-text);
  text-decoration: none;
  border-radius: 1.1vh;
  font-size: 1.6vh;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.13vh);
}

#skill-tags {
  margin-top: 1.3vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1vh;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.53vh 1.1vh;
  border-radius: 0.53vh;
  font-size: 1.6vh;
  color: var(--primary-text);
}

.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.6vh;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6vh;
  padding: 2.6vh;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-item h3 {
  margin: 0 0 0.53vh 0;
  color: var(--primary-text);
  font-family: var(--font-family);
  font-size: 2.4vh;
}

.experience-item .company {
  margin: 0 0 0.53vh 0;
  color: var(--secondary-text);
  font-weight: 600;
  font-size: 1.9vh;
}

.experience-item .duration {
  margin: 0 0 1.6vh 0;
  color: var(--secondary-text);
  font-size: 1.6vh;
  opacity: 0.8;
}

.experience-item .description {
  margin: 0;
  color: var(--secondary-text);
  font-size: 1.9vh;
  line-height: 1.5;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26.7vh, 1fr));
  gap: 2.1vh;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6vh;
  padding: 2.1vh;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.26vh);
}

.cert-item h3 {
  margin: 0 0 1.1vh 0;
  color: var(--primary-text);
  font-family: var(--font-family);
  font-size: 2.1vh;
}

.cert-item .issuer {
  margin: 0 0 0.53vh 0;
  color: var(--secondary-text);
  font-size: 1.9vh;
  font-weight: 600;
}

.cert-item .date {
  margin: 0;
  color: var(--secondary-text);
  font-size: 1.6vh;
  opacity: 0.8;
}

#cert-btn {
  margin-top: 1.3vh;
  text-decoration: none;
  color: var(--secondary-text);
  font-size: 1.6vh;
  font-weight: 600;
  text-align: center;
  display: block;
  width: 100%;
  padding: 1.1vh 0;
  border-radius: 0.53vh;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

#cert-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-text);
  transform: translateY(-0.26vh);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.1vh;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6vh;
  padding: 2.1vh;
  display: flex;
  align-items: center;
  gap: 1.6vh;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item strong {
  color: var(--primary-text);
  font-family: var(--font-family);
  min-width: 10.7vh;
}

.contact-item a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--primary-text);
}

.resize-handle {
  position: absolute;
  background: transparent;
  z-index: 10;
}

.resize-handle:hover {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 2vh;
  transition: background 0.2s ease;
}

.resize-nw {
  top: -0.67vh;
  left: -0.67vh;
  width: 2vh;
  height: 2vh;
  cursor: nw-resize;
  border-radius: 2.1vh 0 0 0;
}

.resize-ne {
  top: -0.67vh;
  right: -0.67vh;
  width: 2vh;
  height: 2vh;
  cursor: ne-resize;
  border-radius: 0 2.1vh 0 0;
}

.resize-sw {
  bottom: -0.67vh;
  left: -0.67vh;
  width: 2vh;
  height: 2vh;
  cursor: sw-resize;
  border-radius: 0 0 0 2.1vh;
}

.resize-se {
  bottom: -0.67vh;
  right: -0.67vh;
  width: 2vh;
  height: 2vh;
  cursor: se-resize;
  border-radius: 0 0 2.1vh 0;
}

.resize-n {
  top: -0.67vh;
  left: 2vh;
  right: 2vh;
  height: 1.3vh;
  cursor: n-resize;
}

.resize-s {
  bottom: -0.67vh;
  left: 2vh;
  right: 2vh;
  height: 1.3vh;
  cursor: s-resize;
}

.resize-w {
  left: -0.67vh;
  top: 2vh;
  bottom: 2vh;
  width: 1.3vh;
  cursor: w-resize;
}

.resize-e {
  right: -0.67vh;
  top: 2vh;
  bottom: 2vh;
  width: 1.3vh;
  cursor: e-resize;
}

.app-window.dragging {
  transform: none !important;
}

.app-window.resizing {
  transform: none !important;
}

#app-container:not(.has-open-apps)::before {
  display: none;
}


.settings-container {
  display: flex;
  flex-direction: column;
  gap: 3.2vh;
}

.settings-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6vh;
  padding: 2.6vh;
}

.settings-section h3 {
  margin: 0 0 2.1vh 0;
  color: var(--primary-text);
  font-family: var(--font-family);
  font-size: 2.4vh;
  font-weight: 600;
}

.setting-item {
  display: flex;
  flex-direction: column;
  gap: 1.1vh;
  margin-bottom: 2.1vh;
}

.setting-item:last-child {
  margin-bottom: 0;
}

.setting-item label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--secondary-text);
  font-family: var(--font-family);
  font-size: 1.9vh;
  font-weight: 500;
  flex-direction: column;
  gap: 0.5vh;
}

.setting-main-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--primary-text);
  font-weight: 600;
}

.setting-description {
  font-size: 1.6vh;
  color: var(--secondary-text);
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.3;
}

.performance-toggle-item {
  flex-direction: row !important;
  align-items: center !important;
}

.setting-labels {
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
  flex: 1;
}

.performance-toggle-item .setting-main-label {
  width: auto;
}


.custom-toggle {
  position: relative;
  display: inline-block;
  width: 6vh;
  height: 3.2vh;
  margin-left: 2vh;
  cursor: pointer;
}

.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.6vh;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(1vh);
  -webkit-backdrop-filter: blur(1vh);
}

.toggle-thumb {
  position: absolute;
  height: 2.4vh;
  width: 2.4vh;
  left: 0.26vh;
  top: 0.26vh;
  background: var(--primary-text);
  border-radius: 1.2vh;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.26vh 0.8vh rgba(0, 0, 0, 0.3);
}

.toggle-input:checked+.toggle-slider {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 1.6vh rgba(34, 197, 94, 0.3);
}

.toggle-input:checked+.toggle-slider .toggle-thumb {
  transform: translateX(2.8vh);
  background: rgb(34, 197, 94);
  box-shadow: 0 0.26vh 0.8vh rgba(34, 197, 94, 0.4);
}

.custom-toggle:hover .toggle-slider {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.custom-toggle:hover .toggle-input:checked+.toggle-slider {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.8);
}

.setting-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 0.8vh;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.4vh;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.setting-slider:hover {
  background: rgba(255, 255, 255, 0.15);
}

.setting-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 4vh;
  height: 2.4vh;
  background: var(--primary-text);
  border-radius: 1.2vh;
  cursor: pointer;
  box-shadow: 0 0.26vh 1.1vh rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.setting-slider::-webkit-slider-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 0.53vh 1.6vh rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.setting-slider::-webkit-slider-thumb:active {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: scale(0.95);
  box-shadow: inset 0 0.26vh 0.8vh rgba(0, 0, 0, 0.2);
}

.setting-slider::-moz-range-thumb {
  width: 4vh;
  height: 2.4vh;
  background: var(--primary-text);
  border-radius: 1.2vh;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0.26vh 1.1vh rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.setting-slider::-moz-range-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 0.53vh 1.6vh rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.setting-slider::-moz-range-thumb:active {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: scale(0.95);
  box-shadow: inset 0 0.26vh 0.8vh rgba(0, 0, 0, 0.2);
}

.settings-actions {
  display: flex;
  gap: 1.6vh;
  justify-content: center;
  margin-top: 1.1vh;
}

.settings-btn {
  display: flex;
  align-items: center;
  gap: 1.1vh;
  padding: 1.6vh 2.6vh;
  border: none;
  border-radius: 1.6vh;
  font-family: var(--font-family);
  font-size: 1.9vh;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  justify-content: center;
}

.save-btn {
  background: rgba(34, 197, 94, 0.15);
  color: rgb(34, 197, 94);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.save-btn:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-0.26vh);
  box-shadow: 0 0.53vh 2.6vh rgba(34, 197, 94, 0.2);
}

.reset-btn {
  background: rgba(239, 68, 68, 0.15);
  color: rgb(239, 68, 68);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.reset-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-0.26vh);
  box-shadow: 0 0.53vh 2.6vh rgba(239, 68, 68, 0.2);
}

.settings-btn:active {
  transform: translateY(-0.13vh) scale(0.98);
  transition: all 0.1s ease;
}


.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1vh;
  margin-top: 1.6vh;
}

@media (max-width: 1200px) {
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .theme-grid {
    grid-template-columns: 1fr;
  }
}

.theme-preview-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6vh;
  padding: 1.6vh;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1vh;
  min-height: 12vh;
}

.theme-preview-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-0.26vh);
  box-shadow: 0 0.8vh 3.2vh rgba(0, 0, 0, 0.3);
}

.theme-preview-btn.active {
  border-color: rgba(34, 197, 94, 0.8);
  background: rgba(34, 197, 94, 0.1);
}

.theme-preview {
  width: 100%;
  height: 6vh;
  border-radius: 0.8vh;
  position: relative;
  overflow: hidden;
}

.preview-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.preview-window {
  position: absolute;
  top: 0.8vh;
  left: 0.8vh;
  right: 0.8vh;
  bottom: 0.8vh;
  border-radius: 0.4vh;
  overflow: hidden;
}

.preview-header {
  height: 1.6vh;
  width: 100%;
}

.preview-content {
  height: 100%;
  width: 100%;
  opacity: 0.6;
}

.theme-name {
  font-family: var(--font-family);
  font-size: 1.8vh;
  font-weight: 600;
  color: var(--primary-text);
  text-align: center;
}

.theme-check {
  position: absolute;
  top: 1vh;
  right: 1vh;
  color: rgb(34, 197, 94);
  font-size: 1.6vh;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.theme-preview-btn.active .theme-check {
  opacity: 1;
}


.dark-preview .preview-bg {
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
}

.dark-preview .preview-header {
  background: linear-gradient(90deg, #333 0%, #444 100%);
}

.dark-preview .preview-content {
  background: #111111;
}

.light-preview .preview-bg {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
}

.light-preview .preview-header {
  background: linear-gradient(90deg, #E0E0E0 0%, #D0D0D0 100%);
}

.light-preview .preview-content {
  background: #F8F8F8;
}

.ice-blue-preview .preview-bg {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
}

.ice-blue-preview .preview-header {
  background: linear-gradient(90deg, rgba(33, 150, 243, 0.3) 0%, rgba(33, 150, 243, 0.5) 100%);
}

.ice-blue-preview .preview-content {
  background: rgba(227, 242, 253, 0.6);
}



.blood-red-preview .preview-bg {
  background: linear-gradient(135deg, #2C0A0A 0%, #4A0E0E 50%, #1F0707 100%);
}

.blood-red-preview .preview-header {
  background: linear-gradient(90deg, #8B2635 0%, #C53030 100%);
}

.blood-red-preview .preview-content {
  background: rgba(44, 10, 10, 0.6);
}

.blood-red-preview .preview-window {
  border: 2px solid #8B2635;
  box-shadow: inset 0 0 15px rgba(139, 38, 53, 0.3);
}

.milk-preview .preview-bg {
  background: linear-gradient(135deg, #FADADD 0%, #FFB8B2 50%, #FF55E4 100%);
}

.milk-preview .preview-header {
  background: linear-gradient(90deg, #D4A1A4 0%, #FF55E4 100%);
}

.milk-preview .preview-content {
  background: rgba(250, 218, 221, 0.6);
}

.milk-preview .preview-window {
  border: 2px solid #D4A1A4;
  box-shadow: inset 0 0 15px rgba(162, 103, 105, 0.3);
}

.salty-preview .preview-bg {
  background: linear-gradient(135deg, #D8E3E7 0%, #BEDADC 50%, #89A6A8 100%);
}

.salty-preview .preview-header {
  background: linear-gradient(90deg, #89A6A8 0%, #496A74 100%);
}

.salty-preview .preview-content {
  background: rgba(216, 227, 231, 0.6);
}

.salty-preview .preview-window {
  border: 2px solid #89A6A8;
  box-shadow: inset 0 0 15px rgba(73, 106, 116, 0.3);
}

.brutalist-preview .preview-bg {
  background: #FFFFFF;
}

.brutalist-preview .preview-header {
  background: #000000;
}

.brutalist-preview .preview-content {
  background: #FFFFFF;
}

.brutalist-preview .preview-window {
  border: 3px solid #000000;
  border-radius: 0;
}

.steampunk-preview .preview-bg {
  background: linear-gradient(145deg, #2F1B14 0%, #1A0F0A 100%);
}

.steampunk-preview .preview-header {
  background: linear-gradient(90deg, #B87333 0%, #D2B48C 100%);
}

.steampunk-preview .preview-content {
  background: rgba(184, 115, 51, 0.1);
}

.steampunk-preview .preview-window {
  border: 2px solid #B87333;
  box-shadow: inset 0 0 10px rgba(184, 115, 51, 0.3);
}

.phthalo-green-preview .preview-bg {
  background: linear-gradient(135deg, #16191E 0%, #104837 50%, #194135 100%);
}

.phthalo-green-preview .preview-header {
  background: linear-gradient(90deg, #163F35 0%, #104837 100%);
}

.phthalo-green-preview .preview-content {
  background: rgba(22, 25, 30, 0.8);
}

.phthalo-green-preview .preview-window {
  border: 2px solid #163F35;
  box-shadow: inset 0 0 15px rgba(22, 63, 53, 0.3);
}


:root[data-theme="dark"] {
  --primary-bg: #121212;
  --primary-text: #FFFFFF;
  --secondary-text: #CCCCCC;
  --border-color: #222222;
  --container-bg: #111111;
  --accent: #444444;
  --heading-color: #CCCCCC;
  --shadow-color-1: rgba(0, 0, 0, 1);
  --shadow-color-2: rgba(0, 0, 0, 0.98);
  --shadow-color-3: rgba(0, 0, 0, 0.95);
  --shadow-color-4: rgba(0, 0, 0, 0.92);
  --shadow-color-5: rgba(0, 0, 0, 0.9);
  --shadow-color-6: rgba(0, 0, 0, 1);
}

:root[data-theme="light"] {
  --primary-bg: #FFFFFF;
  --primary-text: #1A1A1A;
  --secondary-text: #666666;
  --border-color: #E0E0E0;
  --container-bg: #F8F8F8;
  --accent: #E0E0E0;
  --heading-color: #333333;
  --shadow-color-1: rgba(200, 200, 200, 0.8);
  --shadow-color-2: rgba(180, 180, 180, 0.7);
  --shadow-color-3: rgba(160, 160, 160, 0.6);
  --shadow-color-4: rgba(140, 140, 140, 0.5);
  --shadow-color-5: rgba(120, 120, 120, 0.4);
  --shadow-color-6: rgba(200, 200, 200, 0.8);
}

:root[data-theme="ice-blue"] {
  --primary-bg: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
  --primary-text: #0D47A1;
  --secondary-text: #1565C0;
  --border-color: rgba(33, 150, 243, 0.3);
  --container-bg: rgba(227, 242, 253, 0.6);
  --accent: rgba(33, 150, 243, 0.2);
  --heading-color: #0D47A1;
  --shadow-color-1: rgba(33, 150, 243, 0.8);
  --shadow-color-2: rgba(33, 150, 243, 0.7);
  --shadow-color-3: rgba(33, 150, 243, 0.6);
  --shadow-color-4: rgba(33, 150, 243, 0.5);
  --shadow-color-5: rgba(33, 150, 243, 0.4);
  --shadow-color-6: rgba(33, 150, 243, 0.8);
}



:root[data-theme="brutalist"] {
  --primary-bg: #FFFFFF;
  --primary-text: #000000;
  --secondary-text: #333333;
  --border-color: #000000;
  --container-bg: #FFFFFF;
  --accent: #FF0000;
  --heading-color: #000000;
  --shadow-color-1: rgba(0, 0, 0, 1);
  --shadow-color-2: rgba(0, 0, 0, 0.9);
  --shadow-color-3: rgba(0, 0, 0, 0.8);
  --shadow-color-4: rgba(0, 0, 0, 0.7);
  --shadow-color-5: rgba(0, 0, 0, 0.6);
  --shadow-color-6: rgba(0, 0, 0, 1);
}

:root[data-theme="steampunk"] {
  --primary-bg: linear-gradient(145deg, #2F1B14 0%, #1A0F0A 100%);
  --primary-text: #D2B48C;
  --secondary-text: #CD7F32;
  --border-color: #B87333;
  --container-bg: rgba(184, 115, 51, 0.1);
  --accent: #DAA520;
  --heading-color: #D2B48C;
  --shadow-color-1: rgba(184, 115, 51, 0.9);
  --shadow-color-2: rgba(205, 127, 50, 0.8);
  --shadow-color-3: rgba(184, 115, 51, 0.7);
  --shadow-color-4: rgba(205, 127, 50, 0.6);
  --shadow-color-5: rgba(184, 115, 51, 0.5);
  --shadow-color-6: rgba(205, 127, 50, 0.9);
}

:root[data-theme="blood-red"] {
  --primary-bg: linear-gradient(135deg, #2C0A0A 0%, #4A0E0E 50%, #1F0707 100%);
  --primary-text: #F5E6E6;
  --secondary-text: #D4A5A5;
  --border-color: #8B2635;
  --container-bg: rgba(44, 10, 10, 0.6);
  --accent: #C53030;
  --heading-color: #F5E6E6;
  --font-family: 'Jersey 15', Ubuntu, Inter, sans-serif;
  --shadow-color-1: rgba(139, 38, 53, 0.9);
  --shadow-color-2: rgba(139, 38, 53, 0.8);
  --shadow-color-3: rgba(139, 38, 53, 0.7);
  --shadow-color-4: rgba(139, 38, 53, 0.6);
  --shadow-color-5: rgba(139, 38, 53, 0.5);
  --shadow-color-6: rgba(139, 38, 53, 0.9);
}

:root[data-theme="milk"] {
  --primary-bg: linear-gradient(135deg, #FADADD 0%, #FFB8B2 50%, #FF55E4 100%);
  --primary-text: #A26769;
  --secondary-text: #8B5456;
  --border-color: #D4A1A4;
  --container-bg: rgba(250, 218, 221, 0.6);
  --accent: #FF55E4;
  --heading-color: #A26769;
  --font-family: 'Jersey 15', Ubuntu, Inter, sans-serif;
  --shadow-color-1: rgba(162, 103, 105, 0.9);
  --shadow-color-2: rgba(162, 103, 105, 0.8);
  --shadow-color-3: rgba(162, 103, 105, 0.7);
  --shadow-color-4: rgba(162, 103, 105, 0.6);
  --shadow-color-5: rgba(162, 103, 105, 0.5);
  --shadow-color-6: rgba(162, 103, 105, 0.9);
}

:root[data-theme="salty"] {
  --primary-bg: linear-gradient(135deg, #D8E3E7 0%, #BEDADC 50%, #89A6A8 100%);
  --primary-text: #496A74;
  --secondary-text: #5A7681;
  --border-color: #89A6A8;
  --container-bg: rgba(216, 227, 231, 0.6);
  --accent: #496A74;
  --heading-color: #496A74;
  --font-family: 'Jersey 15', Ubuntu, Inter, sans-serif;
  --shadow-color-1: rgba(73, 106, 116, 0.9);
  --shadow-color-2: rgba(73, 106, 116, 0.8);
  --shadow-color-3: rgba(73, 106, 116, 0.7);
  --shadow-color-4: rgba(73, 106, 116, 0.6);
  --shadow-color-5: rgba(73, 106, 116, 0.5);
  --shadow-color-6: rgba(73, 106, 116, 0.9);
}

:root[data-theme="phthalo-green"] {
  --primary-bg: linear-gradient(135deg, #16191E 0%, #104837 50%, #194135 100%);
  --primary-text: #FFFFFF;
  --secondary-text: #E6E6E6;
  --border-color: #163F35;
  --container-bg: rgba(22, 25, 30, 0.8);
  --accent: #104837;
  --heading-color: #FFFFFF;
  --font-family: 'Jersey 15', Ubuntu, Inter, sans-serif;
  --shadow-color-1: rgba(22, 63, 53, 0.9);
  --shadow-color-2: rgba(22, 63, 53, 0.8);
  --shadow-color-3: rgba(22, 63, 53, 0.7);
  --shadow-color-4: rgba(22, 63, 53, 0.6);
  --shadow-color-5: rgba(22, 63, 53, 0.5);
  --shadow-color-6: rgba(22, 63, 53, 0.9);
}

[data-theme="light"] .app-window {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] #launcher {
  background: rgba(248, 248, 248, 0.9);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .notification {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(4vh);
  -webkit-backdrop-filter: blur(4vh);
  border: 1px solid rgba(0, 0, 0, 0.15);
}




[data-theme="ice-blue"] .app-window,
[data-theme="ice-blue"] #launcher {
  backdrop-filter: blur(8vh) saturate(150%);
  -webkit-backdrop-filter: blur(8vh) saturate(150%);
  background: rgba(227, 242, 253, 0.4);
  border: 1px solid rgba(33, 150, 243, 0.3);
  box-shadow:
    0 2vh 6vh rgba(33, 150, 243, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


[data-theme="brutalist"] .app-window,
[data-theme="brutalist"] #launcher,
[data-theme="brutalist"] .project-item,
[data-theme="brutalist"] .experience-item,
[data-theme="brutalist"] .cert-item,
[data-theme="brutalist"] .contact-item,
[data-theme="brutalist"] .settings-section {
  background: #FFFFFF;
  border: 4px solid #000000;
  border-radius: 0;
  box-shadow: 8px 8px 0px #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-theme="brutalist"] #first-name,
[data-theme="brutalist"] #last-name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="brutalist"] #last-name {
  color: white;
}

[data-theme="brutalist"] .close-btn,
[data-theme="brutalist"] .settings-btn,
[data-theme="brutalist"] .app-icon {
  border: 3px solid #000000;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: 4px 4px 0px #000000;
}

[data-theme="brutalist"] .close-btn:hover,
[data-theme="brutalist"] .settings-btn:hover,
[data-theme="brutalist"] .app-icon:hover {
  background: #FF0000;
  color: #FFFFFF;
  transform: none;
}




[data-theme="steampunk"] .app-window,
[data-theme="steampunk"] #launcher,
[data-theme="steampunk"] .project-item,
[data-theme="steampunk"] .experience-item,
[data-theme="steampunk"] .cert-item,
[data-theme="steampunk"] .contact-item,
[data-theme="steampunk"] .settings-section {
  background: linear-gradient(145deg, #3A2318 0%, #2F1B14 100%);
  border: 3px solid #B87333;
  box-shadow:
    inset 0 0 20px rgba(184, 115, 51, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.5);
}


[data-theme="steampunk"] #first-name,
[data-theme="steampunk"] #last-name {
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(184, 115, 51, 0.3);
}

[data-theme="steampunk"] #greeting-text {
  font-family: 'Times New Roman', serif;
  font-style: italic;
}

[data-theme="steampunk"] .app-header {
  background: linear-gradient(90deg, #B87333 0%, #CD7F32 50%, #B87333 100%);
  border-bottom: 2px solid #DAA520;
  border-radius: 2.1vh 2.1vh 0 0;
  color: #1A0F0A;
  text-shadow: 1px 1px 2px rgba(218, 165, 32, 0.5);
}

[data-theme="steampunk"] .app-title {
  color: #1A0F0A;
  font-weight: bold;
  text-shadow: none;
}

[data-theme="steampunk"] .close-btn,
[data-theme="steampunk"] .settings-btn,
[data-theme="steampunk"] .app-icon {
  background: linear-gradient(145deg, #B87333 0%, #8B4513 100%);
  border: 2px solid #CD7F32;
  color: #1A0F0A;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(205, 127, 50, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(210, 180, 140, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.3);
}

[data-theme="steampunk"] .close-btn:hover,
[data-theme="steampunk"] .settings-btn:hover,
[data-theme="steampunk"] .app-icon:hover {
  background: linear-gradient(145deg, #DAA520 0%, #B8860B 100%);
  border-color: #D2B48C;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 15px rgba(184, 115, 51, 0.5);
  transform: translateY(-1px);
}

[data-theme="steampunk"] .project-link,
[data-theme="steampunk"] .cert-btn {
  background: linear-gradient(90deg, #8B4513 0%, #A0522D 100%);
  border: 1px solid #CD7F32;
  color: #D2B48C;
}

[data-theme="steampunk"] .project-link:hover,
[data-theme="steampunk"] .cert-btn:hover {
  background: linear-gradient(90deg, #B87333 0%, #DAA520 100%);
  color: #1A0F0A;
}


.performance-mode * {
  transition: none !important;
  animation: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .app-window,
.performance-mode #launcher,
.performance-mode .notification {
  background: var(--container-bg) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .app-icon:hover,
.performance-mode .project-item:hover,
.performance-mode .experience-item:hover,
.performance-mode .cert-item:hover,
.performance-mode .theme-preview-btn:hover,
.performance-mode .settings-btn:hover,
.performance-mode .close-btn:hover {
  transform: none !important;
  box-shadow: none !important;
}

.performance-mode #first-name,
.performance-mode #last-name {
  animation: none !important;
  background: var(--primary-text) !important;
  -webkit-text-fill-color: var(--primary-text) !important;
}

.performance-mode .notification-progress {
  animation: none !important;
}

.performance-mode .toggle-slider {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .setting-slider::-webkit-slider-thumb:active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--primary-text) !important;
}

.performance-mode .setting-slider::-moz-range-thumb:active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--primary-text) !important;
}


.performance-mode [data-theme="steampunk"] .close-btn:hover,
.performance-mode [data-theme="steampunk"] .settings-btn:hover,
.performance-mode [data-theme="steampunk"] .app-icon:hover {
  transform: none !important;
}


.research-content {
  padding: 0;
}


.project-item,
.experience-item,
.research-paper,
.cert-item,
.contact-item,
.settings-section {
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.project-item::before,
.experience-item::before,
.research-paper::before,
.cert-item::before,
.contact-item::before,
.settings-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 255, 255, 0.01) 50%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.project-item:hover::before,
.experience-item:hover::before,
.research-paper:hover::before,
.cert-item:hover::before,
.contact-item:hover::before,
.settings-section:hover::before {
  opacity: 1;
}


.project-item>*,
.experience-item>*,
.research-paper>*,
.cert-item>*,
.contact-item>*,
.settings-section>* {
  position: relative;
  z-index: 2;
}

.research-paper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1vh;
  padding: 2.5vh;
  margin-bottom: 2vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.paper-status {
  display: flex;
  gap: 1vh;
  margin-bottom: 2vh;
  flex-wrap: wrap;
}

.acceptance-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5vh 1.2vh;
  border-radius: 0.8vh;
  font-size: 1.4vh;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.venue-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 0.5vh 1.2vh;
  border-radius: 0.8vh;
  font-size: 1.4vh;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.research-paper h3 {
  color: var(--text-color);
  font-size: 2.2vh;
  font-weight: 600;
  margin-bottom: 1.5vh;
  line-height: 1.4;
}

.research-paper .authors,
.research-paper .venue {
  color: var(--text-color);
  font-size: 1.6vh;
  margin-bottom: 1vh;
}

.research-paper .description {
  color: var(--text-color);
  font-size: 1.6vh;
  line-height: 1.6;
  margin-bottom: 2vh;
}

.research-links {
  display: flex;
  gap: 1.5vh;
  margin-bottom: 2vh;
  flex-wrap: wrap;
}

.research-link {
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 1vh 1.5vh;
  border-radius: 0.8vh;
  font-size: 1.5vh;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8vh;
}

.research-link:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1vh;
  margin-bottom: 2vh;
}

.research-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  padding: 0.6vh 1.2vh;
  border-radius: 0.6vh;
  font-size: 1.3vh;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.research-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.acceptance-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1vh;
  padding: 2vh;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.acceptance-details h4 {
  color: var(--text-color);
  font-size: 1.8vh;
  font-weight: 600;
  margin-bottom: 1.5vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8vh;
}

.acceptance-details p {
  color: var(--text-color);
  font-size: 1.5vh;
  margin-bottom: 0.8vh;
  line-height: 1.5;
}

.acceptance-note {
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid #22c55e;
  padding: 1.5vh;
  border-radius: 0.5vh;
  margin-top: 1.5vh;
  font-style: italic;
  color: var(--text-color);
}

.acceptance-note i {
  color: #22c55e;
  margin: 0 0.5vh;
}


[data-theme="light"] .project-item::before,
[data-theme="light"] .experience-item::before,
[data-theme="light"] .research-paper::before,
[data-theme="light"] .cert-item::before,
[data-theme="light"] .contact-item::before,
[data-theme="light"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.03) 25%,
      rgba(0, 0, 0, 0.01) 50%,
      transparent 70%);
}

[data-theme="ice-blue"] .project-item::before,
[data-theme="ice-blue"] .experience-item::before,
[data-theme="ice-blue"] .research-paper::before,
[data-theme="ice-blue"] .cert-item::before,
[data-theme="ice-blue"] .contact-item::before,
[data-theme="ice-blue"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(139, 194, 219, 0.15) 0%,
      rgba(139, 194, 219, 0.08) 25%,
      rgba(139, 194, 219, 0.03) 50%,
      transparent 70%);
}

[data-theme="steampunk"] .project-item::before,
[data-theme="steampunk"] .experience-item::before,
[data-theme="steampunk"] .research-paper::before,
[data-theme="steampunk"] .cert-item::before,
[data-theme="steampunk"] .contact-item::before,
[data-theme="steampunk"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(205, 163, 114, 0.12) 0%,
      rgba(205, 163, 114, 0.06) 25%,
      rgba(205, 163, 114, 0.02) 50%,
      transparent 70%);
}

[data-theme="brutalist"] .project-item::before,
[data-theme="brutalist"] .experience-item::before,
[data-theme="brutalist"] .research-paper::before,
[data-theme="brutalist"] .cert-item::before,
[data-theme="brutalist"] .contact-item::before,
[data-theme="brutalist"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(220, 220, 220, 0.10) 0%,
      rgba(220, 220, 220, 0.05) 25%,
      rgba(220, 220, 220, 0.02) 50%,
      transparent 70%);
}

.performance-mode [data-theme="steampunk"] .close-btn:hover,
.performance-mode [data-theme="steampunk"] .settings-btn:hover,
.performance-mode [data-theme="steampunk"] .project-link:hover {
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}


.performance-mode .project-item::before,
.performance-mode .experience-item::before,
.performance-mode .research-paper::before,
.performance-mode .cert-item::before,
.performance-mode .contact-item::before,
.performance-mode .settings-section::before {
  display: none !important;
}


[data-theme="light"] .app-window {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] #launcher {
  background: rgba(248, 248, 248, 0.9);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .notification {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(4vh);
  -webkit-backdrop-filter: blur(4vh);
  border: 1px solid rgba(0, 0, 0, 0.15);
}




[data-theme="ice-blue"] .app-window,
[data-theme="ice-blue"] #launcher {
  backdrop-filter: blur(8vh) saturate(150%);
  -webkit-backdrop-filter: blur(8vh) saturate(150%);
  background: rgba(227, 242, 253, 0.4);
  border: 1px solid rgba(33, 150, 243, 0.3);
  box-shadow:
    0 2vh 6vh rgba(33, 150, 243, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


[data-theme="brutalist"] .app-window,
[data-theme="brutalist"] #launcher,
[data-theme="brutalist"] .project-item,
[data-theme="brutalist"] .experience-item,
[data-theme="brutalist"] .cert-item,
[data-theme="brutalist"] .contact-item,
[data-theme="brutalist"] .settings-section {
  background: #FFFFFF;
  border: 4px solid #000000;
  border-radius: 0;
  box-shadow: 8px 8px 0px #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-theme="brutalist"] #first-name,
[data-theme="brutalist"] #last-name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="brutalist"] .close-btn,
[data-theme="brutalist"] .settings-btn,
[data-theme="brutalist"] .app-icon {
  border: 3px solid #000000;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: 4px 4px 0px #000000;
}

[data-theme="brutalist"] .close-btn:hover,
[data-theme="brutalist"] .settings-btn:hover,
[data-theme="brutalist"] .app-icon:hover {
  background: #FF0000;
  color: #FFFFFF;
  transform: none;
}




[data-theme="steampunk"] .app-window,
[data-theme="steampunk"] #launcher,
[data-theme="steampunk"] .project-item,
[data-theme="steampunk"] .experience-item,
[data-theme="steampunk"] .cert-item,
[data-theme="steampunk"] .contact-item,
[data-theme="steampunk"] .settings-section {
  background: linear-gradient(145deg, #3A2318 0%, #2F1B14 100%);
  border: 3px solid #B87333;
  box-shadow:
    inset 0 0 20px rgba(184, 115, 51, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.5);
}


[data-theme="steampunk"] #first-name,
[data-theme="steampunk"] #last-name {
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(184, 115, 51, 0.3);
}

[data-theme="steampunk"] #greeting-text {
  font-family: 'Times New Roman', serif;
  font-style: italic;
}

[data-theme="steampunk"] .app-header {
  background: linear-gradient(90deg, #B87333 0%, #CD7F32 50%, #B87333 100%);
  border-bottom: 2px solid #DAA520;
  border-radius: 2.1vh 2.1vh 0 0;
  color: #1A0F0A;
  text-shadow: 1px 1px 2px rgba(218, 165, 32, 0.5);
}

[data-theme="steampunk"] .app-title {
  color: #1A0F0A;
  font-weight: bold;
  text-shadow: none;
}

[data-theme="steampunk"] .close-btn,
[data-theme="steampunk"] .settings-btn,
[data-theme="steampunk"] .app-icon {
  background: linear-gradient(145deg, #B87333 0%, #8B4513 100%);
  border: 2px solid #CD7F32;
  color: #1A0F0A;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(205, 127, 50, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(210, 180, 140, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.3);
}

[data-theme="steampunk"] .close-btn:hover,
[data-theme="steampunk"] .settings-btn:hover,
[data-theme="steampunk"] .app-icon:hover {
  background: linear-gradient(145deg, #DAA520 0%, #B8860B 100%);
  border-color: #D2B48C;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 15px rgba(184, 115, 51, 0.5);
  transform: translateY(-1px);
}

[data-theme="steampunk"] .project-link,
[data-theme="steampunk"] .cert-btn {
  background: linear-gradient(90deg, #8B4513 0%, #A0522D 100%);
  border: 1px solid #CD7F32;
  color: #D2B48C;
}

[data-theme="steampunk"] .project-link:hover,
[data-theme="steampunk"] .cert-btn:hover {
  background: linear-gradient(90deg, #B87333 0%, #DAA520 100%);
  color: #1A0F0A;
}


.performance-mode * {
  transition: none !important;
  animation: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .app-window,
.performance-mode #launcher,
.performance-mode .notification {
  background: var(--container-bg) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .app-icon:hover,
.performance-mode .project-item:hover,
.performance-mode .experience-item:hover,
.performance-mode .cert-item:hover,
.performance-mode .theme-preview-btn:hover,
.performance-mode .settings-btn:hover,
.performance-mode .close-btn:hover {
  transform: none !important;
  box-shadow: none !important;
}

.performance-mode #first-name,
.performance-mode #last-name {
  animation: none !important;
  background: var(--primary-text) !important;
  -webkit-text-fill-color: var(--primary-text) !important;
}

.performance-mode .notification-progress {
  animation: none !important;
}

.performance-mode .toggle-slider {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .setting-slider::-webkit-slider-thumb:active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--primary-text) !important;
}

.performance-mode .setting-slider::-moz-range-thumb:active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--primary-text) !important;
}


.performance-mode [data-theme="steampunk"] .close-btn:hover,
.performance-mode [data-theme="steampunk"] .settings-btn:hover,
.performance-mode [data-theme="steampunk"] .app-icon:hover {
  transform: none !important;
}


.research-content {
  padding: 0;
}


.project-item,
.experience-item,
.research-paper,
.cert-item,
.contact-item,
.settings-section {
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.project-item::before,
.experience-item::before,
.research-paper::before,
.cert-item::before,
.contact-item::before,
.settings-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 255, 255, 0.01) 50%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.project-item:hover::before,
.experience-item:hover::before,
.research-paper:hover::before,
.cert-item:hover::before,
.contact-item:hover::before,
.settings-section:hover::before {
  opacity: 1;
}


.project-item>*,
.experience-item>*,
.research-paper>*,
.cert-item>*,
.contact-item>*,
.settings-section>* {
  position: relative;
  z-index: 2;
}

.research-paper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1vh;
  padding: 2.5vh;
  margin-bottom: 2vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.paper-status {
  display: flex;
  gap: 1vh;
  margin-bottom: 2vh;
  flex-wrap: wrap;
}

.acceptance-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5vh 1.2vh;
  border-radius: 0.8vh;
  font-size: 1.4vh;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.venue-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 0.5vh 1.2vh;
  border-radius: 0.8vh;
  font-size: 1.4vh;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.research-paper h3 {
  color: var(--text-color);
  font-size: 2.2vh;
  font-weight: 600;
  margin-bottom: 1.5vh;
  line-height: 1.4;
}

.research-paper .authors,
.research-paper .venue {
  color: var(--text-color);
  font-size: 1.6vh;
  margin-bottom: 1vh;
}

.research-paper .description {
  color: var(--text-color);
  font-size: 1.6vh;
  line-height: 1.6;
  margin-bottom: 2vh;
}

.research-links {
  display: flex;
  gap: 1.5vh;
  margin-bottom: 2vh;
  flex-wrap: wrap;
}

.research-link {
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 1vh 1.5vh;
  border-radius: 0.8vh;
  font-size: 1.5vh;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8vh;
}

.research-link:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1vh;
  margin-bottom: 2vh;
}

.research-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  padding: 0.6vh 1.2vh;
  border-radius: 0.6vh;
  font-size: 1.3vh;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.research-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.acceptance-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1vh;
  padding: 2vh;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.acceptance-details h4 {
  color: var(--text-color);
  font-size: 1.8vh;
  font-weight: 600;
  margin-bottom: 1.5vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8vh;
}

.acceptance-details p {
  color: var(--text-color);
  font-size: 1.5vh;
  margin-bottom: 0.8vh;
  line-height: 1.5;
}

.acceptance-note {
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid #22c55e;
  padding: 1.5vh;
  border-radius: 0.5vh;
  margin-top: 1.5vh;
  font-style: italic;
  color: var(--text-color);
}

.acceptance-note i {
  color: #22c55e;
  margin: 0 0.5vh;
}


[data-theme="light"] .project-item::before,
[data-theme="light"] .experience-item::before,
[data-theme="light"] .research-paper::before,
[data-theme="light"] .cert-item::before,
[data-theme="light"] .contact-item::before,
[data-theme="light"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.03) 25%,
      rgba(0, 0, 0, 0.01) 50%,
      transparent 70%);
}

[data-theme="ice-blue"] .project-item::before,
[data-theme="ice-blue"] .experience-item::before,
[data-theme="ice-blue"] .research-paper::before,
[data-theme="ice-blue"] .cert-item::before,
[data-theme="ice-blue"] .contact-item::before,
[data-theme="ice-blue"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(139, 194, 219, 0.15) 0%,
      rgba(139, 194, 219, 0.08) 25%,
      rgba(139, 194, 219, 0.03) 50%,
      transparent 70%);
}

[data-theme="steampunk"] .project-item::before,
[data-theme="steampunk"] .experience-item::before,
[data-theme="steampunk"] .research-paper::before,
[data-theme="steampunk"] .cert-item::before,
[data-theme="steampunk"] .contact-item::before,
[data-theme="steampunk"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(205, 163, 114, 0.12) 0%,
      rgba(205, 163, 114, 0.06) 25%,
      rgba(205, 163, 114, 0.02) 50%,
      transparent 70%);
}

[data-theme="brutalist"] .project-item::before,
[data-theme="brutalist"] .experience-item::before,
[data-theme="brutalist"] .research-paper::before,
[data-theme="brutalist"] .cert-item::before,
[data-theme="brutalist"] .contact-item::before,
[data-theme="brutalist"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(220, 220, 220, 0.10) 0%,
      rgba(220, 220, 220, 0.05) 25%,
      rgba(220, 220, 220, 0.02) 50%,
      transparent 70%);
}

.performance-mode [data-theme="steampunk"] .close-btn:hover,
.performance-mode [data-theme="steampunk"] .settings-btn:hover,
.performance-mode [data-theme="steampunk"] .project-link:hover {
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}


.performance-mode .project-item::before,
.performance-mode .experience-item::before,
.performance-mode .research-paper::before,
.performance-mode .cert-item::before,
.performance-mode .contact-item::before,
.performance-mode .settings-section::before {
  display: none !important;
}


[data-theme="light"] .app-window {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] #launcher {
  background: rgba(248, 248, 248, 0.9);
  backdrop-filter: blur(2vh);
  -webkit-backdrop-filter: blur(2vh);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .notification {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(4vh);
  -webkit-backdrop-filter: blur(4vh);
  border: 1px solid rgba(0, 0, 0, 0.15);
}




[data-theme="ice-blue"] .app-window,
[data-theme="ice-blue"] #launcher {
  backdrop-filter: blur(8vh) saturate(150%);
  -webkit-backdrop-filter: blur(8vh) saturate(150%);
  background: rgba(227, 242, 253, 0.4);
  border: 1px solid rgba(33, 150, 243, 0.3);
  box-shadow:
    0 2vh 6vh rgba(33, 150, 243, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


[data-theme="brutalist"] .app-window,
[data-theme="brutalist"] #launcher,
[data-theme="brutalist"] .project-item,
[data-theme="brutalist"] .experience-item,
[data-theme="brutalist"] .cert-item,
[data-theme="brutalist"] .contact-item,
[data-theme="brutalist"] .settings-section {
  background: #FFFFFF;
  border: 4px solid #000000;
  border-radius: 0;
  box-shadow: 8px 8px 0px #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-theme="brutalist"] #first-name,
[data-theme="brutalist"] #last-name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="brutalist"] .close-btn,
[data-theme="brutalist"] .settings-btn,
[data-theme="brutalist"] .app-icon {
  border: 3px solid #000000;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: 4px 4px 0px #000000;
}

[data-theme="brutalist"] .close-btn:hover,
[data-theme="brutalist"] .settings-btn:hover,
[data-theme="brutalist"] .app-icon:hover {
  background: #FF0000;
  color: #FFFFFF;
  transform: none;
}




[data-theme="steampunk"] .app-window,
[data-theme="steampunk"] #launcher,
[data-theme="steampunk"] .project-item,
[data-theme="steampunk"] .experience-item,
[data-theme="steampunk"] .cert-item,
[data-theme="steampunk"] .contact-item,
[data-theme="steampunk"] .settings-section {
  background: linear-gradient(145deg, #3A2318 0%, #2F1B14 100%);
  border: 3px solid #B87333;
  box-shadow:
    inset 0 0 20px rgba(184, 115, 51, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.5);
}


[data-theme="steampunk"] #first-name,
[data-theme="steampunk"] #last-name {
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(184, 115, 51, 0.3);
}

[data-theme="steampunk"] #greeting-text {
  font-family: 'Times New Roman', serif;
  font-style: italic;
}

[data-theme="steampunk"] .app-header {
  background: linear-gradient(90deg, #B87333 0%, #CD7F32 50%, #B87333 100%);
  border-bottom: 2px solid #DAA520;
  border-radius: 2.1vh 2.1vh 0 0;
  color: #1A0F0A;
  text-shadow: 1px 1px 2px rgba(218, 165, 32, 0.5);
}

[data-theme="steampunk"] .app-title {
  color: #1A0F0A;
  font-weight: bold;
  text-shadow: none;
}

[data-theme="steampunk"] .close-btn,
[data-theme="steampunk"] .settings-btn,
[data-theme="steampunk"] .app-icon {
  background: linear-gradient(145deg, #B87333 0%, #8B4513 100%);
  border: 2px solid #CD7F32;
  color: #1A0F0A;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(205, 127, 50, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(210, 180, 140, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.3);
}

[data-theme="steampunk"] .close-btn:hover,
[data-theme="steampunk"] .settings-btn:hover,
[data-theme="steampunk"] .app-icon:hover {
  background: linear-gradient(145deg, #DAA520 0%, #B8860B 100%);
  border-color: #D2B48C;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 15px rgba(184, 115, 51, 0.5);
  transform: translateY(-1px);
}

[data-theme="steampunk"] .project-link,
[data-theme="steampunk"] .cert-btn {
  background: linear-gradient(90deg, #8B4513 0%, #A0522D 100%);
  border: 1px solid #CD7F32;
  color: #D2B48C;
}

[data-theme="steampunk"] .project-link:hover,
[data-theme="steampunk"] .cert-btn:hover {
  background: linear-gradient(90deg, #B87333 0%, #DAA520 100%);
  color: #1A0F0A;
}


.performance-mode * {
  transition: none !important;
  animation: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .app-window,
.performance-mode #launcher,
.performance-mode .notification {
  background: var(--container-bg) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .app-icon:hover,
.performance-mode .project-item:hover,
.performance-mode .experience-item:hover,
.performance-mode .cert-item:hover,
.performance-mode .theme-preview-btn:hover,
.performance-mode .settings-btn:hover,
.performance-mode .close-btn:hover {
  transform: none !important;
  box-shadow: none !important;
}

.performance-mode #first-name,
.performance-mode #last-name {
  animation: none !important;
  background: var(--primary-text) !important;
  -webkit-text-fill-color: var(--primary-text) !important;
}

.performance-mode .notification-progress {
  animation: none !important;
}

.performance-mode .toggle-slider {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance-mode .setting-slider::-webkit-slider-thumb:active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--primary-text) !important;
}

.performance-mode .setting-slider::-moz-range-thumb:active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--primary-text) !important;
}


.performance-mode [data-theme="steampunk"] .close-btn:hover,
.performance-mode [data-theme="steampunk"] .settings-btn:hover,
.performance-mode [data-theme="steampunk"] .app-icon:hover {
  transform: none !important;
}


.research-content {
  padding: 0;
}


.project-item,
.experience-item,
.research-paper,
.cert-item,
.contact-item,
.settings-section {
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.project-item::before,
.experience-item::before,
.research-paper::before,
.cert-item::before,
.contact-item::before,
.settings-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 255, 255, 0.01) 50%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.project-item:hover::before,
.experience-item:hover::before,
.research-paper:hover::before,
.cert-item:hover::before,
.contact-item:hover::before,
.settings-section:hover::before {
  opacity: 1;
}


.project-item>*,
.experience-item>*,
.research-paper>*,
.cert-item>*,
.contact-item>*,
.settings-section>* {
  position: relative;
  z-index: 2;
}

.research-paper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1vh;
  padding: 2.5vh;
  margin-bottom: 2vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.paper-status {
  display: flex;
  gap: 1vh;
  margin-bottom: 2vh;
  flex-wrap: wrap;
}

.acceptance-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5vh 1.2vh;
  border-radius: 0.8vh;
  font-size: 1.4vh;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.venue-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 0.5vh 1.2vh;
  border-radius: 0.8vh;
  font-size: 1.4vh;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.research-paper h3 {
  color: var(--text-color);
  font-size: 2.2vh;
  font-weight: 600;
  margin-bottom: 1.5vh;
  line-height: 1.4;
}

.research-paper .authors,
.research-paper .venue {
  color: var(--text-color);
  font-size: 1.6vh;
  margin-bottom: 1vh;
}

.research-paper .description {
  color: var(--text-color);
  font-size: 1.6vh;
  line-height: 1.6;
  margin-bottom: 2vh;
}

.research-links {
  display: flex;
  gap: 1.5vh;
  margin-bottom: 2vh;
  flex-wrap: wrap;
}

.research-link {
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 1vh 1.5vh;
  border-radius: 0.8vh;
  font-size: 1.5vh;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8vh;
}

.research-link:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1vh;
  margin-bottom: 2vh;
}

.research-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  padding: 0.6vh 1.2vh;
  border-radius: 0.6vh;
  font-size: 1.3vh;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.research-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.acceptance-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1vh;
  padding: 2vh;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.acceptance-details h4 {
  color: var(--text-color);
  font-size: 1.8vh;
  font-weight: 600;
  margin-bottom: 1.5vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8vh;
}

.acceptance-details p {
  color: var(--text-color);
  font-size: 1.5vh;
  margin-bottom: 0.8vh;
  line-height: 1.5;
}

.acceptance-note {
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid #22c55e;
  padding: 1.5vh;
  border-radius: 0.5vh;
  margin-top: 1.5vh;
  font-style: italic;
  color: var(--text-color);
}

.acceptance-note i {
  color: #22c55e;
  margin: 0 0.5vh;
}


[data-theme="light"] .project-item::before,
[data-theme="light"] .experience-item::before,
[data-theme="light"] .research-paper::before,
[data-theme="light"] .cert-item::before,
[data-theme="light"] .contact-item::before,
[data-theme="light"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.03) 25%,
      rgba(0, 0, 0, 0.01) 50%,
      transparent 70%);
}

[data-theme="ice-blue"] .project-item::before,
[data-theme="ice-blue"] .experience-item::before,
[data-theme="ice-blue"] .research-paper::before,
[data-theme="ice-blue"] .cert-item::before,
[data-theme="ice-blue"] .contact-item::before,
[data-theme="ice-blue"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(139, 194, 219, 0.15) 0%,
      rgba(139, 194, 219, 0.08) 25%,
      rgba(139, 194, 219, 0.03) 50%,
      transparent 70%);
}

[data-theme="steampunk"] .project-item::before,
[data-theme="steampunk"] .experience-item::before,
[data-theme="steampunk"] .research-paper::before,
[data-theme="steampunk"] .cert-item::before,
[data-theme="steampunk"] .contact-item::before,
[data-theme="steampunk"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(205, 163, 114, 0.12) 0%,
      rgba(205, 163, 114, 0.06) 25%,
      rgba(205, 163, 114, 0.02) 50%,
      transparent 70%);
}

[data-theme="brutalist"] .project-item::before,
[data-theme="brutalist"] .experience-item::before,
[data-theme="brutalist"] .research-paper::before,
[data-theme="brutalist"] .cert-item::before,
[data-theme="brutalist"] .contact-item::before,
[data-theme="brutalist"] .settings-section::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(220, 220, 220, 0.10) 0%,
      rgba(220, 220, 220, 0.05) 25%,
      rgba(220, 220, 220, 0.02) 50%,
      transparent 70%);
}

.performance-mode [data-theme="steampunk"] .close-btn:hover,
.performance-mode [data-theme="steampunk"] .settings-btn:hover,
.performance-mode [data-theme="steampunk"] .project-link:hover {
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}


.performance-mode .project-item::before,
.performance-mode .experience-item::before,
.performance-mode .research-paper::before,
.performance-mode .cert-item::before,
.performance-mode .contact-item::before,
.performance-mode .settings-section::before {
  display: none !important;
}




.calculator-container {
  padding: 2vh;
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: var(--font-family);
  box-sizing: border-box;
}

.calculator-display {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1.5vh;
  padding: 1.5vh 2vh;
  margin-bottom: 1.5vh;
  text-align: right;
  min-height: 6vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.calculator-previous-operand {
  position: absolute;
  top: 0.5vh;
  right: 2vh;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4vh;
  font-family: 'Courier New', monospace;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calculator-current-operand {
  color: var(--text-primary);
  font-size: 2.8vh;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  word-wrap: break-word;
  word-break: break-all;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 0.5vh;
}

.calculator-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vh;
  flex: 1;
}

.calculator-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.2vh;
  color: var(--text-primary);
  font-size: 2.2vh;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6vh;
  font-family: var(--font-family);
  user-select: none;
}

.calculator-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

.calculator-btn:active {
  transform: translateY(0) scale(0.98);
  background: rgba(255, 255, 255, 0.2);
}

.calculator-btn.operator {
  background: rgba(74, 144, 226, 0.3);
  border-color: rgba(74, 144, 226, 0.5);
}

.calculator-btn.operator:hover {
  background: rgba(74, 144, 226, 0.4);
  border-color: rgba(74, 144, 226, 0.6);
}

.calculator-btn.equals {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
}

.calculator-btn.equals:hover {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
}

.calculator-btn.zero {
  grid-column: span 2;
}

.calculator-btn.clear-all {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.5);
}

.calculator-btn.clear-all:hover {
  background: rgba(239, 68, 68, 0.4);
  border-color: rgba(239, 68, 68, 0.6);
}


.stopwatch-container {
  padding: 2vh 2vh 2vh 2vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
  font-family: var(--font-family);
  box-sizing: border-box;
  gap: 2vh;
}

.stopwatch-display {
  text-align: center;
  margin-bottom: 2vh;
}

.time-display {
  font-family: 'Courier New', monospace;
  font-size: 4vh;
  font-weight: bold;
  color: var(--text-primary);
  text-shadow: 0 0 2vh rgba(74, 144, 226, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.time-display.running {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from {
    text-shadow: 0 0 2vh rgba(74, 144, 226, 0.3);
  }

  to {
    text-shadow: 0 0 3vh rgba(74, 144, 226, 0.6);
  }
}

.separator {
  color: rgba(255, 255, 255, 0.6);
}

.stopwatch-controls {
  display: flex;
  gap: 1.5vh;
}

.stopwatch-btn {
  padding: 1.5vh 3vh;
  border-radius: 1.5vh;
  border: none;
  font-size: 2vh;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 8vh;
  font-family: var(--font-family);
  user-select: none;
}

.stopwatch-btn.primary {
  background: rgba(34, 197, 94, 0.3);
  color: var(--text-primary);
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.stopwatch-btn.primary:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
  transform: translateY(-1px);
}

.stopwatch-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stopwatch-btn.secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.stopwatch-btn.reset {
  background: rgba(239, 68, 68, 0.3);
  color: var(--text-primary);
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.stopwatch-btn.reset:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.4);
  border-color: rgba(239, 68, 68, 0.6);
  transform: translateY(-1px);
}

.stopwatch-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.stopwatch-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.laps-container {
  flex: 1;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.laps-header {
  font-size: 2.2vh;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5vh;
  text-align: center;
}

.laps-list {
  flex: 1;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1.5vh;
  padding: 1vh;
}

.lap-item {
  display: flex;
  justify-content: space-between;
  padding: 1vh 1.5vh;
  margin-bottom: 0.5vh;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: lapSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lapSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lap-number {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8vh;
}

.lap-time {
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
  font-size: 1.8vh;
  font-weight: bold;
}


.calendar-container {
  padding: 2vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  box-sizing: border-box;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2vh;
  padding: 1vh 0;
}

.calendar-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 5vh;
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 2.5vh;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-family);
  user-select: none;
}

.calendar-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.calendar-title {
  text-align: center;
  font-size: 2.8vh;
  font-weight: 600;
  color: var(--text-primary);
}

.current-year {
  margin-left: 1vh;
  color: rgba(255, 255, 255, 0.7);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5vh;
  margin-bottom: 1vh;
}

.weekday {
  text-align: center;
  font-size: 1.6vh;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 1vh 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5vh;
  flex: 1;
  margin-bottom: 2vh;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.calendar-grid.transitioning {
  opacity: 0.7;
  transform: translateX(10px);
}

.calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 1vh;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.8vh;
  font-weight: 500;
  position: relative;
}

.calendar-day:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.calendar-day.other-month {
  color: rgba(255, 255, 255, 0.3);
}

.calendar-day.today {
  background: rgba(74, 144, 226, 0.4);
  color: var(--text-primary);
  border: 2px solid rgba(74, 144, 226, 0.6);
}

.calendar-day.selected {
  background: rgba(34, 197, 94, 0.4);
  color: var(--text-primary);
  border: 2px solid rgba(34, 197, 94, 0.6);
}

.calendar-events {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1.5vh;
  padding: 2vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2vh;
}

.events-header {
  font-size: 2vh;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-event-btn {
  background: rgba(34, 197, 94, 0.3);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 50%;
  width: 3vh;
  height: 3vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.4vh;
}

.add-event-btn:hover {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
  transform: scale(1.1);
}

.add-event-form {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1vh;
  padding: 1.5vh;
  margin-bottom: 1vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event-title-input,
.event-time-input {
  width: 100%;
  padding: 1vh;
  border-radius: 0.8vh;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 1.6vh;
  font-family: var(--font-family);
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 1vh;
  box-sizing: border-box;
}

.event-title-input:focus,
.event-time-input:focus {
  border-color: rgba(74, 144, 226, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 0.3vh rgba(74, 144, 226, 0.2);
}

.event-title-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.event-form-buttons {
  display: flex;
  gap: 1vh;
}

.save-event-btn,
.cancel-event-btn {
  flex: 1;
  padding: 1vh;
  border-radius: 0.8vh;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.6vh;
  font-family: var(--font-family);
  font-weight: 600;
}

.save-event-btn {
  background: rgba(34, 197, 94, 0.3);
  color: var(--text-primary);
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.save-event-btn:hover {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
}

.cancel-event-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cancel-event-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh;
  margin-bottom: 0.5vh;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.8vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: eventSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes eventSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.event-details {
  flex: 1;
}

.event-title {
  color: var(--text-primary);
  font-size: 1.6vh;
  font-weight: 600;
  margin-bottom: 0.2vh;
}

.event-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4vh;
}

.delete-event-btn {
  background: rgba(239, 68, 68, 0.3);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 0.6vh;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5vh;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5vh;
  height: 2.5vh;
  font-size: 1.2vh;
}

.delete-event-btn:hover {
  background: rgba(239, 68, 68, 0.4);
  border-color: rgba(239, 68, 68, 0.6);
  transform: scale(1.1);
}

.calendar-day.has-events::after {
  content: '';
  position: absolute;
  bottom: 0.2vh;
  right: 0.2vh;
  width: 0.6vh;
  height: 0.6vh;
  background: rgba(34, 197, 94, 0.8);
  border-radius: 50%;
}

.no-events {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 1.6vh;
  text-align: center;
}


.tasks-container {
  padding: 2vh 2vh 2vh 2vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  box-sizing: border-box;
}

.tasks-header {
  margin-bottom: 2vh;
}

.add-task-form {
  display: flex;
  gap: 1vh;
  margin-bottom: 2vh;
}

.task-input {
  flex: 1;
  padding: 1.5vh 2vh;
  border-radius: 1.5vh;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 1.8vh;
  font-family: var(--font-family);
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.task-input:focus {
  border-color: rgba(74, 144, 226, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 0.3vh rgba(74, 144, 226, 0.2);
}

.task-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.add-task-btn {
  padding: 1.5vh;
  border-radius: 1.5vh;
  border: none;
  background: rgba(34, 197, 94, 0.3);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(34, 197, 94, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6vh;
  font-family: var(--font-family);
  user-select: none;
}

.add-task-btn:hover {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
  transform: scale(1.05);
}

.task-filters {
  display: flex;
  gap: 1vh;
}

.filter-btn {
  padding: 1vh 2vh;
  border-radius: 1vh;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.6vh;
  font-family: var(--font-family);
  user-select: none;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
  background: rgba(74, 144, 226, 0.3);
  border-color: rgba(74, 144, 226, 0.5);
}

.tasks-list {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 2vh;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 1.5vh;
  padding: 1.5vh;
  margin-bottom: 1vh;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: taskSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes taskSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.task-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.task-checkbox {
  width: 2.5vh;
  height: 2.5vh;
  border-radius: 0.5vh;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
}

.task-checkbox.checked {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
}

.task-checkbox.checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-primary);
  font-size: 1.5vh;
  font-weight: bold;
}

.task-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 1.8vh;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.task-item.completed .task-text {
  text-decoration: line-through;
  opacity: 0.6;
}

.task-delete {
  background: rgba(239, 68, 68, 0.3);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 0.8vh;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.8vh;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3vh;
  height: 3vh;
  flex-shrink: 0;
}

.task-delete:hover {
  background: rgba(239, 68, 68, 0.4);
  border-color: rgba(239, 68, 68, 0.6);
  transform: scale(1.1);
}

.tasks-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.task-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6vh;
}

.clear-completed-btn {
  padding: 1vh 2vh;
  border-radius: 1vh;
  border: 1px solid rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.3);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.6vh;
  font-family: var(--font-family);
  user-select: none;
}

.clear-completed-btn:hover {
  background: rgba(239, 68, 68, 0.4);
  border-color: rgba(239, 68, 68, 0.6);
}

.clear-completed-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}



[data-theme="blood-red"] body {
  background: url('media/blood-red.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[data-theme="milk"] body {
  background: url('media/milk.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[data-theme="salty"] body {
  background: url('media/salty.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[data-theme="brutalist"] body {
  background: url('media/brutalist.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[data-theme="steampunk"] body {
  background: url('media/steampunk.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[data-theme="light"] body {
  background: url('media/light.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[data-theme="ice-blue"] body {
  background: url('media/blue.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[data-theme="phthalo-green"] body {
  background: url('media/phthalo-green.jpg'), var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}


#dotCanvas {
  display: block;
}

[data-theme="light"] #dotCanvas,
[data-theme="ice-blue"] #dotCanvas,
[data-theme="brutalist"] #dotCanvas,
[data-theme="steampunk"] #dotCanvas,
[data-theme="blood-red"] #dotCanvas,
[data-theme="milk"] #dotCanvas,
[data-theme="salty"] #dotCanvas,
[data-theme="phthalo-green"] #dotCanvas {
  display: none;
}











.calculator-display,
.stopwatch-display,
.calendar-container,
.tasks-list {
  background: var(--container-bg);
  border: 1px solid var(--border-color);
  color: var(--primary-text);
}

.calculator-btn,
.stopwatch-btn,
.calendar-nav-btn,
.calendar-day {
  background: var(--container-bg);
  border: 1px solid var(--border-color);
  color: var(--primary-text);
}

.calculator-btn:hover,
.stopwatch-btn:hover,
.calendar-nav-btn:hover,
.calendar-day:hover {
  background: var(--accent);
  color: var(--heading-color);
}

.calculator-btn.operator,
.stopwatch-btn.primary,
.calendar-day.today {
  background: var(--accent);
  color: var(--heading-color);
}

.calculator-btn.equals,
.stopwatch-btn.reset,
.calendar-day.selected {
  background: var(--accent);
  color: var(--heading-color);
  border-color: var(--accent);
}


[data-theme="brutalist"] .calculator-display,
[data-theme="brutalist"] .stopwatch-display,
[data-theme="brutalist"] .calendar-container,
[data-theme="brutalist"] .tasks-list {
  background: #FFFFFF;
  border: 3px solid #000000;
  color: #000000;
  box-shadow:
    5px 5px 0px #000000,
    inset 2px 2px 0px #CCCCCC;
}

[data-theme="brutalist"] .calculator-btn,
[data-theme="brutalist"] .stopwatch-btn,
[data-theme="brutalist"] .calendar-nav-btn,
[data-theme="brutalist"] .calendar-day {
  background: #FFFFFF;
  border: 2px solid #000000;
  color: #000000;
  font-weight: bold;
  box-shadow: 3px 3px 0px #000000;
  border-radius: 0;
}

[data-theme="brutalist"] .calculator-btn:hover,
[data-theme="brutalist"] .stopwatch-btn:hover,
[data-theme="brutalist"] .calendar-nav-btn:hover,
[data-theme="brutalist"] .calendar-day:hover {
  background: #FF0000;
  color: #FFFFFF;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px #000000;
}

[data-theme="brutalist"] .calculator-btn.operator,
[data-theme="brutalist"] .stopwatch-btn.primary,
[data-theme="brutalist"] .calendar-day.today {
  background: #000000;
  color: #FFFFFF;
}

[data-theme="brutalist"] .calculator-btn.equals,
[data-theme="brutalist"] .stopwatch-btn.reset,
[data-theme="brutalist"] .calendar-day.selected {
  background: #FF0000;
  color: #FFFFFF;
  border-color: #000000;
}


[data-theme="steampunk"] .calculator-display,
[data-theme="steampunk"] .stopwatch-display,
[data-theme="steampunk"] .calendar-container,
[data-theme="steampunk"] .tasks-list {
  background: linear-gradient(145deg, #3A2318 0%, #2F1B14 100%);
  border: 3px solid #B87333;
  color: #D2B48C;
  box-shadow:
    inset 0 0 20px rgba(184, 115, 51, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.5);
}

[data-theme="steampunk"] .calculator-btn,
[data-theme="steampunk"] .stopwatch-btn,
[data-theme="steampunk"] .calendar-nav-btn,
[data-theme="steampunk"] .calendar-day {
  background: linear-gradient(145deg, #B87333 0%, #8B4513 100%);
  border: 2px solid #CD7F32;
  color: #1A0F0A;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow:
    inset 0 0 10px rgba(218, 165, 32, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="steampunk"] .calculator-btn:hover,
[data-theme="steampunk"] .stopwatch-btn:hover,
[data-theme="steampunk"] .calendar-nav-btn:hover,
[data-theme="steampunk"] .calendar-day:hover {
  background: linear-gradient(145deg, #DAA520 0%, #B8860B 100%);
  border-color: #D2B48C;
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 15px rgba(218, 165, 32, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="steampunk"] .calculator-btn.operator,
[data-theme="steampunk"] .stopwatch-btn.primary,
[data-theme="steampunk"] .calendar-day.today {
  background: linear-gradient(90deg, #8B4513 0%, #A0522D 100%);
  border-color: #D2B48C;
  color: #D2B48C;
}

[data-theme="steampunk"] .calculator-btn.equals,
[data-theme="steampunk"] .stopwatch-btn.reset,
[data-theme="steampunk"] .calendar-day.selected {
  background: linear-gradient(90deg, #B87333 0%, #DAA520 100%);
  color: #1A0F0A;
  border-color: #D2B48C;
}


[data-theme="light"] .folder-popup {
  background: rgba(248, 248, 248, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2vh);
}

[data-theme="light"] .folder-app {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .folder-app:hover {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="ice-blue"] .folder-popup {
  background: rgba(227, 242, 253, 0.9);
  border: 1px solid rgba(13, 71, 161, 0.2);
  backdrop-filter: blur(2vh);
}

[data-theme="ice-blue"] .folder-app {
  background: rgba(186, 222, 251, 0.6);
  border: 1px solid rgba(13, 71, 161, 0.1);
}

[data-theme="ice-blue"] .folder-app:hover {
  background: rgba(186, 222, 251, 0.8);
  border: 1px solid rgba(13, 71, 161, 0.2);
}

[data-theme="brutalist"] .folder-popup {
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  backdrop-filter: none;
}

[data-theme="brutalist"] .folder-app {
  background: #FFFFFF;
  border: 2px solid #000000;
  border-radius: 0;
  box-shadow: 3px 3px 0px #000000;
}

[data-theme="brutalist"] .folder-app:hover {
  background: #FF0000;
  transform: translate(1px, 1px) scale(1.05);
  box-shadow: 2px 2px 0px #000000;
}

[data-theme="steampunk"] .folder-popup {
  background: linear-gradient(145deg, #3A2318 0%, #2F1B14 100%);
  border: 3px solid #B87333;
  box-shadow: inset 0 0 20px rgba(184, 115, 51, 0.2), 0 4px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2vh);
}

[data-theme="steampunk"] .folder-app {
  background: linear-gradient(145deg, #B87333 0%, #8B4513 100%);
  border: 2px solid #CD7F32;
  box-shadow: inset 0 0 10px rgba(218, 165, 32, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="steampunk"] .folder-app:hover {
  background: linear-gradient(145deg, #DAA520 0%, #B8860B 100%);
  border-color: #D2B48C;
  box-shadow: inset 0 0 15px rgba(218, 165, 32, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="blood-red"] .folder-popup {
  background: rgba(44, 10, 10, 0.9);
  border: 1px solid rgba(139, 38, 53, 0.4);
  backdrop-filter: blur(2vh);
}

[data-theme="blood-red"] .folder-app {
  background: rgba(44, 10, 10, 0.6);
  border: 1px solid rgba(139, 38, 53, 0.3);
}

[data-theme="blood-red"] .folder-app:hover {
  background: rgba(197, 48, 48, 0.8);
  border: 1px solid rgba(139, 38, 53, 0.5);
}

[data-theme="milk"] .folder-popup {
  background: rgba(250, 218, 221, 0.9);
  border: 1px solid rgba(212, 161, 164, 0.4);
  backdrop-filter: blur(2vh);
}

[data-theme="milk"] .folder-app {
  background: rgba(250, 218, 221, 0.6);
  border: 1px solid rgba(212, 161, 164, 0.3);
}

[data-theme="milk"] .folder-app:hover {
  background: rgba(255, 85, 228, 0.8);
  border: 1px solid rgba(212, 161, 164, 0.5);
}

[data-theme="salty"] .folder-popup {
  background: rgba(216, 227, 231, 0.9);
  border: 1px solid rgba(137, 166, 168, 0.4);
  backdrop-filter: blur(2vh);
}

[data-theme="salty"] .folder-app {
  background: rgba(216, 227, 231, 0.6);
  border: 1px solid rgba(137, 166, 168, 0.3);
}

[data-theme="salty"] .folder-app:hover {
  background: rgba(73, 106, 116, 0.8);
  border: 1px solid rgba(137, 166, 168, 0.5);
}

[data-theme="phthalo-green"] .folder-popup {
  background: rgba(22, 25, 30, 0.9);
  border: 1px solid rgba(22, 63, 53, 0.4);
  backdrop-filter: blur(2vh);
}

[data-theme="phthalo-green"] .folder-app {
  background: rgba(16, 72, 55, 0.6);
  border: 1px solid rgba(22, 63, 53, 0.3);
}

[data-theme="phthalo-green"] .folder-app:hover {
  background: rgba(25, 65, 53, 0.8);
  border: 1px solid rgba(22, 63, 53, 0.5);
}


[data-theme="light"] .app-icon,
[data-theme="light"] .app-icon-small,
[data-theme="light"] .fa-solid,
[data-theme="light"] .fa-brands {
  color: #333333;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

[data-theme="ice-blue"] .app-icon,
[data-theme="ice-blue"] .app-icon-small,
[data-theme="ice-blue"] .fa-solid,
[data-theme="ice-blue"] .fa-brands {
  color: #0D47A1;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

[data-theme="brutalist"] .app-icon,
[data-theme="brutalist"] .app-icon-small,
[data-theme="brutalist"] .fa-solid,
[data-theme="brutalist"] .fa-brands {
  color: #000000;
  text-shadow: 2px 2px 0px #FFFFFF;
}

[data-theme="steampunk"] .app-icon,
[data-theme="steampunk"] .app-icon-small,
[data-theme="steampunk"] .fa-solid,
[data-theme="steampunk"] .fa-brands {
  color: #D2B48C;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(218, 165, 32, 0.4);
}

[data-theme="milk"] .app-icon,
[data-theme="milk"] .app-icon-small,
[data-theme="milk"] .fa-solid,
[data-theme="milk"] .fa-brands {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="milk"] .primary-text,
[data-theme="milk"] .app-title,
[data-theme="milk"] h1,
[data-theme="milk"] h2,
[data-theme="milk"] h3,
[data-theme="milk"] p,
[data-theme="milk"] span {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

[data-theme="milk"] .secondary-text {
  color: #F5F5F5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

[data-theme="salty"] .app-icon,
[data-theme="salty"] .app-icon-small,
[data-theme="salty"] .fa-solid,
[data-theme="salty"] .fa-brands {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

[data-theme="salty"] .primary-text,
[data-theme="salty"] .app-title,
[data-theme="salty"] h1,
[data-theme="salty"] h2,
[data-theme="salty"] h3,
[data-theme="salty"] p,
[data-theme="salty"] span {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

[data-theme="salty"] .secondary-text {
  color: #E6E6E6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}


[data-theme="light"] .primary-text,
[data-theme="light"] .app-title,
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] p,
[data-theme="light"] span {
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

[data-theme="ice-blue"] .primary-text,
[data-theme="ice-blue"] .app-title,
[data-theme="ice-blue"] h1,
[data-theme="ice-blue"] h2,
[data-theme="ice-blue"] h3 {
  color: #0D47A1;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

[data-theme="steampunk"] .primary-text,
[data-theme="steampunk"] .app-title,
[data-theme="steampunk"] h1,
[data-theme="steampunk"] h2,
[data-theme="steampunk"] h3 {
  color: #F5DEB3;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(218, 165, 32, 0.3);
}

[data-theme="brutalist"] .primary-text,
[data-theme="brutalist"] .app-title,
[data-theme="brutalist"] h1,
[data-theme="brutalist"] h2,
[data-theme="brutalist"] h3 {
  color: #000000;
  text-shadow: 3px 3px 0px #FFFFFF, -1px -1px 0px #FFFFFF;
}

[data-theme="phthalo-green"] .app-icon,
[data-theme="phthalo-green"] .app-icon-small,
[data-theme="phthalo-green"] .fa-solid,
[data-theme="phthalo-green"] .fa-brands {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

[data-theme="phthalo-green"] .primary-text,
[data-theme="phthalo-green"] .app-title,
[data-theme="phthalo-green"] h1,
[data-theme="phthalo-green"] h2,
[data-theme="phthalo-green"] h3,
[data-theme="phthalo-green"] p,
[data-theme="phthalo-green"] span {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

[data-theme="phthalo-green"] .secondary-text {
  color: #E6E6E6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}