
@font-face {
  font-family: 'HomeVideo';
  src: url('homevideo.ttf');
}

body {
  margin: 0;
  background: #0b0b0b;
  color: white;
  font-family: HomeVideo, monospace;
}

.container {
  display: flex;
  height: 100vh;
  padding: 40px;
  box-sizing: border-box;
}

.left {
  flex: 1;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 72px;
  margin: 0;
}

.subtitle {
  color: #777;
  font-size: 16px;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.btn {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 18px 32px;
  text-decoration: none;
  color: white;
  font-size: 20px;
}

.action-btn {
  font-family: 'HomeVideo', monospace;
  display: block;
  padding: 18px 26px;
  margin: 14px 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #2b2b2b, #1b1b1b);
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.action-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 25px rgba(170, 100, 255, 0.35);
  background: linear-gradient(135deg, #3a2a4d, #1f1628);
}

.logo {
  width: 140px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 25px rgba(170, 100, 255, 0.35));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 18px rgba(170, 100, 255, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 32px rgba(255, 140, 60, 0.45));
  }
  100% {
    filter: drop-shadow(0 0 18px rgba(170, 100, 255, 0.25));
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .left {
    text-align: center;
    margin-bottom: 30px;
  }

  .right {
    width: 100%;
  }

  .action-btn {
    width: 100%;
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  .subtitle {
    font-size: 14px;
  }
}

