body, html {
  margin: 0;
  padding: 0;
  height: calc(100dvh - 40px);
  padding-top: 40px;
  background: #000;
  color: white;
  font-family: Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

#eventGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  max-height: 100%;
  overflow-y: auto;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.event-tile {
  width: 220px;
  background: #111;
  border: 1px solid #333;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-tile:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.event-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  body, html {
    height: 100vh;
    padding: 0;
  }
}