* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #000000, #111111, #000000);
  color: orange;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background glowing animation */
.bg-animation {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,140,0,0.1) 10%, transparent 60%);
  animation: moveBg 10s linear infinite;
}

@keyframes moveBg {
  0% { transform: translate(-25%, -25%); }
  50% { transform: translate(0%, 0%); }
  100% { transform: translate(-25%, -25%); }
}

.container {
  position: relative;
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.logo {
  width: 260px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px orange);
}

/* BIGGER IMAGE */
.main-img {
  width: 350px;
  max-width: 90%;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.4s;
  animation: float 3s ease-in-out infinite;
}

.main-img:hover {
  transform: scale(1.08);
}

/* floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

#typing-title {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px orange;
}

/* Hover typing text */
.hover-text {
  font-size: 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.hover-text:hover {
  color: #fff;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 30px;
  border: 2px solid orange;
  border-radius: 30px;
  text-decoration: none;
  color: orange;
  transition: 0.3s;
  font-weight: bold;
}

.btn:hover {
  background: orange;
  color: black;
  box-shadow: 0 0 15px orange;
  transform: scale(1.1);
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}