html {
  scroll-behavior: smooth;
}

/* Navbar glass effect */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(255, 255, 255, 0.05); /* transparent white */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */

  backdrop-filter: blur(12px); /* main frosted effect */
  -webkit-backdrop-filter: blur(12px); /* Safari support */

  z-index: 1000;
  padding: 0 4rem;
}

/* Inside content flex */
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  height: 32px;
  width: auto;
}
.logo-span {
  color: white;
  font-size: 1.2rem;
}

/* Nav links */
nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: opacity 0.3s;
}
nav a:hover {
  opacity: 0.6;
}

/* CTA button */
.cta-nav {
  background: linear-gradient(135deg, #e50914, #b20710);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta-nav:hover {
  background: linear-gradient(135deg, #ff1a25, #c50f16);
}

#togglePlay {
  background: rgba(255, 255, 255, 0.05); /* transparent white */
  color: white;
}
.ul-specification li {
  justify-content: flex-start;
}

.w-5 {
  object-fit: cover;
}

._myflex {
  justify-content: center;
}