@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at center, #0a0a0a 30%, #000 100%);
  color: #fff;
  overflow-x: hidden;
  height: 100vh;
  position: relative;
}

/* 🔧 Background Logo (change this image easily) */
.background {
  position: fixed;
  inset: 0;
  background-image: url('logo.png'); /* replace with your background image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none; /* ensures buttons remain clickable */
}

.hero {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 40px #ff2b00);
}

h1 {
  font-size: 4rem;
  color: #ff4d1a;
  margin: 20px 0 10px;
  text-shadow: 0 0 30px #ff4d1a;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 3;
}

.btn {
  color: #fff;
  border: 2px solid #ff4d1a;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 1rem;
  position: relative;
  z-index: 3;
}

.btn:hover {
  background: #ff4d1a;
  box-shadow: 0 0 20px #ff4d1a;
}

.btn.primary {
  background: #ff4d1a;
  box-shadow: 0 0 30px #ff4d1a;
}

footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  z-index: 3;
}

/* ✨ Moving stars overlay */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/KxCXJkG/stars.png') repeat;
  animation: moveStars 100s linear infinite;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: -2000px 2000px; }
}
