/* Cursor */
* {
  cursor: url(https://ani.cursors-4u.net/cursors/cur-12/cur1103.ani),
          url(https://ani.cursors-4u.net/cursors/cur-12/cur1103.png), auto !important;
}

/* Body & background */
body {
  background-image: url('https://motionarray.imgix.net/motion-array-3517023-Ttn03YONR3-high_0001.jpg?w=660&q=60&fit=max&auto=format');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Press Start 2P', monospace;
  margin: 0;
  padding: 0 190px; /* space for side gifs */
  color: #00FF00;
  font-size: 16px;
  line-height: 1.5;
  text-shadow: 0 0 5px #008000;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* Left gifs container */
#left-gifs {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 180px;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1.5px solid #00FF00;
  user-select: none;
  z-index: 10;
}

#left-gifs img {
  width: 100%;
  height: 18vh;
  object-fit: cover;
  border: 2px solid #00FF00;
  border-radius: 6px;
  box-shadow: 0 0 9px #00FF00;
  background-color: #111;
}

/* Right gifs container */
#right-gifs {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 180px;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1.5px solid #00FF00;
  user-select: none;
  z-index: 10;
}

#right-gifs img {
  width: 100%;
  height: 18vh;
  object-fit: cover;
  border: 2px solid #00FF00;
  border-radius: 6px;
  box-shadow: 0 0 9px #00FF00;
  background-color: #111;
}

/* Main content box */
#main {
  max-width: 700px;
  padding: 40px 50px;
  background-color: rgba(0, 20, 0, 0.85);
  border: 2px solid #00FF00;
  border-radius: 8px;
  box-shadow: 0 0 15px #00FF00;
  min-height: 85vh;
  color: #00FF00;
  user-select: text;
  z-index: 20;
  position: relative;
  text-align: left;
  font-size: 1rem;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px #00FF00;
}

h2 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 1em;
  text-shadow: 0 0 5px #00FF00;
}

/* Navigation buttons styled as buttons */
nav a {
  color: #00ff00;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 16px;
  border: 2px solid #00FF00;
  border-radius: 6px;
  margin-right: 12px;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #00ff00;
  color: #000;
}

/* Lists */
ul {
  margin-left: 1.6em;
  line-height: 1.6em;
  font-size: 1rem;
}

/* Bitter thoughts styling */
.bitter {
  font-size: 1.05rem;
  margin-top: 20px;
  font-style: italic;
  font-weight: bold;
}

/* Responsive: hide side gifs on smaller screens */
@media screen and (max-width: 900px) {
  #left-gifs, #right-gifs {
    display: none;
  }
  body {
    padding: 0 20px;
  }
  #main {
    max-width: 100%;
    padding: 15px;
    min-height: auto;
  }
}
