* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0A1428;
  color: white;
}

/* HERO */
.hero {
  height: 65vh;
  background: url("../img/hero.jpg") center/cover no-repeat;
  max-width: 1650px;
  margin: 40px auto;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,20,40,0.3), rgba(10,20,40,0.7));
}

.hero-content {
  position: relative;
  text-align: center;
  top: 30%;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  color: #00BFFF;
  text-shadow: 0 0 15px #00BFFF;
}

.hero p {
  margin-top: 10px;
  color: #ccc;
}

/* BUILDS */
.builds {
  padding: 60px 20px;
  text-align: center;
}

.builds h2 {
  margin-bottom: 40px;
  color: #00BFFF;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  width: 300px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0,191,255,0.2);
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,191,255,0.5);
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0,191,255,0.15);
  transition: 0.3s;
}

.feature-box h3 {
  color: #00BFFF;
  margin-bottom: 10px;
}

.feature-box:hover {
  box-shadow: 0 0 30px rgba(0,191,255,0.4);
  transform: translateY(-5px);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #050d1a;
  color: #888;
}
