html, body {
  margin: 0;
  padding: 0;
  background: #000;
  overflow-y: scroll;

  /* Hide scrollbar (Firefox) */
  scrollbar-width: none;
}

/* Hide scrollbar (Chrome, Safari, Edge) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Invisible scroll area for homepage scroll effect */
#scroll-area {
  height: 30000vh;
}

/* Center block containing title + links on homepage */
#center-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

  /* enable 3D space for the title */
  perspective: 800px;
}

/* Main homepage title */
#name {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 12vw, 180px);
  margin-bottom: 28px;

  /* 3D + animation */
  display: inline-block;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  cursor: pointer;

  /* fake depth */
  text-shadow:
    1px 1px 0 #444,
    2px 2px 0 #333,
    3px 3px 0 #222;
}

/* Homepage vertical links */
#links a {
  display: block;
  margin: 10px 0;
  color: white;
  font-family: monospace;
  font-size: clamp(14px, 1.8vw, 24px);
  text-decoration: none;
  transition: color 0.15s linear;
}

/* Hover color matches scroll effect */
#links a:hover {
  color: var(--accent-color);
}

/* ------------------------------ */
/* Subpages: Books, Thoughts, Inspirations */
/* ------------------------------ */

#page-container {
  max-width: 700px;
  margin: 80px auto;
  padding: 20px;
  text-align: left;
  color: white;  /* ensure all text is white */
  font-family: monospace;
}

.page-title {
  font-family: monospace;
  font-size: 34px;
  margin-bottom: 20px;
  color: white; /* white title */
}

.page-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white; /* white paragraph text */
  font-family: monospace;
}

/* Back link — no hover color change */
.back-link {
  font-family: monospace;
  font-size: 18px;
  color: white;
  text-decoration: none;
}
