@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=VT323&display=swap');

body {
  background-color: #050505;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23b2bfb8" class="bi bi-cursor-fill" viewBox="0 0 16 16"><path d="M14.082 2.182a.5.5 0 0 1 .103.557L8.528 15.467a.5.5 0 0 1-.917-.007L5.57 10.694.803 8.652a.5.5 0 0 1-.916l12.728-5.657a.5.5 0 0 1 .556.103z"/></svg>'),
    auto;
}
/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 12px;
  background: #000;
  border-left: 1px dashed #444;
}
::-webkit-scrollbar-thumb {
  background: #b2bfb8;
  border: 1px solid #000;
}

.pixel-card {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px dashed #5a635e;
  padding: 4px;
  position: relative;
}
.pixel-card-inner {
  border: 1px solid #2f3833;
  padding: 16px;
  position: relative;
  height: 100%;
}
.corner {
  position: absolute;
  color: #b2bfb8;
  font-size: 0.75rem;
  line-height: 1;
}
.nav-btn.active {
  background-color: #2f3833;
  color: #b2bfb8;
  border-color: white;
  box-shadow: 0 0 8px #b2bfb8;
}
.web-button {
  display: block;
  width: 88px;
  height: 31px;
  border-width: 1px;
  background-image: linear-gradient(
    to bottom right,
    var(--tw-gradient-from),
    black
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.web-button:hover {
  filter: brightness(1.25);
  transform: translateY(-2px);
}
.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.5) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.5;
}
.blinkie {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 18px;
  margin-right: 8px;
  margin-bottom: 8px;
  background-color: black;
  user-select: none;
}
.blinkie:hover {
  transform: scale(1.05);
}
.blinkie-bar {
  width: 6px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Windows 95 Button Style */
.win95-btn {
  background-color: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  box-shadow: 1px 1px 0px black;
}
.win95-btn:active {
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  box-shadow: none;
  transform: translate(1px, 1px);
}

.win95-border {
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.win95-inset {
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.clouds {
  opacity: 0.1;
  position: absolute;
  overflow: hidden;
  margin-top: 160px;
  margin-bottom: 160px;
  z-index: 2;
}

.first,
.second,
.third {
  width: 100%;
  height: 362px;
}

.first {
  top: 200px;
}

.second {
  top: 550px;
}

.third {
  top: 800px;
}

.clouds > div {
  width: 2505px;
  height: 100%;
  background: url(./assets/images/cloud.png);
  transform: translate3d(0, 0, 0);
}

.clouds .mover-1 {
  animation: moveSlideshow 15s linear infinite;
}

.clouds .mover-2 {
  animation: moveSlideshow 8s linear infinite;
}

.clouds .mover-3 {
  animation: moveSlideshow 18s linear infinite;
}

/* 8. Keyframes */
@keyframes moveSlideshow {
  100% {
    transform: translateX(-20%);
  }
}
