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

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a0000, #0d0d0d);
}

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

.tagline {
  font-size: 18px;
  color: #bbb;
}

.buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  background: #a0002a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.btn.secondary {
  background: #333;
}

.section {
  max-width: 1500px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 15px;
}

.section p {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

.gallery img {
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 40px;
  color: #777;
}