body {
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 13px;
  line-height: 1.4;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.splash-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Fixed Box ===== */
.links-box {
  position: fixed;
  top: 50px;
  left: 65%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 90vw;
  height: 500px; 
  padding: 0;
  border-radius: 8px;
  color: #ccc;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  background-color: #000;
}

/* ===== Custom Scrollbar for scroll-box ===== */

/* Chrome, Edge, Safari */
.scroll-box::-webkit-scrollbar {
  width: 10px; /* scrollbar width */
}

.scroll-box::-webkit-scrollbar-track {
  background: #111; /* track background */
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #C8A2C8; /* lilac thumb */
  border-radius: 5px;
  border: 2px solid #111; /* gap look */
}

/* Firefox */
.scroll-box {
  scrollbar-width: thin;
  scrollbar-color: #C8A2C8 #111; /* thumb | track */
}

/* Nav styling (fixed headers inside box) */
.links-box nav {
  background-color: #111;
  min-height: 50px;
  line-height: 50px;
  text-align: center;
  border-bottom: 1px solid #C8A2C8;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

.links-box nav:first-of-type {
  margin-top: 0;
}

.links-box nav a {
  display: inline-block;   /* allows vertical centering with line-height */
  color: #aaa;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 400;
  padding: 3px 6px;
  border-radius: 4px;
  transition: color 0.3s, background-color 0.3s;
  line-height: normal;     /* overrides inheritance for inline-block links */
}

.links-box nav a:hover {
  color: #fff;
  background-color: #333;
}

/* ===== Scrollable Content Area ===== */
.scroll-box {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  color: #ccc;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Links inside black scrollable area */
.links-box .scroll-box a {
  color: #C8A2C8;       /* lilac color */
  text-decoration: none;
}
.links-box .scroll-box a:hover {
  color: #E0B0FF;       /* lighter lilac on hover */
  text-decoration: underline;
}

/* Global links outside the box */
a {
  color: #81c7ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .links-box {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    box-shadow: none;
  }
}
