
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

body {
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  
  overflow-y: auto;
}
.gradient-bg {
 
  background: linear-gradient(rgb(77, 2, 77), #002133);
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: rgba(128, 0, 128, 0.74);
  height: 100px;
  position: relative; 
}


.nav-center {
  position: static;
  transform: none;
  flex-grow: 1;
  display: flex;
  justify-content: center;
 
}

.logo {
  height: 50px; 
  width: auto;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 40px; 
}

.nav-icon {
  width: 35px; 
  height: 35px;
  object-fit: contain;
  
}

.hamburger {
  
  width: 35px;
}


.hero-section {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 1000px;
  border: 4px solid #002133;
}



.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  padding: 60px 10%;
  background-color: #004c75;
  width: 100%;
}

.card {
  background-color: #000;
  width: 100;
  max-width: 500;
  border-radius: 12px;
  overflow: hidden;
  
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-img {
  width: 100%;
  display: block;
}

.card-content {
  padding: 20px;
  font-size: 1rem;
}

.buy-btn {
  margin-top: 15px;
  padding: 12px 30px;
  border-radius: 25px;
  background-color: #a2e8e4;
  font-weight: bold;
  transition: 0.3s;
}

.buy-btn:hover {
  background-color: #7fc9c5;
}


.footer-info {
  text-align: center;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.rating-img {
  max-width: 250px;
}

.platform-logos {
  display: flex;
  gap: 40px;
  align-items: center;
}

.platform-logos img {
  height: 35px;
  filter: brightness(0) invert(1); 
}


@media (min-width: 900px) {
  .product-grid {
      grid-template-columns: repeat(3, 1fr); 
      max-width: 1200px;
      margin: 0 auto;
  }
}