body {
  font-family: 'Orbitron', Arial, sans-serif;
  background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: #e0e6f6;
}
.futuristic-title {
  text-align: center;
  margin: 40px 0 30px 0;
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  color: #00ffe7;
  text-shadow: 0 0 12px #00ffe7, 0 0 32px #1a2980;
  font-family: 'Orbitron', Arial, sans-serif;
}
#gallery, .futuristic-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 30px 10px 60px 10px;
}
#gallery img {
  width: 260px;
  height: 160px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 18px;
  box-shadow: 0 0 16px #00ffe7, 0 0 32px #1a2980;
  border: 2px solid #00ffe7;
  background: #181f2a;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
#gallery img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 32px #00ffe7, 0 0 64px #1a2980;
  border-color: #a259ff;
}
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 20, 40, 0.92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.modal-content {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 0 32px #00ffe7, 0 0 64px #1a2980;
  border: 2px solid #a259ff;
  display: block;
  margin: auto;
  background: #181f2a;
}
.close {
  position: absolute;
  top: 36px;
  right: 60px;
  color: #fff;
  font-size: 56px;
  font-weight: bold;
  cursor: pointer;
  z-index: 11;
  text-shadow: 0 0 16px #00ffe7, 0 0 32px #a259ff;
  transition: color 0.2s, text-shadow 0.2s;
}
.close:hover {
  color: #a259ff;
  text-shadow: 0 0 32px #a259ff, 0 0 64px #00ffe7;
}
.futuristic-footer {
  text-align: center;
  color: #a259ff;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 18px 0 12px 0;
  background: linear-gradient(90deg, #232526 0%, #1a2980 100%);
  box-shadow: 0 -2px 16px #00ffe7;
  font-family: 'Orbitron', Arial, sans-serif;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #00ff88;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,255,136,0.15);
}
.modal-nav.left {
  left: 16px;
}
.modal-nav.right {
  right: 16px;
}
.modal-nav:hover {
  background: linear-gradient(135deg, #00ff88 0%, #00a1ff 100%);
  color: #fff;
  box-shadow: 0 4px 24px #00ff88;
}
@media (max-width: 600px) {
  #gallery img {
    width: 98vw;
    height: 32vw;
    min-height: 120px;
  }
  .modal-content {
    max-width: 98vw;
  }
  .close {
    top: 18px;
    right: 18px;
    font-size: 38px;
  }
  .futuristic-title {
    font-size: 1.5rem;
  }
}
