body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: white;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(120deg, #ffe600, #ffb300);
  color: black;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.cta {
  padding: 15px 25px;
  border: none;
  background: black;
  color: yellow;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
}

/* GALLERY */
.gallery {
  padding: 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.grid img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #ffe600;
  transition: transform 0.2s;
}

.grid img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* PRODUCTS */
.products {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.card {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 20px;
  width: 250px;
  border-radius: 12px;
  text-align: center;
}

.card .tag {
  color: #ffe600;
  font-size: 0.8rem;
}

.card button {
  margin-top: 10px;
  padding: 10px;
  background: #ffe600;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* AI PANEL */
.ai-panel {
  padding: 40px;
  text-align: center;
}

.panel {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  width: 60%;
  margin: auto;
  border: 1px solid #333;
}

.bar {
  height: 10px;
  background: #333;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  width: 70%;
  background: #ffe600;
  animation: load 2s infinite alternate;
}

.b2 { width: 40% !important; }
.b3 { width: 90% !important; }

@keyframes load {
  from { filter: brightness(1); }
  to { filter: brightness(1.5); }
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  opacity: 0.6;
}
