
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: black;
  color: white;
  overflow: hidden;
}

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #111 0%, #000 100%);
  z-index: -1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo {
  max-width: 300px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#countdown {
  font-size: 2em;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}


.cta-popup-btn {
  background: linear-gradient(135deg, #00bfff, #0066ff);
  color: white;
  padding: 15px 25px;
  font-size: 1em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}
.cta-popup-btn:hover {
  background: linear-gradient(135deg, #0066ff, #0033cc);
}

.popup-container {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-form {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.popup-form h2 {
  color: white;
  margin-bottom: 20px;
}

.popup-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  background: #eee;
  font-family: 'Orbitron', sans-serif;
}

.popup-form button {
  width: 100%;
  padding: 10px;
  background: #0066ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
}

.popup-form button:hover {
  background: #0033cc;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 24px;
  cursor: pointer;
}



.footer-contact a:hover {
  text-decoration: underline;
}


.footer-contact {
  position: fixed;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.8em;
  color: #aaa;
  font-family: 'Orbitron', sans-serif;
  z-index: 0;
}
.footer-contact a {
  color: #00bfff;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
