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

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: "Courier New", monospace;
  padding: 5px;
  min-height: 100vh;
}

.neofetch-container {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  align-items: flex-start;
}

.neofetch-logo {
  flex-shrink: 0;
}

.neofetch-logo pre {
  color: #730000;
  font-size: 7px;
  line-height: 1.1;
  white-space: pre;
  font-weight: normal;
  letter-spacing: 0;
}

.neofetch-info {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
}

.info-row {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  align-items: center;
}

.info-row.header {
  margin-bottom: 8px;
  font-weight: bold;
}

.user-host {
  color: #730000;
  font-weight: bold;
}

.info-row.separator {
  margin-bottom: 8px;
}

.info-row.separator::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-top: 4px;
}

.label {
  color: #730000;
  font-weight: normal;
  min-width: 90px;
  display: inline-block;
}

.label::after {
  content: ": ";
}

.value {
  color: #ffffff;
}

.color-palette {
  margin-top: 16px;
  padding-top: 8px;
}

.color-row {
  display: flex;
  gap: 6px;
}

.color {
  width: 20px;
  height: 13px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

/* Typing animation */
.page-title {
  font-size: 13px;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  width: fit-content;
}
.Options {
  font-size: 13px;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  width: fit-content;
}

.Options::after {
  content: "▮";
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 33ch;
  }
}

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

.page-title {
  animation: typewriter 3.3s steps(33, end) 1 normal both;
}
.Options {
  animation: typewriter 3.3s steps(33, end) 1 normal both;
  animation-delay: 3.3s;
}
.neofetch-container {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  align-items: flex-start;
  opacity: 0;
  animation: fadeIn 0s ease-in 3.3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .neofetch-container {
    flex-direction: column;
    gap: 20px;
  }

  .neofetch-logo pre {
    font-size: 9px;
  }

  body {
    padding: 15px;
  }
}
