* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #000000, #111111, #000000);
  color: orange;
  text-align: center;
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
}

/* Container */
.container {
  padding: 40px 20px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Logo */
.logo {
  width: 250px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

/* Text */
h1 {
  font-size: 2.5rem;
  text-shadow: 0 0 10px orange;
}

p {
  margin: 15px 0;
  color: #ffa500cc;
}

/* Buttons */
.buttons {
  margin-top: 20px;
}

.btn {
  text-decoration: none;
  padding: 12px 25px;
  margin: 10px;
  border: 2px solid orange;
  color: orange;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: orange;
  color: black;
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}