body {
  margin: 0;
  font-size: .6rem;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  color: #fff;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-13/cur1197.cur'), auto;
}

header {
  background: #111;
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #444;
}

.banner img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.thumbnail {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #ff00cc;
}

.thumbnail img {
  width: 100%;
  border-bottom: 2px solid #555;
}

.thumbnail h4,
.thumbnail p {
  padding: 0.5rem 1rem;
  margin: 0;
}

.thumbnail p a {
  color: #00f0ff;
  text-decoration: underline;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  color: #aaa;
  font-size: 0.8rem;
}

.nav-links a {
  background-color: #000000;
  color: #00ff00;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  border: 1px solid #00ff00;
  padding: 0.6rem 1.2rem;
  margin: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #00ff00;
  box-shadow: 0 0 10px #00ff00;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}

.nav-links a:hover {
  background-color: #111;
  color: #00ffcc;
  box-shadow: 0 0 20px #00ffcc;
  text-shadow: 0 0 10px #00ffcc;
  transform: scale(1.05);
  cursor: pointer;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
}
