body {
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  background-color: black;
  color: #00ffff;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
  background-attachment: fixed;
  cursor: url('https://cur.cursors-4u.net/smilies/smi-9/smi832.cur'), auto;
  scrollbar-color: #ff00ff #000000;
  scrollbar-width: thin;
}

.page-border {
  border: 10px ridge lime;
  margin: 20px auto;
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 25px magenta, inset 0 0 15px cyan;
  text-align: center;
  background-image: url("https://www.animatedimages.org/data/media/88/animated-background-image-0170.gif");
  background-size: cover;
}

header h1 {
  font-size: 3em;
  color: #ffcc00;
  text-shadow: 2px 2px 8px #ff00ff;
  animation: glow 1.5s infinite alternate;
  font-family: 'Comic Sans MS', cursive;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ff00ff; }
  to { text-shadow: 0 0 20px #00ffff; }
}

.header-gif {
  width: 150px;
  margin: 10px 0;
  border: 2px dashed #ff00ff;
}

.floating-cat {
  width: 80px;
  position: absolute;
  top: 20px;
  right: 20px;
  animation: bounce 3s infinite ease-in-out;
  z-index: 1000;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.marquee {
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ffcc00);
  color: black;
  font-weight: bold;
  font-size: 1.5em;
  padding: 5px;
  margin-bottom: 15px;
  border: 3px dashed yellow;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px #fff;
}

.content-box {
  background-color: rgba(0, 0, 0, 0.7);
  border: 5px groove cyan;
  padding: 15px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 0 20px #00ffff;
  font-size: 1.2em;
}

.under-construction {
  width: 200px;
  margin: 0 auto 15px;
  display: block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.pixel-hr {
  border: none;
  border-top: 5px dotted #ff00ff;
  margin: 20px auto;
  width: 80%;
  display: block;
}

.hit-counter {
  font-size: 1.2em;
  color: #ffff00;
  margin-top: 20px;
  text-align: center;
}

.navbar {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  background-color: #222;
  font-size: 1.1em;
  box-shadow: 0 0 10px #00ffff inset;
  font-family: 'Comic Sans MS', cursive;
}

.navbar td {
  background: linear-gradient(to bottom, #0000ff, #000099);
  padding: 10px;
  text-align: center;
  border: 2px solid #00ffff;
  transition: background-color 0.3s ease;
}

.navbar td:hover {
  background: linear-gradient(to bottom, #ff00ff, #990099);
}

.navbar a {
  color: #ffff00;
  text-decoration: none;
  font-weight: bold;
  display: block;
  text-shadow: 0 0 5px #000;
}

.navbar a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px white;
}

footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #cccccc;
  text-align: center;
  background-color: #111;
  padding: 10px;
  border-top: 3px dotted #ff00ff;
  box-shadow: 0 -3px 10px #00ffff inset;
}

footer a {
  color: #00ffff;
  text-decoration: underline;
}

.browser-badge {
  margin-top: 10px;
  display: inline-block;
  margin: 5px;
}

.gif-junk-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  background-color: #222;
  border-top: 4px double #ff00ff;
  border-bottom: 4px double #00ffff;
}

.sidebar {
  position: fixed;
  top: 100px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.sidebar a {
  background: #0000ff;
  border: 3px ridge #ff00ff;
  color: yellow;
  padding: 10px;
  font-family: 'Comic Sans MS', cursive;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  width: 140px;
  box-shadow: 0 0 10px magenta;
  transition: transform 0.2s ease;
}

.sidebar a:hover {
  transform: scale(1.1) rotate(-2deg);
  background: #ff00ff;
  color: cyan;
  box-shadow: 0 0 20px cyan;
}

