body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
  text-align: center;
}

h1 {
  padding: 20px;
  font-size: 2em;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.grid-item {
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.grid-item:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  font-size: 1.2em;
  font-weight: bold;
  box-sizing: border-box;
}

.smoke-particle {
  position: fixed;
  background: rgba(225,98,15,0.3);
  border-radius: 60%;
  pointer-events: none;
  filter: blur(10px);
  animation: smokeRise 2s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes smokeRise {
  to {
    opacity: 0;
    transform: translateY(-50px) scale(7);
  }
}