@font-face {
  font-family: 'VCR OSD Mono';
  src: url('../fonts/vcr_osd_mono.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'VCR OSD Mono';
  overflow: hidden;
  height: 100vh;
  background-image: url('../images/Wallpaper.jpg');
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  transition: backdrop-filter 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 998;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.name {
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
  font-family: 'VCR OSD Mono';
  font-weight: normal;
  font-size: 25px;
}

.enter-button {
  font-family: 'VCR OSD Mono';
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 90%;
  max-width: 800px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.profile-row {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  margin: 20px 0;
}

.profile-container {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  width: 100px;
}

.girl {
  position: fixed;
  top: -5px;
  left: 20px;
  width: 200px;
  opacity: 1;
  z-index: 999;
  animation: swing 4s ease-in-out infinite alternate;
  transform-origin: top center;
  filter: contrast(200%) grayscale(1);
}

@keyframes swing {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}

@media screen and (max-width: 768px) {
  .girl {
    display: none;
  }
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.telegram {
  width: 30px;
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.discord {
  width: 38px;
  transition: transform 0.3s ease-in-out;
  position: relative;
  top: 5.5px;
}

.soundcloud {
  width: 38px;
  transition: transform 0.3s ease-in-out;
  position: relative;
  top: 5px;
}

.github {
  width: 32px;
  transition: transform 0.3s ease-in-out;
  position: relative;
  top: 11px;
}

.telegram:hover,
.discord:hover,
.soundcloud:hover,
.github:hover {
  transform: scale(1.1);
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px;
  transform: translateY(100%);
  transition: transform 1s ease-in-out;
}

.taskbar.visible {
  transform: translateY(0);
}

.taskbar-left {
  display: flex;
  gap: 10px;
  margin-left: 7px;
  align-items: center;
  order: 1;
}

.taskbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
  order: 2;
}

.taskbar-icon-img {
  width: 30px;
  height: 30px;
}

#windows-icon .taskbar-icon-img,
#music-icon .taskbar-icon-img {
  display: flex;
  width: 20px;
  height: 20px;
}

.custom-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  border: 1px solid white;
}

.window-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
}

.window-body {
  flex-grow: 1;
  padding: 10px;
}

#close-window {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.clock-container {
  display: flex;
  align-items: center;
}

#clock {
  font-family: 'VCR OSD Mono';
  font-weight: normal;
  font-size: 16px;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  z-index: 999;
  margin-right: 15px;
}