body {
  background-color: #000033;
  color: #00ff00;
  font-family: "Comic Sans MS", "Arial", cursive;
  margin: 0;
  padding: 0;
  image-rendering: pixelated;
  position: relative;
}

/* CRT Scanlines */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    transparent,
    transparent 2px,
    rgba(0, 255, 65, 0.03) 2px,
    rgba(0, 255, 65, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* Layout */
.wrapper {
  display: flex;
  max-width: 1100px;
  margin: 20px auto;
  border: 6px ridge #ff00ff;
  background-color: #000066;
  position: relative;
  z-index: 1;
  min-height: 80vh;
}

/* SIDEBAR */
.sidebar {
  width: 210px;
  background: #000000;
  border-right: 4px solid #00ff41;
  padding: 20px 12px;
  flex-shrink: 0;
}

.sidebar .site-title {
  font-size: 22px;
  font-weight: bold;
  color: #00ff41;
  text-align: center;
  text-shadow: 0 0 10px #00ff41, 2px 2px 0 #ff00ff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sidebar nav a {
  display: block;
  color: #ffff00;
  text-decoration: none;
  padding: 10px 12px;
  margin-bottom: 6px;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: bold;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: #000044;
  border-color: #ff00ff;
  color: #00ff41;
  text-shadow: 0 0 8px #00ff41;
}

.sidebar .footer-text {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #00ff41;
  line-height: 1.6;
}

/* MAIN CONTENT */
.main {
  flex: 1;
  padding: 20px 25px;
}

/* Keep all your original styles */
.header {
  background: #000000;
  padding: 15px;
  text-align: center;
  border-bottom: 4px solid #00ff41;
  position: relative;
  overflow: hidden;
  margin: -20px -25px 20px -25px;
}

.glitch {
  font-size: 36px;
  font-weight: bold;
  color: #00ff41;
  text-shadow: 
    0 0 10px #00ff41,
    0 0 20px #00ff41,
    0 0 40px #00ff41,
    2px 2px 0 #ff00ff,
    -2px -2px 0 #00ffff;
  animation: glitch 0.8s infinite linear alternate;
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-anim 1s infinite linear alternate-reverse;
  color: #ff00ff;
  left: 2px;
  text-shadow: -2px 0 #00ffff;
}

.glitch::after {
  animation: glitch-anim2 0.6s infinite linear alternate-reverse;
  color: #00ffff;
  left: -2px;
  text-shadow: 2px 0 #ff00ff;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(3px, -3px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitch-anim {
  0% { clip: rect(10px, 9999px, 40px, 0); }
  5% { clip: rect(30px, 9999px, 70px, 0); }
  10% { clip: rect(5px, 9999px, 25px, 0); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(20px, 9999px, 50px, 0); }
  5% { clip: rect(40px, 9999px, 80px, 0); }
  10% { clip: rect(15px, 9999px, 45px, 0); }
}

marquee {
  font-size: 18px;
  color: #00ff41;
  font-weight: bold;
  text-shadow: 0 0 10px #00ff41;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

a {
  color: #ffff00;
  text-decoration: underline;
}

a:hover {
  color: #ff00ff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.nft {
  border: 4px solid #ffff00;
  background: #000044;
  padding: 8px;
  text-align: center;
  transition: transform 0.2s;
}

.nft:hover {
  transform: scale(1.03);
}

.nft img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ff00ff;
  cursor: pointer;
}

.photo-journal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.photo {
  background: #111122;
  padding: 10px;
  border: 3px solid #cccccc;
  box-shadow: 0 0 12px rgba(255,255,255,0.1);
  text-align: center;
}

.photo img {
  max-width: 100%;
  height: auto;
  border: 1px solid #666;
  display: block;
  margin-bottom: 8px;
}

.photo font {
  font-size: 13px;
  color: #bbbbbb;
}

/* Mobile friendly */
@media (max-width: 750px) {
  .wrapper {
    flex-direction: column;
    margin: 10px;
  }
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 4px solid #00ff41;
  }
}