body {
  margin: 0;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1b1b1b;
  color: #e0e0e0;
  text-align: center;
  user-select: none;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: #be0000;
  letter-spacing: 1px;
}

section {
  margin-bottom: 4rem;
}

section h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  background: #2c2c2c;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: zoom-in;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
  transition: 0.2s;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 600px) {
  .gallery-item {
    width: 100%;
    height: auto;
  }
}
