* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: monospace;
  color: #dcdcdc;
  background-image: url("greengrid.jpg");
  background-repeat: repeat;
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 100px; 
}
/* noise */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("noise.png");
  opacity: 0.12;
  pointer-events: none;
  z-index: 10;
}
/* scanlines */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("scanlines.png");
  opacity: 0.08;
  pointer-events: none;
  z-index: 9;
}
/* wrapper */
.wrapper {
  width: 90%;
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 400px;
}
/* banner */
.top-gif {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.top-gif img {
  max-width: 600px;
  width: 90%;
  opacity: 0.85;
  display: block; 
}
.banner-spacer {
  display: none; 
}
/* boxes */
.box {
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  box-shadow: 0 0 25px rgba(0,0,0,0.9);
  margin-bottom: 30px;
  text-shadow: 0 0 2px rgba(0,255,150,0.35);
}
.box-content {
  display: flex;
  gap: 30px;
  align-items: center;
}
.box-content img {
  width: 180px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px;
  background: rgba(0,0,0,0.5);
}
/* buttons */
.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.buttons button {
  flex: 1;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ccc;
  padding: 12px 0;
  font-family: monospace;
  letter-spacing: 2px;
  cursor: pointer;
}
.buttons button::before {
  content: ">";
  margin-right: 8px;
  opacity: 0.5;
}
.buttons button:hover {
  background: rgba(30,30,30,0.9);
  color: #fff;
}
/* sections */
.section {
  display: none;
}
.section.active {
  display: block;
}
/* interests */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.interest-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
  transition: transform 0.2s ease;
}
.interest-card:hover {
  transform: translateY(-4px) rotate(-1deg);
}
.interest-card img {
  width: 100%;
  height: 200px; 
  object-fit: cover; 
  margin-bottom: 10px;
}
.interest-card.pink { background: rgba(255,120,180,0.15); }
.interest-card.blue { background: rgba(120,180,255,0.15); }
.interest-card.green { background: rgba(120,255,180,0.15); }
/* links */
.link-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.hand-link img {
  width: 240px;
  image-rendering: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hand-link img:hover {
  filter: brightness(1.15);
  transform: translateX(4px);
}
/* side boxes */
.side-box {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px;
  font-size: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.9);
  z-index: 2;
}
.side-box.left {
  left: 20px;
  width: 140px;
}
.side-box.right {
  right: 20px;
  padding: 6px;
}
.side-box.right img {
  width: 200px;
  display: block;
}
/* blink */
.blink {
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
/* mobile */
@media (max-width: 900px) {
  .side-box,
  .top-gif {
    display: none;
  }
  .wrapper {
    margin-top: 40px
  }
  .box-content {
    flex-direction: column;
  }
  .buttons {
    flex-direction: column;
  }
}