@font-face{
    font-family: "b";
    src:url("burbankbigcondensed_black.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
}





body {                    
     font-family: "b";
     margin: 0;
    padding-top: 120px;
     }

nav {

    display: flex;
    background-color: rgb(255, 255, 255);
    padding: 40px;
    justify-content: flex-end;
    align-items: center;
}





  

    .img {
       
        background-color: #0a0a0f;
        padding: 50px;
         border: none;
         display: block;
    }

   h1 {
    font-size: 60px;
   }
   h2 {
    color: rgb(15, 15, 15);
   }
    .autoaim {
        border-radius: 15px;
    }


   body {
    user-select: none;
  background-color: #0a0a0f; /* sfondo scuro */
  color: #fff;
  font-family : Arial, sans-serif;
}

/* Contenitore per mettere più card accanto */
.products-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
  padding: 20px;
  
}

/* --- CARD PRODOTTO --- */
.product-card {
  background: radial-gradient(circle at top, #18181f, #0f0f14);
  border: 2px solid #00a2ff;
  border-radius: 20px;
  padding: 25px;
  width: 280px;

  text-align: center;
  box-shadow: 0 0 15px #0004ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px #0004ff;
  border-color:#00a2ff;
}

/* Immagine */
.product-image {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

/* Titolo */
.product-title {
  font-size: 22px;
  margin: 10px 0;
  color: #ffffff;
}

/* Prezzo */
.product-price {
  font-size: 26px;
  color: #ff0000;
  font-weight: bold;
  margin: 10px 0 20px;
}

/* Bottone */
.buy-btn {
  text-decoration: none;
  background: linear-gradient(90deg, #0004ff, #00a2ff);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: linear-gradient(90deg, #0004ff, #00a2ff);
  box-shadow: 0 0 15px #0004ff ;
}

/* Lista features */
.features {
  text-align: left;
  margin-top: 25px;
  padding-left: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.8;
}

.features li::before {
  content: "✔ ";
  color:  #00a2ff;
}

/* 🔹 Navbar principale */
.navbar {

  font-family: "b";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg,#0a0a0f, #0a0a0f);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 1500;
}

/* logo */
.logo img {
  width: 55px;
  height: 55px;
  border-radius: 90px;
  margin-left: 15px ;
}

/* link di navigazione */
.nav-links {
  
    margin-right: 15px;
    transform: translate(-50px);
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
 
  color: #00a2ff;
}

/* 🔹 Barra promo sotto navbar */
.promo-bar {
  font-family: "b";
  position: fixed;
  top: 70px; /* subito sotto la navbar */
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #0004ff, #00a2ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 28px;
  z-index: 1400;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.promo-bar strong {
  color: #00c3ff;
}

/* ✨ Animazione per “ENDS SOON” */
.promo-bar .blink {
  color: #ffffff;
  animation: blinkText 1.5s infinite ease-in-out;
}

/* keyframes dell'effetto lampeggio */
@keyframes blinkText {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* 🔹 Sezione principale */
.hero {
  text-align: center;
  margin-top: 33px;
}

.hero h1 {
  display: inline-block;
  transform: scaleX(1.3);
  text-shadow: 0 0 1px rgb(174, 228, 255);
  font-family: "B";
  font-size: 66px;
  font-weight: 1000;
  color: white;
  
}

.hero span {
   
  color: #00a2ff;
  text-shadow: 0 0 15px #0004ff;
}


html {
  scroll-behavior: smooth;
}

.reviews1 {
  
  
  color: white;
  font-size: 30px;
  font-family: "b";
  text-align: center;
  font-weight: 700;
  h2 {
    font-size: 30px;
    color: white;
  }
}
.viola {
  color: #00a2ff;
  text-shadow:0 0 15px #0004ff ;
}


.reviews-container {
  font-size: 17px;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 30 auto;
}

.review-box {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 30px;
  width: 320px;
  box-shadow: 0 0 15px #0004ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px #0004ff;
}

.stars {
  color: #ffd700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.review-box h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
}

.review-box p {
  color: #ccc;
  font-size: 0.95em;
  margin: 15px 0 25px;
  line-height: 1.5;
}

.author {
  border-top: 1px solid #333;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  ;
}

.author span {
  font-size: 0.9em;
  color: #999;
}