/* Base Styling */
body {
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at 20% 30%, #0d0d1a, #000);
  color: #fff;
}

/* Starfield Canvas */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Push behind everything */
  background: #000;
}


h1, h2, h3, .feature {
  font-family: 'Orbitron', sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1583511655857-d19b4f2d1f5d?fit=crop&w=1920&q=80') no-repeat center center/cover;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 30, 0.6);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 0 0 20px #0ff;
}

.hero .nova {
  color: #ff00ff;
  text-shadow: 0 0 15px #1f081f, 0 0 15px #ff00ff;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

/* Buttons */
.cta, .btn-custom {
  background: linear-gradient(90deg, #0ff, #ff00ff);
  border: none;
  color: #040313 !important;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover, .btn-custom:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #0ff, 0 0 30px #ff00ff;
}

/* Product Cards */
.product-card {
  background: #111;
  border: 2px solid #333;
  transition: 0.3s ease;
  border-radius: 10px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Ensure card images are cropped and uniform */
.card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card:hover {
  box-shadow: 0 0 20px #0ff, 0 0 30px #ff00ff;
  transform: translateY(-5px);
}

.card-title {
  color: #fff;
}

/* About Section */
.about {
  background: linear-gradient(180deg, #0b0b1f, #000);
  border-top: 4px solid #0ff;
  border-bottom: 4px solid #ff00ff;
}

/* Features */
.feature {
  background: #111;
  border: 2px solid #333;
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s;
}

.feature:hover {
  box-shadow: 0 0 15px #0ff, 0 0 25px #ff00ff;
}

/* Footer */
footer {
  background: #000;
  border-top: 2px solid #0ff;
}

footer a {
  color: #0ff;
  text-decoration: none;
}

footer a:hover {
  color: #ff00ff;
}

/* Responsive Hero Content */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content .cta {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-content .cta {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}
