
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --dark-bg: #050816;
  --light-bg: #1a1a2e;
  --accent-color: #4e00c2;
  --highlight-color: #8a2be2;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark-bg);
  color: white;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", sans-serif;
}

/* Modern scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    var(--accent-color),
    var(--highlight-color)
  );
  border-radius: 5px;
}

/* 3D Card effects */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-3d:hover {
  transform: rotateY(5deg) rotateX(5deg) translateZ(10px);
}

/* Glowing effects */
.glow {
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
  transition: box-shadow 0.3s ease;
}

.glow:hover {
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

/* Advanced gradient background */
.advanced-gradient {
  background: linear-gradient(
    125deg,
    #050816 0%,
    #0d0d2b 25%,
    #1a1a40 50%,
    #2c1361 75%,
    #050816 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animated text */
.animated-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--highlight-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border 0.3s;
}

/* 3D Skill progress bars */
.skill-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin: 8px 0;
  transform: translateZ(0);
  perspective: 1000px;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--highlight-color)
  );
  border-radius: 4px;
  position: relative;
  transform-origin: left;
  animation: slideIn 1s forwards;
  transform: scaleX(0);
}

@keyframes slideIn {
  to {
    transform: scaleX(1);
  }
}

/* Grid background */
.grid-bg {
  background-size: 50px 50px;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    );
}

/* 3D Image hover */
.image-3d {
  transition: transform 0.5s;
  transform-style: preserve-3d;
}

.image-3d:hover {
  transform: scale(1.05) rotateY(-5deg);
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.5);
}

/* Vertical timeline styling */
.timeline-container {
  position: relative;
  width: 100%;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--accent-color),
    var(--highlight-color)
  );
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
  perspective: 1000px;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--highlight-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
  z-index: 1;
}

.timeline-content {
  width: calc(50% - 40px);
  background: rgba(26, 26, 46, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(78, 0, 194, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.5s, box-shadow 0.5s;
}

.timeline-content:hover {
  transform: translateZ(30px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-right {
  margin-left: calc(50% + 40px);
}

.timeline-left {
  margin-right: calc(50% + 40px);
}

/* Parallax effect */
.parallax {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.parallax-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(0);
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Glass effect */
.glass-morphism {
  background: rgba(26, 26, 46, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* For WebKit browsers */
input,
textarea {
  background-color: rgba(30, 30, 60, 0.5) !important;
  color: white !important;
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.5) !important;
}

/* Canvas for background effects */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

  /* Animation keyframes */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes orbit-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
  }
  
  @keyframes char-reveal {
    0% { opacity: 0; transform: translateY(100%); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slide-up {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
  }
  
  @keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
  }
  
  @keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(6px); opacity: 0; }
  }
  
  @keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-5deg); }
  }
  
  /* Apply animations */
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  
  .animate-float-slow {
    animation: float 8s ease-in-out infinite;
  }
  
  .animate-float-delayed {
    animation: float 7s ease-in-out 1s infinite;
  }
  
  .animate-orbit {
    animation: orbit 20s linear infinite;
  }
  
  .animate-orbit-reverse {
    animation: orbit-reverse 25s linear infinite;
  }
  
  .animate-char-reveal {
    display: inline-block;
    opacity: 0;
    animation: char-reveal 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
  
  .animate-slide-up {
    animation: slide-up 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
  
  .animate-fade-in {
    /* opacity: 0; */
    animation: fade-in 1s ease forwards;
  }
  
  .animate-pulse-slow {
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .animate-scroll-wheel {
    animation: scroll-wheel 1.5s infinite;
  }
  
  .animate-wave {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: wave 1.5s ease-in-out infinite;
  }
  
  .pulsating-glow {
    animation: pulse-glow 6s ease-in-out infinite;
  }
  
  /* 3D effects */
  .perspective-3d {
    perspective: 1000px;
  }
  
  .tilt-container {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
  }
  
  /* Particle container */
  .particle-container {
    pointer-events: none;
  }

  .journey-node {
    transition: all 0.5s ease;
  }
  
  .journey-node:hover {
    transform: translateX(5px);
  }
  
  /* Generate particles for about section */
  .about-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    opacity: 0.6;
  }
  
  /* Animation for nodes to appear one by one - add this if you want to use AOS library */
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  
   /* Skill bar animation */
   @keyframes skill-fill {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
  }
  
  .animate-skill {
    animation: skill-fill 1.5s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
    animation-play-state: paused;
  }
  
  /* Floating icon animation with varied paths */
  @keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(-5px, -25px) rotate(-5deg); }
    75% { transform: translate(-15px, -15px) rotate(-2deg); }
  }
  
  @keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(-5deg); }
    50% { transform: translate(5px, -20px) rotate(5deg); }
    75% { transform: translate(15px, -5px) rotate(2deg); }
  }
  
  .floating-icon:nth-child(odd) {
    animation: float-1 8s ease-in-out infinite;
  }
  
  .floating-icon:nth-child(even) {
    animation: float-2 9s ease-in-out infinite;
  }

   /* Perspective container */
   .perspective-900 {
    perspective: 900px;
  }
  
  /* 3D preservation */
  .preserve-3d {
    transform-style: preserve-3d;
  }
  
  /* Backface visibility */
  .backface-hidden {
    backface-visibility: hidden;
  }
  
  /* Y-axis rotation for card flip */
  .my-rotate-y-180 {
    transform: rotateY(180deg);
  }
  
  /* For Safari support */
  @media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
      .safari-fix {
        transform: translateZ(0);
      }
    }
  }


    /* Perspective container */
    .perspective-900 {
      perspective: 900px;
    }
    
    /* 3D preservation */
    .preserve-3d {
      transform-style: preserve-3d;
    }
    
    /* Backface visibility */
    .backface-hidden {
      backface-visibility: hidden;
    }
    
    /* Y-axis rotation for card flip */
    .my-rotate-y-180 {
      transform: rotateY(180deg);
    }
    
    /* Group hover for triggering the rotation */
    .group:hover .group-hover\:my-rotate-y-180 {
      transform: rotateY(180deg);
    }
    
    /* Text gradient effect */
    .text-gradient {
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    
    /* Floating animations */
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-20px) rotate(2deg); }
    }
    
    @keyframes float-slow {
      0%, 100% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-15px) rotate(-5deg); }
    }
    
    .animate-float {
      animation: float 6s ease-in-out infinite;
    }
    
    .animate-float-slow {
      animation: float-slow 8s ease-in-out infinite;
    }
  
    /* Safari fix */
    @supports (-webkit-touch-callout: none) {
      .preserve-3d {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
      }
      
      .backface-hidden {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
      }
    }

     /* Add these animations to your CSS */
  @keyframes float-random {
    0%, 100% {
      transform: translateY(0) rotate(0);
    }
    25% {
      transform: translateY(-15px) rotate(5deg);
    }
    50% {
      transform: translateY(-7px) rotate(-2deg);
    }
    75% {
      transform: translateY(-20px) rotate(3deg);
    }
  }

  .animate-float-random {
    animation: float-random 15s ease-in-out infinite;
  }

  @keyframes pulse-slow {
    0%, 100% {
      opacity: 0.1;
    }
    50% {
      opacity: 0.3;
    }
  }

  .animate-pulse-slow {
    animation: pulse-slow 10s ease-in-out infinite;
  }


   /* Add these new animations */
   @keyframes shooting-star {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translateX(400%) translateY(400%) rotate(45deg);
      opacity: 0;
    }
  }
  
  .animate-shooting-star {
    animation: shooting-star 6s linear infinite;
    animation-delay: 3s;
  }
  
  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .animate-spin-slow {
    animation: spin-slow 20s linear infinite;
  }


  @keyframes shooting-star {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translateX(500%) translateY(500%) rotate(45deg);
      opacity: 0;
    }
  }
  
  @keyframes shooting-star-delayed {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(15deg);
      opacity: 0;
    }
    50% {
      opacity: 0.8;
    }
    100% {
      transform: translateX(500%) translateY(200%) rotate(15deg);
      opacity: 0;
    }
  }
  
  .animate-shooting-star {
    animation: shooting-star 6s linear infinite;
    animation-delay: 3s;
  }
  
  .animate-shooting-star-delayed {
    animation: shooting-star 8s linear infinite;
    animation-delay: 7s;
  }
  
  .animate-pulse-super-slow {
    animation: pulse 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  .animate-float-super-slow {
    animation: float 15s ease-in-out infinite;
  }
  
  .animate-float-orbit {
    animation: orbit 40s linear infinite;
  }
  
  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
  }

   /* Additional animations for the planets */
   @keyframes spin-super-slow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  @keyframes spin-fast {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  .animate-spin-super-slow {
    animation: spin-super-slow 18s linear infinite;
  }
  
  .animate-spin-fast {
    animation: spin-fast 5s linear infinite;
  }
  
  /* Asteroid belt styling */
  .asteroid {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
  }
  @keyframes pulse-superfast {
    0%, 100% { transform: scale(0.9); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
  }
  
  @keyframes spin-fast-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
  }
  
  @keyframes spin-medium-speed {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes spin-slow-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
  }
  
  @keyframes expand-fade {
    0% { transform: scale(0.7); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
  }
  
  /* Wormhole animations */
  @keyframes wormhole-pulse {
    0% { transform: scale3d(1, 1, 1) rotateX(70deg); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale3d(1.3, 1.3, 1.3) rotateX(70deg); opacity: 0; }
  }
  
  /* Astronaut animations */
  @keyframes float-astronaut {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
  }
  
  @keyframes arm-wave {
    0%, 100% { transform: rotate(30deg); }
    50% { transform: rotate(45deg); }
  }
  
  .animate-pulse-superfast {
    animation: pulse-superfast 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  .animate-spin-fast-reverse {
    animation: spin-fast-reverse 8s linear infinite;
  }
  
  .animate-spin-medium-speed {
    animation: spin-medium-speed 15s linear infinite;
  }
  
  .animate-spin-slow-reverse {
    animation: spin-slow-reverse 25s linear infinite;
  }
  
  .animate-expand-fade {
    animation: expand-fade 3s ease-out infinite;
  }
  
  .animate-wormhole-pulse {
    animation: wormhole-pulse 3s ease-out infinite;
  }
  
  .animate-float-astronaut {
    animation: float-astronaut 6s ease-in-out infinite;
  }
  
  .astronaut-arm-left {
    animation: arm-wave 3s ease-in-out infinite;
    animation-delay: 1s;
  }
  
  .astronaut-arm-right {
    animation: arm-wave 2.5s ease-in-out infinite;
  }
  
  /* Create supernova particles */
  .supernova-particles {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .supernova-particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform-origin: center;
  }
  
  .wormhole-ring {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
  }
  
  .supernova-core {
    box-shadow: 
      0 0 30px rgba(255, 255, 255, 0.8),
      0 0 60px rgba(139, 92, 246, 0.6),
      0 0 100px rgba(139, 92, 246, 0.4);
  }

  @keyframes rotate-3d {
    0% { transform: rotate3d(1, 1, 1, 0deg); }
    100% { transform: rotate3d(1, 1, 1, 360deg); }
  }
  
  .asteroid {
    box-shadow: 0 0 2px rgba(255,255,255,0.2);
    border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
    backdrop-filter: blur(1px);
  }
  
  .asteroid:hover {
    transform: scale(1.2);
  }
  
  /* Enhanced dust particle animations */
  .dust-particle {
    opacity: 0.6;
    filter: blur(0.5px);
  }
  
  @keyframes float-random {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(3px, -2px); }
    50% { transform: translate(-2px, 4px); }
    75% { transform: translate(2px, 1px); }
  }

  .galaxy-spiral {
    width: 450px;
    height: 450px;
    background: radial-gradient(
      circle at 40% 40%,
      rgba(124, 58, 237, 0.3),
      rgba(79, 70, 229, 0.25),
      rgba(56, 30, 114, 0.15),
      transparent 70%
    );
    filter: blur(50px);
    opacity: 0.6;
    animation: pulse-galaxy 15s ease-in-out infinite alternate;
    z-index: 2;
    transform-origin: center;
  }
  
  .galaxy-elliptical {
    width: 380px;
    height: 300px;
    background: radial-gradient(
      ellipse at center,
      rgba(139, 92, 246, 0.25),
      rgba(167, 139, 250, 0.2),
      rgba(103, 65, 217, 0.15),
      transparent 75%
    );
    filter: blur(40px);
    opacity: 0.5;
    animation: pulse-galaxy 18s ease-in-out infinite alternate-reverse;
    z-index: 2;
  }
  
  .galaxy-dust {
    background: linear-gradient(
      90deg,
      transparent,
      rgba(139, 92, 246, 0.2),
      rgba(139, 92, 246, 0.25),
      rgba(139, 92, 246, 0.2),
      transparent
    );
    filter: blur(25px);
    opacity: 0.6;
    animation: glow-pulse 12s ease-in-out infinite;
    z-index: 2;
  }
  
  .galaxy-core {
    box-shadow: 0 0 15px 5px rgba(139, 92, 246, 0.3);
    opacity: 0.7;
    z-index: 3;
  }
  
  .cosmic-filament {
    opacity: 0.4;
    filter: drop-shadow(0 0 2px rgba(139, 92, 246, 0.4));
    z-index: 2;
  }
  
  @keyframes pulse-galaxy {
    0%, 100% { 
      opacity: 0.4;
      transform: scale(1) rotate(0deg); 
    }
    50% { 
      opacity: 0.6;
      transform: scale(1.05) rotate(5deg); 
    }
  }
  
  @keyframes glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
  }

  .glow-blue {
    box-shadow: 0 0 15px 2px rgba(96, 165, 250, 0.5);
  }
  
  .glow-purple {
    box-shadow: 0 0 15px 2px rgba(167, 139, 250, 0.5);
  }
  
  .glow-pink {
    box-shadow: 0 0 15px 2px rgba(244, 114, 182, 0.5);
  }
  
  .glow-yellow-strong {
    box-shadow: 0 0 25px 5px rgba(252, 211, 77, 0.6);
  }
  
  .skill-tooltip {
    position: relative;
  }
  
  .skill-tooltip::after {
    content: attr(data-skill) " - " attr(data-level);
    position: absolute;
    width: max-content;
    background-color: rgba(15, 23, 42, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    transform: translateY(10px);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .skill-tooltip:hover::after {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
  
  @keyframes pulse-random {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
  
  .animate-pulse-random {
    animation: pulse-random 3s ease-in-out infinite;
    animation-delay: calc(var(--random-delay, 0) * 1s);
  }
  
  .animate-spin-super-slow {
    animation: spin 20s linear infinite;
  }
  
  .animate-ping-slow {
    animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
  }
  
  .orbit-ring {
    transition: all 0.5s ease;
  }
  
  .cosmic-skills-universe:hover .orbit-ring {
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .reduced-motion .animate-float,
.reduced-motion .animate-float-slow,
.reduced-motion .animate-float-delayed,
.reduced-motion .animate-pulse-slow,
.reduced-motion .animate-pulse-super-slow {
  animation-duration: 0.5s !important;
  animation-iteration-count: 1 !important;
}

.fallback-bg {
  background: linear-gradient(to bottom right, #050816, #1a1a2e, #050816);
}

.legacy-browser .glass-morphism {
  background-color: rgba(26, 26, 46, 0.8);
}

/* Add to style.css file */
.typewriter-text {
  display: inline-block;
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: #a78bfa;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}