/* =========================
   Base / Reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: #fff;
  margin: 0;
  background-color: #000;
}

/* =========================
   Layout
========================= */

#container {
  max-width: 960px;
  margin: 40px auto;
  background: #000;
}

#content {
  display: flex;
}

/* =========================
   Header
========================= */

header {
  background: #00000;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 1px;
}

header p {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 12px;
  letter-spacing: 1px;
}

/* =========================
   Sidebar
========================= */

#sidebar {
  width: 220px;
  background: #0000;
  padding: 15px;
}

#sidebar h2 {
  font-size: 16px;
  padding-bottom: 5px;
}

#sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

#sidebar li {
  margin-bottom: 8px;
}

#sidebar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

#sidebar a:hover {
  color: #000;
  text-decoration: underline;
}

/* =========================
   Main Content
========================= */

#main {
  flex: 1;
  padding: 20px;
}

.content-box {
  padding: 15px;
  margin-bottom: 20px;
}

.character-box {
  display: none;
}

.char-img {
  width: 120px;
  height: 160px;
  object-fit: contain;
}

.jp-name {
  color: #8A7762;
  font-size: 0.85em;
  margin: -5px 0 10px;
}

/* =========================
   Lists
========================= */

.character-list,
.essay-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.character-list li {
  padding: 6px 0;
  border-bottom: 1px dotted #000;
}

.essay-list li {
  margin-bottom: 8px;
}

.character-list a,
.essay-list a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.character-list a:hover,
.essay-list a:hover {
  color: #000;
  text-decoration: underline;
}

/* =========================
   Hero Section
========================= */

.hero-gif {
  text-align: center;
  margin-top: 25px;
}

.hero-gif img {
  max-width: 90%;
  height: auto;
  border: 2px solid #000;
}

/* =========================
   Footer
========================= */

footer {
  background: #000;
  text-align: center;
  font-size: 11px;
  padding: 8px;
}

/* =========================
   Misc
========================= */

.nav-note {
  font-size: 11px;
  text-align: center;
  margin: 10px 0;
  letter-spacing: 1px;
}

.meta-warning {
  font-size: 0.8em;
  color: #666;
  margin-bottom: 10px;
}

.trigger-note {
  color: #544838;
  font-size: 0.8em;
  opacity: 0.6;
  letter-spacing: 0.03em;
  font-style: italic;
}

.minor-link a {
  font-size: 0.85em;
  color: #fff;
  opacity: 0.7;
}

.minor-link a:hover {
  opacity: 1;
}






button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}






body {
  background-color: #000;
  color: #fff;
}

.content-box {
  background: #111;
  color: #fff;
}





body {
  cursor: url("https://64.media.tumblr.com/6ecbd181398699ff43f015e77d870e56/tumblr_inline_mxsg1tfapD1rrry1n.png"), auto;
}


button, a {
  cursor: url("https://64.media.tumblr.com/6ecbd181398699ff43f015e77d870e56/tumblr_inline_mxsg1tfapD1rrry1n.png"), pointer;
}



img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}









.disabled-link {
  display: block;

  cursor: not-allowed;
}





#sidebar a:hover {
  background-color: #d4d4d4;
}





body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 2px
  );
}







p a {
  all: unset;
  color: #ccc;
  cursor: pointer;
}

p a:hover {
  text-decoration: underline;
  color: white;
}






.enter-page {
  background: black;
  color: white;
  font-family: "Courier New", monospace;
}

.enter-container {
  text-align: center;
  margin-top: 15%;
}

.enter-container img {
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.enter-container img:hover {
  transform: scale(1.05);
}




.enter-container {
  animation: fadeIn 2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


