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

body {
  font-family: "Courier New", monospace;
  background: #000;
  color: #00ff00;
  overflow: hidden;
  cursor: default;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#terminal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1000;
  padding: 40px;
  overflow-y: auto;
  transition: opacity 1.5s ease-out;
}

#terminal.hidden {
  opacity: 0;
  pointer-events: none;
}

.terminal-line {
  margin: 8px 0;
  animation: fadeIn 0.5s;
  line-height: 1.4;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #00ff00;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#screen-overlay.active {
  display: flex;
  opacity: 1;
}

#portfolio-content {
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 2px;
  padding: 50px;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 0 80px rgba(0, 255, 0, 0.1);
  position: relative;
}

#portfolio-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
}

#portfolio-content::-webkit-scrollbar {
  width: 8px;
}

#portfolio-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

#portfolio-content::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 0, 0.3);
  border-radius: 2px;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 0, 0.4);
  color: rgba(0, 255, 0, 0.8);
  padding: 12px 24px;
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.close-btn:hover {
  background: rgba(0, 255, 0, 0.1);
  border-color: rgba(0, 255, 0, 0.8);
}

h1,
h2,
h3 {
  color: #00ff00;
  margin: 25px 0 15px;
  font-weight: 300;
  letter-spacing: 1px;
}

h1 {
  font-size: 32px;
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
  padding-bottom: 10px;
}

h2 {
  font-size: 22px;
}

.section {
  margin: 35px 0;
  padding-left: 20px;
  border-left: 2px solid rgba(0, 255, 0, 0.1);
}

.project {
  margin: 25px 0;
  padding: 20px;
  background: rgba(0, 255, 0, 0.02);
  border: 1px solid rgba(0, 255, 0, 0.05);
}

.skill-tag {
  display: inline-block;
  padding: 6px 14px;
  margin: 6px;
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 1px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

#controls {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1001;
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.control-btn {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(0, 255, 0, 0.3);
  color: rgba(0, 255, 0, 0.8);
  padding: 12px 24px;
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: rgba(0, 255, 0, 0.05);
  border-color: rgba(0, 255, 0, 0.6);
}

#instructions {
  position: fixed;
  bottom: 25px;
  left: 25px;
  color: rgba(0, 255, 0, 0.6);
  font-size: 13px;
  line-height: 1.6;
  z-index: 100;
  max-width: 280px;
}

.loading-bar {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff00, #00cc00);
  margin: 8px 0;
  animation: loadBar 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

#tooltip-hover {
  position: fixed;
  background: rgba(10, 10, 10, 0.9);
  color: rgba(0, 255, 0, 0.9);
  padding: 10px 18px;
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 1px;
  font-size: 13px;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 10000;
  display: none;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(10, 10, 10, 0.95);
  color: rgba(0, 255, 0, 0.9);
  padding: 30px 50px;
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 2px;
  font-size: 18px;
  z-index: 2000;
  text-align: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.notification.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.music-control {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1002;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: rgba(0, 255, 136, 0.8);
  padding: 10px 12px;
  cursor: default;
  font-family: "Courier New", monospace;
  backdrop-filter: blur(20px);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
  transition: all 0.3s;
}

.music-control.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.music-control:hover {
  background: rgba(0, 255, 0, 0.05);
  border-color: rgba(0, 255, 0, 0.6);
}

.volume-slider {
  width: 100px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.volume-slider:hover {
  opacity: 1;
}

.glitch-title {
  position: relative;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #00ff88;
  text-transform: uppercase;
  animation: glitch-skew 3s infinite linear alternate-reverse;
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-title::before {
  left: 2px;
  text-shadow: -2px 0 #ff00ff;
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch-title::after {
  left: -2px;
  text-shadow: -2px 0 #00ffff, 2px 2px #ff00ff;
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(61px, 9999px, 85px, 0);
    transform: skew(0.4deg);
  }
  5% {
    clip: rect(139px, 9999px, 86px, 0);
    transform: skew(0.91deg);
  }
  10% {
    clip: rect(23px, 9999px, 32px, 0);
    transform: skew(0.16deg);
  }
  15% {
    clip: rect(126px, 9999px, 2px, 0);
    transform: skew(0.02deg);
  }
  20% {
    clip: rect(34px, 9999px, 61px, 0);
    transform: skew(0.34deg);
  }
  25% {
    clip: rect(99px, 9999px, 112px, 0);
    transform: skew(0.78deg);
  }
  30% {
    clip: rect(17px, 9999px, 94px, 0);
    transform: skew(0.22deg);
  }
  35% {
    clip: rect(73px, 9999px, 45px, 0);
    transform: skew(0.55deg);
  }
  40% {
    clip: rect(8px, 9999px, 128px, 0);
    transform: skew(0.89deg);
  }
  45% {
    clip: rect(119px, 9999px, 13px, 0);
    transform: skew(0.11deg);
  }
  50% {
    clip: rect(52px, 9999px, 99px, 0);
    transform: skew(0.67deg);
  }
  55% {
    clip: rect(144px, 9999px, 28px, 0);
    transform: skew(0.33deg);
  }
  60% {
    clip: rect(5px, 9999px, 115px, 0);
    transform: skew(0.76deg);
  }
  65% {
    clip: rect(88px, 9999px, 41px, 0);
    transform: skew(0.44deg);
  }
  70% {
    clip: rect(29px, 9999px, 137px, 0);
    transform: skew(0.92deg);
  }
  75% {
    clip: rect(108px, 9999px, 19px, 0);
    transform: skew(0.18deg);
  }
  80% {
    clip: rect(66px, 9999px, 103px, 0);
    transform: skew(0.59deg);
  }
  85% {
    clip: rect(11px, 9999px, 71px, 0);
    transform: skew(0.27deg);
  }
  90% {
    clip: rect(133px, 9999px, 8px, 0);
    transform: skew(0.83deg);
  }
  95% {
    clip: rect(47px, 9999px, 122px, 0);
    transform: skew(0.39deg);
  }
  100% {
    clip: rect(92px, 9999px, 54px, 0);
    transform: skew(0.64deg);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip: rect(129px, 9999px, 36px, 0);
    transform: skew(0.52deg);
  }
  5% {
    clip: rect(70px, 9999px, 116px, 0);
    transform: skew(0.87deg);
  }
  10% {
    clip: rect(15px, 9999px, 95px, 0);
    transform: skew(0.24deg);
  }
  15% {
    clip: rect(102px, 9999px, 9px, 0);
    transform: skew(0.71deg);
  }
  20% {
    clip: rect(43px, 9999px, 131px, 0);
    transform: skew(0.13deg);
  }
  25% {
    clip: rect(87px, 9999px, 48px, 0);
    transform: skew(0.96deg);
  }
  30% {
    clip: rect(24px, 9999px, 108px, 0);
    transform: skew(0.35deg);
  }
  35% {
    clip: rect(145px, 9999px, 21px, 0);
    transform: skew(0.68deg);
  }
  40% {
    clip: rect(6px, 9999px, 89px, 0);
    transform: skew(0.19deg);
  }
  45% {
    clip: rect(118px, 9999px, 62px, 0);
    transform: skew(0.81deg);
  }
  50% {
    clip: rect(55px, 9999px, 140px, 0);
    transform: skew(0.46deg);
  }
  55% {
    clip: rect(97px, 9999px, 14px, 0);
    transform: skew(0.09deg);
  }
  60% {
    clip: rect(31px, 9999px, 123px, 0);
    transform: skew(0.74deg);
  }
  65% {
    clip: rect(112px, 9999px, 37px, 0);
    transform: skew(0.28deg);
  }
  70% {
    clip: rect(68px, 9999px, 101px, 0);
    transform: skew(0.63deg);
  }
  75% {
    clip: rect(3px, 9999px, 84px, 0);
    transform: skew(0.91deg);
  }
  80% {
    clip: rect(135px, 9999px, 26px, 0);
    transform: skew(0.37deg);
  }
  85% {
    clip: rect(49px, 9999px, 117px, 0);
    transform: skew(0.58deg);
  }
  90% {
    clip: rect(93px, 9999px, 11px, 0);
    transform: skew(0.22deg);
  }
  95% {
    clip: rect(20px, 9999px, 142px, 0);
    transform: skew(0.85deg);
  }
  100% {
    clip: rect(76px, 9999px, 53px, 0);
    transform: skew(0.41deg);
  }
}

@keyframes glitch-skew {
  0% {
    transform: skew(0deg);
  }
  10% {
    transform: skew(-1deg);
  }
  20% {
    transform: skew(2deg);
  }
  30% {
    transform: skew(-2deg);
  }
  40% {
    transform: skew(1deg);
  }
  50% {
    transform: skew(-1deg);
  }
  60% {
    transform: skew(3deg);
  }
  70% {
    transform: skew(-2deg);
  }
  80% {
    transform: skew(1deg);
  }
  90% {
    transform: skew(-1deg);
  }
  100% {
    transform: skew(0deg);
  }
}

.glitch-title:hover {
  animation: glitch-skew 0.3s infinite;
}

.glitch-title:hover::before {
  animation: glitch-anim 0.3s infinite;
}

.glitch-title:hover::after {
  animation: glitch-anim2 0.4s infinite;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out;
}

#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  text-align: center;
}

.logo-text {
  font-size: 120px;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 40px;
  letter-spacing: 20px;
}

.loading-bar-container {
  width: 300px;
  height: 3px;
  background: rgba(0, 255, 136, 0.2);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff88, #00ccff);
  width: 0%;
  animation: loadProgress 2s ease-out forwards;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

.loading-status {
  margin-top: 25px;
  font-size: 13px;
  color: rgba(0, 255, 136, 0.7);
  letter-spacing: 2px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

#start-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

#start-screen.active {
  display: flex;
  opacity: 1;
}

#start-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#start-content {
  text-align: center;
}

#start-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.subtitle {
  color: rgba(0, 255, 136, 0.8);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.start-button {
  background: transparent;
  border: 2px solid rgba(0, 255, 136, 0.4);
  color: #00ff88;
  padding: 18px 50px;
  font-family: "Courier New", monospace;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.start-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 136, 0.1);
  transition: left 0.3s;
}

.start-button:hover::before {
  left: 0;
}

.start-button:hover {
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-arrow {
  transition: transform 0.3s;
}

.start-button:hover .btn-arrow {
  transform: translateX(5px);
}

.start-hint {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(0, 255, 136, 0.5);
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}


@media (max-width: 768px) {
  .music-control {
    top: auto;
    bottom: 25px;
    left: 25px;
    right: auto;
    max-width: 200px;
    font-size: 11px;
    padding: 8px 10px;
  }
  
  .music-control > div {
    flex-direction: column;
    gap: 8px !important;
  }
  
  #portfolio-content {
    padding: 30px 20px;
    max-width: 95vw;
    max-height: 90vh;
  }
  
  .close-btn {
    top: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 12px;
  }
  
  #instructions {
    font-size: 11px;
    bottom: 140px;
  }
  
  #controls {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
  
  .control-btn {
    padding: 10px 18px;
    font-size: 11px;
  }
}

.main-tab-navigation {
  display: flex;
  gap: 0;
  margin: 30px 0 0;
  border-bottom: 2px solid rgba(0, 255, 136, 0.2);
  padding-bottom: 0;
  position: relative;
}

.main-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(0, 255, 136, 0.5);
  padding: 18px 35px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: -2px;
  text-transform: uppercase;
  overflow: hidden;
}

.main-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-tab-btn:hover::before {
  left: 100%;
}

.main-tab-btn:hover {
  color: rgba(0, 255, 136, 0.9);
  background: rgba(0, 255, 136, 0.03);
}

.main-tab-btn.active {
  color: #00ff88;
  border-bottom-color: #00ff88;
  background: rgba(0, 255, 136, 0.08);
  box-shadow: 0 -2px 20px rgba(0, 255, 136, 0.15);
}

.main-tab-btn.active::after {
  content: '▼';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #00ff88;
  animation: tabIndicatorBounce 1.5s infinite;
}

@keyframes tabIndicatorBounce {
  0%, 100% {
    bottom: -12px;
  }
  50% {
    bottom: -15px;
  }
}

.main-tab-content {
  display: none;
  animation: tabFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 40px;
}

.main-tab-content.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-navigation {
  display: flex;
  gap: 10px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: rgba(0, 255, 136, 0.7);
  padding: 12px 24px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.tab-btn:hover::before {
  width: 200%;
  height: 200%;
}

.tab-btn:hover {
  border-color: rgba(0, 255, 136, 0.6);
  color: #00ff88;
}

.tab-btn.active {
  background: rgba(0, 255, 136, 0.15);
  border-color: #00ff88;
  color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.tab-content {
  display: none;
  animation: contentSlideIn 0.4s ease-out;
}

.tab-content.active {
  display: block;
}

@keyframes contentSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.project-description {
  background: rgba(0, 255, 136, 0.03);
  border-left: 3px solid rgba(0, 255, 136, 0.4);
  padding: 20px;
  margin-bottom: 25px;
}

.project-description h4 {
  color: #00ff88;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 2px;
}

.tech-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.tech-tag {
  background: rgba(0, 255, 136, 0.1);
  color: #00ffaa;
  padding: 5px 12px;
  font-size: 11px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  letter-spacing: 1px;
}

.project-iframe-container {
  width: 100%;
  height: 600px;
  background: rgba(0, 20, 40, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.3);
  position: relative;
  overflow: hidden;
}

.iframe-header {
  background: rgba(0, 255, 136, 0.08);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.iframe-controls {
  display: flex;
  gap: 10px;
}

.iframe-btn {
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.4);
  color: #00ff88;
  padding: 6px 14px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.iframe-btn:hover {
  background: rgba(0, 255, 136, 0.25);
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.project-iframe {
  width: 100%;
  height: calc(100% - 50px);
  border: none;
  background: white;
}

.loading-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #00ff88;
  font-size: 14px;
  z-index: 10;
}

.loading-spinner {
  border: 3px solid rgba(0, 255, 136, 0.1);
  border-top: 3px solid #00ff88;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .main-tab-btn {
    padding: 15px 20px;
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .project-iframe-container {
    height: 400px;
  }
  
  .tab-navigation {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
}

.experience-card {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 35px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.1);
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.8s;
}

.experience-card:hover::before {
  left: 100%;
}

.experience-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 50px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.5);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.experience-title {
  flex: 1;
  min-width: 250px;
}

.experience-title h3 {
  color: #00ff88;
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.company-name {
  color: #00ccff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.experience-date {
  background: rgba(0, 255, 136, 0.1);
  color: #00ffaa;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.experience-date::before {
  font-size: 14px;
}

.experience-responsibilities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-responsibilities li {
  position: relative;
  padding: 12px 0 12px 30px;
  color: rgba(0, 255, 136, 0.85);
  line-height: 1.6;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}

.experience-responsibilities li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-size: 20px;
  line-height: 1.6;
  transition: all 0.3s;
}

.experience-responsibilities li:hover {
  color: #00ffaa;
  transform: translateX(5px);
}

.experience-responsibilities li:hover::before {
  color: #00ccff;
  transform: scale(1.2);
}

.experience-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
  margin: 30px 0;
}

.experience-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

@media (max-width: 768px) {
  .experience-card {
    padding: 20px;
  }
  
  .experience-header {
    flex-direction: column;
  }
  
  .experience-title h3 {
    font-size: 18px;
  }
  
  .experience-date {
    align-self: flex-start;
  }
  
  .experience-responsibilities li {
    font-size: 13px;
    padding-left: 25px;
  }
}


.featured-project-card {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 35px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.1);
}

.featured-project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.8s;
}

.featured-project-card:hover::before {
  left: 100%;
}

.featured-project-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 50px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.5);
}

.project-header-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.project-icon-large {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 204, 255, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.15);
}

.project-title-section {
  flex: 1;
}

.project-title-section h3 {
  color: #00ff88;
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3;
}

.project-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.project-type {
  background: rgba(138, 43, 226, 0.15);
  color: #b967ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  font-weight: 500;
}

.project-year {
  background: rgba(0, 204, 255, 0.1);
  color: #00ccff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 204, 255, 0.3);
}

.project-description-text {
  color: rgba(0, 255, 136, 0.85);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin: 20px 0;
}

.project-tech-section {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 255, 136, 0.15);
}

.tech-label {
  color: #00ff88;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-label::before {
  font-size: 16px;
}

.project-tech-stack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-tech-tag {
  background: rgba(0, 255, 136, 0.08);
  color: #00ffaa;
  padding: 8px 16px;
  font-size: 12px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-weight: 500;
}

.project-tech-tag:hover {
  background: rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00ff88, #00ccff);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .featured-project-card {
    padding: 25px;
  }
  
  .project-header-section {
    flex-direction: column;
  }
  
  .project-icon-large {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .project-title-section h3 {
    font-size: 20px;
  }
  
  .project-description-text {
    font-size: 14px;
  }
  
  .featured-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 15px;
    display: inline-block;
  }
}
.music-control {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 998;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 15, 30, 0.98));
  border: 1px solid rgba(0, 255, 136, 0.25);
  color: rgba(0, 255, 136, 0.8);
  padding: 0;
  cursor: default;
  font-family: "Courier New", monospace;
  backdrop-filter: blur(30px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15), 0 0 60px rgba(138, 43, 226, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-width: 280px;
}

.music-control::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
  animation: rotateBg 10s linear infinite;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.music-control.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px) scale(0.95);
}

.music-control:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.25), 0 0 80px rgba(138, 43, 226, 0.15);
  transform: translateY(-2px);
}

.music-player-content {
  position: relative;
  z-index: 1;
  padding: 0;
}

.album-art-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
}

.album-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.9);
}

.album-art-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px 20px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(10, 10, 10, 0.3) 20%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.85) 75%,
    rgba(10, 10, 10, 0.95) 100%);
  backdrop-filter: blur(8px);
}

.music-info {
  text-align: center;
  margin-bottom: 18px;
  padding: 0;
}

.song-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 136, 0.4);
}

.artist-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.music-controls-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 5px;
}

.play-pause-button {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #00ff88, #00ccff);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
  flex-shrink: 0;
}

.play-pause-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 255, 136, 0.6);
}

.play-pause-button:active {
  transform: scale(0.95);
}

.play-icon {
  color: #000;
  font-size: 16px;
  margin-left: 2px;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.volume-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.volume-slider-input {
  flex: 1;
  height: 4px;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.volume-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #00ff88, #00ccff);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
  transition: all 0.2s;
}

.volume-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
}

.volume-slider-input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #00ff88, #00ccff);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
  transition: all 0.2s;
}

.volume-slider-input::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
}