.home {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-header {
  padding: 21px 30px;
  border-bottom: 1px solid #333;
  position: relative;
  z-index: 10;
  background-color: #000;
}

.home-title {
  font-size: 18px;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
}

.home-container {
  display: flex;
  flex: 1;
  min-height: 0;
}

.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 40px 40px 40px;
  gap: 30px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: -150px;
  margin-top: -200px;
  z-index: 1;
}

.video-logo {
  width: 1600px;
  height: 900px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.video-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.afk-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 200px;
  position: relative;
  z-index: 2;
}

.nav-btn {
  padding: 12px 40px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  font-family: 'Courier New', Courier, monospace;
  transition: all 0.3s;
}

.nav-btn:hover {
  background-color: #fff;
  color: #000;
}

.social-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  filter: grayscale(100%);
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}
