body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(11, 11, 11);
    position: relative;
    font-family: "Courier New", Courier, monospace;
  }
  
.galaxy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    perspective: 1000px;
  }
  
.terminal {
    top: 60px;
    width: 80%;
    max-width: 800px;
    Background-color:rgba(32, 29, 29, 0.5);
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(35, 34, 34, 0.5);
    overflow: hidden;
    position: absolute;
    z-index: 999;
    color: #e6e6e6;
  }
  

@media (min-width: 1024px) {
  .terminal {
      top: 100px;
      width: 80%; 
  }
}


@media (max-width: 768px) {
  .terminal {
      top: 15vh; 
      width: 95%;
  }
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px;
    border-bottom: 2px solid #444;
  }
  
.buttons {
    display: flex;
    gap: 8px;
  }
  
.buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }
  
.close {
    background-color: #ff5f56;
  }
  
.minimize {
    background-color: #ffbd2e;
  }
  
.maximize {
    background-color: #27c93f;
  }
  
.title {
    color: #fff;
    font-size: 14px;
  }
  
.terminal-body {
    padding: 11px;
    display: flex;
    flex-direction: column;
  }
  
.terminal-main {
    display: flex;
  }
  .user {
    color: #00ff00;
  }
  
.path {
    color: #729fcf;
  }
  
.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 10 10 10px rgba(255, 255, 255, 0.8);
  }
  
.comet {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    filter: blur(2px);
  }
  
.beststar {
    position: absolute;
    background-color: #ffcc00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
    filter: blur(20px);
    animation: beststar-animation 2s infinite;
  }
  
@keyframes beststar-animation {
    0% {
      transform: translate(-50%, -50%) scale(1) translateZ(300px);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.5) translateZ(300px);
    }
    100% {
      transform: translate(-50%, -50%) scale(1) translateZ(300px);
    }
  }
  
@keyframes circularMotion {
    0% {
      transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
  }
  
.circular-star {
    animation: circularMotion 10s linear infinite;
  }
  
.comet {
    position: absolute;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0) 60%
    );
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
  }
  
.comet-tail {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(4px);
    z-index: -1;
  }
  
@keyframes cometMovement {
    0% {
      transform: translateX(0) translateY(0) rotate(0deg);
    }
    100% {
      transform: translateX(100vw) translateY(100vh) rotate(360deg);
    }
  }
  
@keyframes tailAnimation {
    0% {
      transform: scaleX(1);
      opacity: 0.7;
    }
    100% {
      transform: scaleX(5);
      opacity: 0;
    }
  }
  
.comet {
    animation: cometMovement 5s linear infinite;
  }
  
.comet-tail {
    animation: tailAnimation 5s linear infinite;
  }
  


.astronaut-icon {
    position: absolute;
    width: 80px;
    height: auto;
    z-index: 2;
    top: 50%;  
    left: 50%; 
    transform: translate(-50%, -50%);
    animation: circularMotion 10s infinite linear, verticalMotion 4s infinite ease-in-out;
}

@keyframes circularMotion {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(150px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(150px);
    }
}

@keyframes verticalMotion {
    0%, 100% {
        top: calc(50% - 50px);
    }
    50% {
        top: calc(50% + 50px);
    }
}

.parch_linux-icon {
    padding-left: 2vw;
    left: 1vw; 
    width: 20vw;
    height: auto;
    z-index: 1;
}


@media (min-width: 1024px) {
    .parch_linux-icon {
        padding-left: 30px;
        left: 10px;
        width: 130px;
    }
}


@media (max-width: 768px) {
    .parch_linux-icon {
        padding-left: 5vw;
        left: 2vw;
        width: 25vw;
    }
}

.terminal-system {
  padding-left: 5vw;
  color: #fff;
  width: auto;
  max-width: 90%;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .terminal-system {
      padding-left: 40px;
      width: auto;
  }
}

@media (max-width: 768px) {
  .terminal-system {
      padding-left: 20px;
      max-width: 95%;
  }
}

.terminal-system .label {
    color: #00ff00; 
}

.terminal-system .value {
    color: #ffffff; 
}

.terminal-system .valueos {
    font-weight: 600;
    color: #1a62e8;
}

.terminal-system .mevalueos {
  color: #ffff;
}

.cursor {
  animation: blinking 1s infinite;
}
@keyframes blinking {
  0% { clear: both; }
  50%{ color: transparent; }    
}