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

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0b0b0b;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  flex: 1;
  width: 100%;
  max-width: 400px;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
  animation: popIn 0.8s ease forwards;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #ccc;
  margin-bottom: 30px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-button {
  padding: 15px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.3s ease;
}

.link-button2 {
  text-decoration: none;
}

.link-button.active {
  background-color: #e50914;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

.link-button.active:hover {
  background-color: #ff0f1f;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 15, 31, 0.8);
}

.coming-soon {
  background-color: #333;
  color: #888;
  cursor: not-allowed;
}

footer {
  margin-top: 40px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  user-select: none;
  width: 100%;
  max-width: 400px;
}

footer hr {
  border: 0;
  border-top: 1px solid #222;
  margin-bottom: 15px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 500px) {
  .logo {
    width: 120px;
  }
  h1 {
    font-size: 1.5rem;
  }
}
