body {
  background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  background-color: #000;
  font-family: 'Barrio', cursive;
  color: #fff;
  padding: 2rem;
  cursor: url('https://cur.cursors-4u.net/symbols/sym-1/sym23.cur'), auto;
}

.gallery-title {
  font-family: 'Nosifer', cursive;
  font-size: 4rem;
  text-align: center;
  background: linear-gradient(to right, #ff0000, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 3px 20px red, 1px 1px 10px yellow;
}

.gallery-subtitle {
  font-family: 'Protest Guerrilla', cursive;
  text-align: center;
  font-size: 1.5rem;
  color: #00ff00;
  text-shadow: 0 0 8px #00ff00;
  margin-bottom: 2rem;
}

.search-section {
  text-align: center;
  margin-bottom: 2rem;
}

#searchInput {
  padding: 1rem;
  width: 80%;
  max-width: 600px;
  font-family: 'Barrio', cursive;
  border: 3px solid #fcee09;
  border-radius: 10px;
  background-color: #111;
  color: #fff;
  box-shadow: 0 0 10px #fcee09;
  outline: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.photo-card {
  border: 4px ridge #ff00ff;
  padding: 0.5rem;
  background: #111;
  box-shadow: 0 0 20px #ff00ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseFade 4s infinite alternate;
}

.photo-card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 30px #00ffff;
}

.photo-card img {
  width: 100%;
  border-radius: 5px;
}

/* Divider bar */
.divider {
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    #ff00ff,
    #ff00ff 10px,
    #00ffff 10px,
    #00ffff 20px,
    #ffff00 20px,
    #ffff00 30px
  );
  animation: dividerMove 5s linear infinite;
  margin: 3rem 0;
}

/* Footer */
.graff-footer {
  font-size: 1.2rem;
  text-align: center;
  color: #faca78;
  margin-top: 4rem;
  animation: footerFlash 2s infinite alternate;
}

/* Animations */
@keyframes dividerMove {
  0% { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

@keyframes pulseFade {
  0% { box-shadow: 0 0 10px #ff00ff; }
  100% { box-shadow: 0 0 30px #00ffff; }
}

@keyframes footerFlash {
  0% { color: #faca78; }
  100% { color: #ff0; text-shadow: 0 0 10px #fff; }
}
