<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Gallery Layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.gallery-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery-item button {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #1a1a1a;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.gallery-item button:hover {
  background-color: crimson;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border: 3px solid white;
  border-radius: 10px;
}

.lightbox p {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
/* General Reset &amp; Background */
body {
  background-color: #0a0a0f;
  color: #e0e0e0;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #00ffe0;
  text-decoration: none;
}

a:hover {
  color: #ff00aa;
  text-shadow: 0 0 8px #ff00aa;
}

/* Header */
.header {
  background-color: #111;
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: 2px solid #ff00aa;
  box-shadow: 0 0 10px #ff00aa;
}

.header h1.glitch {
  font-size: 3rem;
  color: #fff;
  text-shadow:
    2px 2px 0 #ff00aa,
    -2px -2px 0 #00ffe0,
    0 0 8px #ff00aa;
  letter-spacing: 2px;
}

/* Navbar */
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0.5rem 0;
}

.navbar li a {
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar li a:hover {
  background: #00ffe020;
  box-shadow: 0 0 10px #00ffe0;
}

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

.gallery-item {
  background: #1a1a2f;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px #00000066;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #ff00aa88;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #333;
  transition: all 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  border-color: #00ffe0;
  filter: brightness(1.15);
}

.gallery-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ccccff;
}

.gallery-item button {
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  background: #ff00aa;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #ff00aa88;
}

.gallery-item button:hover {
  background: #00ffe0;
  color: #000;
  box-shadow: 0 0 12px #00ffe0cc;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 20, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  animation: fadeIn 0.3s ease-in-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border: 3px solid #00ffe0;
  border-radius: 10px;
  box-shadow: 0 0 25px #00ffe088;
}

.lightbox p {
  color: #ffccff;
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #ff00aa;
  cursor: pointer;
  text-shadow: 0 0 10px #ff00aa;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #111;
  color: #ff007f;
  font-size: 0.9rem;
  border-top: 2px solid #00ffe0;
  box-shadow: 0 -2px 10px #00ffe088;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.nightclub-wonderland {
  background: linear-gradient(180deg, #1a1a2e, #2e1a2e, #1a2e2e);
  color: #f6e8ff;
  font-family: 'Quicksand', sans-serif;
  padding: 2rem;
  animation: backgroundGlow 20s infinite alternate;
}

@keyframes backgroundGlow {
  0% { background-color: #1a1a2e; }
  50% { background-color: #2e1a2e; }
  100% { background-color: #1a2e2e; }
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  font-family: 'Concert One', cursive;
  font-size: 2.5rem;
  color: #ffccff;
  text-shadow: 0 0 10px #ff99ff;
}

.character-img {
  width: 250px;
  border-radius: 2rem;
  box-shadow: 0 0 20px #99ffff;
  margin-top: 1rem;
}

section {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ff99ff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px #ffccff;
}

section h2 {
  color: #ff99ff;
  text-shadow: 0 0 8px #ff66cc;
  font-family: 'Concert One', cursive;
  font-size: 1.5rem;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 1rem;
  list-style: "âœ¨ ";
}

footer {
  text-align: center;
  margin-top: 2rem;
}

footer a {
  background: #ff66cc;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px #ff99ff;
  transition: transform 0.3s ease;
}

footer a:hover {
  transform: scale(1.05);
}
</pre></body></html>