/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Orbitron", sans-serif;
  background: #070707;
  color: white;
  overflow-x: hidden;
  position: relative;
}

/* GLOW BACKGROUND */

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
}

.glow-1 {
  width: 350px;
  height: 350px;
  background: #ff3c78;
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: #ff8a00;
  top: 300px;
  right: -100px;
}

.glow-3 {
  width: 250px;
  height: 250px;
  background: #ffe600;
  bottom: -100px;
  left: 40%;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 8%;
  position: relative;
  z-index: 100;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #ff3c78;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff8a00;
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;

  position: absolute;

  top: 100%;

  left: 0;

  min-width: 180px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 10px;

  padding: 10px 0;

  z-index: 999;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HERO */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  gap: 50px;
}

.hero-left {
  flex: 1;
}

.hero-tag {
  color: #ff8a00;
  font-size: 14px;
  letter-spacing: 3px;
}

.hero h1 {
  font-size: 120px;
  line-height: 100px;
  margin-top: 20px;
  color: white;
}

.hero h2 {
  margin-top: 30px;
  font-size: 28px;
  color: #ff3c78;
}

.hero p {
  margin-top: 20px;
  max-width: 600px;
  color: #cccccc;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

/* BUTTON */

.btn-primary {
  text-decoration: none;
  padding: 16px 35px;
  background: linear-gradient(45deg, #ff3c78, #ff8a00);

  color: white;
  border-radius: 10px;
  transition: 0.4s;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 20px #ff3c78,
    0 0 50px #ff3c78;
}

.btn-secondary {
  text-decoration: none;
  padding: 16px 35px;
  border: 1px solid #ff8a00;
  color: #ff8a00;
  border-radius: 10px;
  transition: 0.4s;
}

.btn-secondary:hover {
  background: #ff8a00;
  color: black;
}

/* HERO CARD */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 450px;
  height: 450px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 0 30px rgba(255, 60, 120, 0.3);
}

.hero-card img {
  width: 90%;
}

/* STATS */

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 50px 8%;
  flex-wrap: wrap;
}

.stat-box {
  width: 220px;
  text-align: center;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  padding: 30px;

  border-radius: 20px;
}

.stat-box h3 {
  color: #ff8a00;
  font-size: 40px;
}

/* SLIDER */

.slider {
  width: 85%;
  max-width: 1200px;

  height: 500px;

  margin: 0 auto;

  overflow: hidden;

  border-radius: 25px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 0 20px rgba(255, 60, 120, 0.25),
    0 0 40px rgba(255, 138, 0, 0.15);
}

.slide img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;

  background: #070707;
}

/* SECTION HEADER */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  color: #ff8a00;
}

.section-header h2 {
  font-size: 60px;
  margin-top: 10px;
}

/* PRODUCTS */

.best-seller {
  padding: 100px 8%;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  padding: 30px;

  border-radius: 25px;

  position: relative;

  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 30px rgba(255, 60, 120, 0.4);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.product-card h3 {
  margin-top: 20px;
}

.product-card p {
  margin-top: 10px;
  color: #cccccc;
}

.product-card span {
  display: block;
  margin-top: 20px;
  color: #ff8a00;
  font-size: 24px;
}

.product-badge {
  position: absolute;

  top: 20px;
  right: 20px;

  background: #ff3c78;

  padding: 8px 15px;

  border-radius: 20px;

  font-size: 12px;
}

/* CTA */

.cta {
  text-align: center;
  padding: 120px 8%;
}

.cta h2 {
  font-size: 80px;
}

.cta p {
  margin-top: 20px;
  margin-bottom: 40px;
  color: #cccccc;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h2 {
  color: #ff3c78;
}

footer p {
  margin-top: 10px;
}

/* RESPONSIVE */

@media screen and (max-width: 800px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 70px;
    line-height: 70px;
  }

  .hero-card {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .slide img {
    height: 300px;
  }

  .cta h2 {
    font-size: 40px;
  }
}
