body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
}

.gallery-header {
  background-color: #000;
  padding: 40px 20px 20px;
  text-align: center;
  border-bottom: 2px solid #e10600;
}

.gallery-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  color: #e10600;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.back-button {
  display: inline-block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: #e10600;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #ff2c1f;
}

.gallery-grid {
  padding: 40px 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  object-fit: cover;
}

