.image-container {
  position: relative;
  width: 100%;
  display: inline-block;
}
.image-container img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.image-container .hd-label {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 5px;
  border-radius: 3px;
  z-index: 4;
  pointer-events: none;
}
.image-container:hover .hd-label {
  background-color: rgba(0, 0, 0, 0.8);
}
.rating-ring {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 60px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}
.rating-text {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 16px;
  z-index: 5;
  pointer-events: none;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f7f9;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: #1a1a1a;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.logo {
  position: absolute;
  left: 20px;
}
.logo img {
  height: 50px;
  transition: transform 0.9s ease;
}
.logo img:hover {
  transform: scale(1.08);
}
.header-title {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
}
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 10px;
  gap: 20px;
  flex: 1;
}
.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  max-width: 100%;
  border-radius: 8px;
}
.drone-name {
  font-size: 1.3em;
  margin: 15px 0 10px;
  font-weight: bold;
  color: #333;
}
.description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}
.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.whatsapp-btn:hover {
  background-color: #1ebe5a;
}
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.95em;
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  .logo {
    position: static;
    margin-bottom: 10px;
  }
  .header-title {
    margin-top: 10px;
  }
}
