/* Import minimalist font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap');

/* General */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Home Hero */
.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Logo */
.logo {
  max-width: 250px;
  z-index: 10;
  margin-bottom: 2rem;
}

/* Buttons */
.home-buttons {
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

.home-buttons a {
  padding: 0.8rem 1.6rem;
  background: #000;
  border: 1px solid #3b82f6;
  border-radius: 6px;
  color: #3b82f6;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transition: 0.2s;
  font-size: 0.9rem;
}

.home-buttons a:hover {
  background: #3b82f6;
  color: #000;
}

/* Particle canvas */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Subscribe popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.popup-content {
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%; /* responsive */
  text-align: center;
  position: relative;
}

.popup-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.popup-content input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ffffff30;
  background: #000;
  color: #fff;
}

.popup-content button {
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  border: 1px solid #3b82f6;
  background: #3b82f6;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.popup-content button:hover {
  background: #60a5fa;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hide popup initially */
.hidden {
  display: none;
}

/* ------------------ */
/* Mobile responsiveness */
@media (max-width: 768px) {
  .logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
  }

  .home-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .home-buttons a {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

  .popup-content h2 {
    font-size: 1.3rem;
  }

  .popup-content input, .popup-content button {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}