/* --- Global Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* --- Header / Navigation --- */
.header {
  width: 100%;
  background-color: rgba(0,0,0,0.85);
  border-bottom: 3px solid #00eaff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #00eaff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 25px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00eaff;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.35);
}

.hero-content h2 {
  font-size: 42px;
  color: #00eaff;
}

.hero-content p {
  margin-top: 10px;
  font-size: 18px;
  color: #cfcfcf;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background-color: #00eaff;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #008bbd;
}

/* --- Products Section --- */
.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  padding: 40px 20px;
}

.product-card {
  width: 270px;
  padding: 20px;
  background-color: rgba(0,0,0,0.65);
  border: 2px solid #00eaff;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px #00eaff;
}

.product-card img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.product-card h3 {
  color: #00eaff;
  margin-bottom: 8px;
}

.product-card p {
  color: #fff;
  font-size: 16px;
}

/* --- Footer --- */
footer {
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.85);
  border-top: 3px solid #00eaff;
  padding: 20px 0;
  font-size: 14px;
  color: #ccc;
}
