/* RESET */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #03070d;
  color: white;
}

/* CANVAS háttér (NAGYON FONTOS) */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* ✅ EZ A KULCS */
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: auto;
}

/*
.logo {
  width: 180px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 25px #2ea3ff);
}
*/

/* LOGO */
.logo {
  width: 320px;

  filter:
    drop-shadow(0 0 20px #2ea3ff)
    drop-shadow(0 0 40px rgba(46,163,255,0.6))
    drop-shadow(0 0 80px rgba(46,163,255,0.3));
}

/* TITLE */
h1 {
  font-size: 44px;
  line-height: 1.2;
  margin: 0;
}

h1 span {
  color: #2ea3ff;
  text-shadow: 0 0 15px #2ea3ff;
}

/* TEXT */
p {
  max-width: 600px;
  margin-top: 20px;
  color: #9bb4cc;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  margin-top: 30px;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg, #2ea3ff, #0077ff);
  color: white;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 25px rgba(46,163,255,0.8);
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}
