body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  animation: fadeIn 2s ease-in;
}

.logo img {
  width: 150px;
  animation: glow 2s infinite alternate;
}

h1 {
  margin: 20px 0;
  font-size: 2rem;
  color: #00bfff;
  text-shadow: 0 0 10px #00bfff, 0 0 20px #1e90ff;
}

.links a {
  display: block;
  margin: 10px 0;
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(90deg, #1e90ff, #00bfff);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  animation: fadeUp 1s ease forwards;
}

.links a:hover {
  box-shadow: 0 0 20px #00bfff, 0 0 40px #1e90ff;
  transform: scale(1.05);
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px #00bfff); }
  to { filter: drop-shadow(0 0 20px #1e90ff); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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