/* General body and container styling */
body {
  background: url('vaopr.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-height: 100vh;
}

.container {
  width: 95%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 1rem;
  box-shadow: 0 0 25px #ff00ff;
}

/* Banner image */
.banner {
  width: 100%;
  border: 3px solid #ff6a00;
  border-radius: 1rem;
  box-shadow: 0 0 25px #ff6a00, 0 0 10px #ff6a00 inset;
}

/* Buttons container and styling */
.buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 20px #00f0ff, 0 0 10px #ff00ff inset;
  border: 3px solid #ff00ff;
  margin-bottom: 1rem;
}

.buttons a button {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 1rem;
  background: #2900ff;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #2900ff, 0 0 5px #2900ff inset;
}

.buttons a button:hover {
  background: #ff00ff;
  box-shadow: 0 0 20px #ff00ff, 0 0 10px #ff00ff inset;
}

/* Profile picture */
.pfp {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  border: 3px solid #00ffff;
  box-shadow: 0 0 20px #00ffff, 0 0 10px #00ffff inset;
  margin: 1rem 0;
}

/* Boxes */
.box {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 20px #00f0ff, 0 0 10px #ff00ff inset;
  border: 3px solid;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
  border-color: #ff00ff;
}

/* About Me specific box */
.about-me {
  border-color: #9400ff;
  box-shadow: 0 0 20px #9400ff, 0 0 10px #9400ff inset;
}

/* Scrollable boxes styling */
.scrollbox {
  overflow-y: scroll;
  background: #111;
  border-radius: 1rem;
  border: 3px solid #9400ff;
  box-shadow: 0 0 15px #9400ff, 0 0 8px #9400ff inset;
  padding: 1rem;
  box-sizing: border-box;
}

/* Blog box height doubled */
.blog-box {
  height: 400px;
}

/* Script showcase box height and styling */
.script-box {
  height: 400px;
  font-size: 0.9rem;
  color: #0ff;
  background: #111;
  white-space: pre-wrap;
  overflow-y: scroll;
  border: 3px solid #00ffff;
  box-shadow: 0 0 20px #00ffff, 0 0 10px #00ffff inset;
  padding: 1rem;
  border-radius: 1rem;
}

/* Iframes */
iframe {
  border-radius: 1rem;
  border: 3px solid #00ffaa;
  box-shadow: 0 0 20px #00ffaa, 0 0 10px #00ffaa inset;
  margin: 1rem 0;
  width: 100%;
  box-sizing: border-box;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem;
  color: #aaa;
  text-shadow: 0 0 5px #ff00ff;
  width: 100%;
}

/* Scrollbar styling for Webkit browsers */
.scrollbox::-webkit-scrollbar,
.script-box::-webkit-scrollbar {
  width: 10px;
}

.scrollbox::-webkit-scrollbar-track,
.script-box::-webkit-scrollbar-track {
  background: #111;
  border-radius: 1rem;
}

.scrollbox::-webkit-scrollbar-thumb,
.script-box::-webkit-scrollbar-thumb {
  background: #9400ff;
  border-radius: 1rem;
  box-shadow: 0 0 10px #9400ff inset;
}

.scrollbox::-webkit-scrollbar-thumb:hover,
.script-box::-webkit-scrollbar-thumb:hover {
  background: #ff00ff;
}

/* Firefox scrollbar styling */.scrollbox,
.script-box {
  scrollbar-width: thin;
  scrollbar-color: #9400ff #111;
}

/* Webring box fix - doubled height and centered */
#furryring {
  height: 100px; /* doubled height */
  width: 100%;
  max-width: 600px;
  margin: 1rem auto;
  box-sizing: border-box;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 1rem;
  border: 3px solid #ff00ff;
  box-shadow: 0 0 20px #ff00ff, 0 0 10px #ff00ff inset;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .buttons a button {
    width: 100%;
  }
}
