/* ============================= */
/* RESET & BODY */
/* ============================= */
body {
  margin: 0;
  font-family: "Courier New", monospace;
  color: white;
  background-image: url('597503030_1033944775567052_5194516344939489205_n.jpg');
  background-repeat: repeat;
  background-size: 100px 100px;
  background-attachment: fixed;
  overflow-x: hidden;
  transition: background-image 0.5s ease;
}

/* ============================= */
/* MAIN CONTAINER */
/* ============================= */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px 200px;
  position: relative;
  z-index: 1;
}

/* ============================= */
/* TEXT ANIMATIONS */
/* ============================= */
@keyframes softBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

@keyframes softShake {
  0% { transform: translate(0,0); }
  25% { transform: translate(1px,-1px); }
  50% { transform: translate(-1px,1px); }
  75% { transform: translate(1px,1px); }
  100% { transform: translate(0,0); }
}

.blink-shake {
  animation: softBlink 2.5s infinite ease-in-out, softShake 0.6s infinite;
  text-shadow: 3px 3px 0 black, -3px -3px 0 black, 0 0 20px cyan;
  font-weight: 900;
  position: relative;
}

/* ============================= */
/* NAV BUTTONS & RICKROLL */
/* ============================= */
.nav-btn {
  display: inline-block;
  margin: 12px;
  padding: 12px 20px;
  font-weight: 900;
  font-size: 1.2rem;
  color: white;
  background: rgba(0,0,0,0.75);
  border: 2px solid #ff00ff;
  text-decoration: none;
  text-shadow: 2px 2px 0 black, 0 0 10px cyan;
  transition: 0.2s;
}

.nav-btn:hover {
  background: black;
  color: cyan;
  transform: scale(1.05);
  box-shadow: 0 0 15px magenta, 0 0 30px cyan;
}

.rickroll-btn img {
  width: 95px;
  height: auto;
  vertical-align: middle;
  border: none;
  box-shadow: none;
  transition: 0.2s;
}

.rickroll-btn img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px magenta, 0 0 30px cyan;
}

/* ============================= */
/* HEADINGS & PARAGRAPHS */
/* ============================= */
h1 { font-size: 3.2rem; text-align: center; }
p { font-size: 1.6rem; line-height: 1.7; text-align: center; }

/* ============================= */
/* BLINKIES */
/* ============================= */
.blinkies-wrapper {
  position: absolute;
  top: 100px;
  right: -160px;
  width: 150px;
  height: 400px;
  overflow: hidden;
  z-index: 10;
}

.blinkies-track {
  display: flex;
  flex-direction: column;
  animation: blinkieScroll 12s linear infinite;
}

.blinkie {
  width: 150px;
  height: 50px;
  margin-bottom: 6px;
}

@keyframes blinkieScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ============================= */
/* TOP LEFT IMAGE */
/* ============================= */
.top-left-pic {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 95px;
  height: auto;
  z-index: 10000;
}

/* ============================= */
/* DARK/LIGHT MODE BUTTON */
/* ============================= */
.mode-btn {
  position: fixed;
  top: 10px;
  left: 110px;
  width: 90px;
  height: auto;
  cursor: pointer;
  z-index: 10000;
}

/* ============================= */
/* SMILE.RIP BUTTON */
/* ============================= */
.smilerip-btn {
  position: absolute;
  top: 50px;
  right: -148px;
  z-index: 1000;
}

.smilerip-btn img {
  width: 125px;
  height: auto;
  border: 2px solid magenta;
  box-shadow: 0 0 10px cyan, 0 0 20px magenta;
  transition: 0.2s;
}

.smilerip-btn img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px cyan, 0 0 30px magenta;
}

/* ============================= */
/* ART GRID + CLICK TO ENLARGE */
/* ============================= */
.art-wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 30px;
}

.art-image {
  width: 180px; /* fixed size to prevent giant images */
  height: auto;
  cursor: pointer;
  border: 2px solid magenta;
  box-shadow: 0 0 10px cyan, 0 0 20px magenta;
  transition: transform 0.2s;
}

.art-image:hover {
  transform: scale(1.05);
}

/* ============================= */
/* LIGHTBOX OVERLAY */
/* ============================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border: 3px solid magenta;
  box-shadow: 0 0 25px cyan;
}
/* ============================= */
/* STANDING WOMAN GIF */
/* ============================= */
.standing-woman {
  display: block;
  margin: 20px auto 40px; /* centers it and adds spacing */
  width: 200px; /* fixed size */
  height: auto;
  border: 2px solid magenta;
  box-shadow: 0 0 15px cyan, 0 0 30px magenta;
  transition: transform 0.2s, opacity 1s;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

.standing-woman:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px cyan, 0 0 40px magenta;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
