@charset "UTF-8";
.private-block {
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.private-placeholder {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.private-lock {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.private-placeholder-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.private-placeholder-text strong {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.private-placeholder-text span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

.private-unlock-btn {
  margin-left: auto;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s;
}
.private-unlock-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.private-block--unlocked {
  border-color: transparent;
  background: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}
.private-block--unlocked p, .private-block--unlocked li, .private-block--unlocked h1, .private-block--unlocked h2, .private-block--unlocked h3, .private-block--unlocked h4, .private-block--unlocked blockquote, .private-block--unlocked td, .private-block--unlocked th, .private-block--unlocked span, .private-block--unlocked a {
  text-shadow: 0 0 10px rgba(0, 200, 120, 0.35);
}

.private-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.2s;
  backdrop-filter: blur(4px);
}
.private-modal--visible {
  opacity: 1;
}

.private-modal-inner {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.private-modal-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: #fff;
}

.private-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
}
.private-modal-close:hover {
  color: #fff;
}

.private-password-input {
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.private-password-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
}

.private-btn {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.15s;
}
.private-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.private-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.private-btn--passkey {
  background: rgba(0, 120, 200, 0.25);
  border-color: rgba(0, 120, 200, 0.5);
}
.private-btn--passkey:hover {
  background: rgba(0, 120, 200, 0.4);
}

.private-or {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.private-error {
  color: #ff7070;
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .feed-post--home:nth-child(n+4) {
    display: none;
  }
}
.private-reset {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
}
.private-reset a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.private-reset a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.private-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-size: 0.9rem;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  max-width: 90vw;
  text-align: center;
}
.private-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.feed-post {
  position: relative;
}

.feed-post-permalink {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  color: var(--primary);
  font-size: 0.85rem;
  opacity: 0.5;
  text-decoration: none;
  font-family: monospace;
}
.feed-post-permalink:hover {
  opacity: 1;
}

.feed-post-private {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}
.feed-post-private a {
  color: inherit;
}

.pvt-link-lock {
  display: inline-block;
  margin-left: 0.3em;
  font-size: 0.75em;
  vertical-align: middle;
  opacity: 0.6;
}
.pvt-link-lock::before {
  content: "🔒";
}

.dune-worm {
  position: fixed;
  bottom: 30px;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  animation: dune-crawl 6s ease-in-out forwards;
}

.dune-worm-svg {
  width: 520px;
  height: 180px;
  filter: drop-shadow(0 0 18px rgba(168, 116, 42, 0.6));
}

.dune-caption {
  text-align: center;
  color: #c8a96e;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin-top: -10px;
}

@keyframes dune-crawl {
  0% {
    transform: translateX(-580px) translateY(160px);
    opacity: 0;
  }
  15% {
    transform: translateX(-100px) translateY(0px);
    opacity: 1;
  }
  45% {
    transform: translateX(400px) translateY(-25px);
    opacity: 1;
  }
  75% {
    transform: translateX(900px) translateY(-10px);
    opacity: 1;
  }
  88% {
    transform: translateX(1200px) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(1600px) translateY(160px);
    opacity: 0;
  }
}
.dune-worm--fade {
  animation: ee-out 0.8s ease forwards;
}

.whale-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background: rgba(1, 12, 32, 0.9);
  animation: whale-wash-in 0.3s ease forwards;
  overflow: hidden;
}

.whale-overlay--fade {
  animation: whale-fade-out 1.4s ease forwards;
}

.whale-quote {
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(190, 218, 240, 0.85);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.12em;
  opacity: 0;
  animation: whale-text-in 1s ease 0.8s forwards;
}

.whale-ocean {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 18, 50, 0.6) 15%, rgba(1, 10, 30, 0.95) 40%, rgb(0, 6, 20) 100%);
}

.whale-wave {
  position: absolute;
  left: -50%;
  width: 200%;
  top: 0;
}

.whale-silhouette {
  position: absolute;
  bottom: 12%;
  left: 50%;
  opacity: 0;
  animation: whale-rise 1.4s ease 1.2s forwards;
}

@keyframes whale-wash-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes whale-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes whale-text-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes whale-rise {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 0.7;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes whale-wave-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(25%);
  }
}
.judge-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(90, 0, 0, 0.72);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 4rem;
  pointer-events: none;
  animation: judge-wash-in 0.3s ease forwards;
}

.judge-overlay--fade {
  animation: judge-fade-out 1.4s ease forwards;
}

.judge-figure {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 280px;
  opacity: 0;
  animation: judge-appear 0.6s ease 0.2s forwards;
}

.judge-quote {
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-style: italic;
  text-align: left;
  max-width: 560px;
  line-height: 1.7;
  margin: 0 0 1rem;
  opacity: 0;
  animation: judge-appear 0.6s ease 0.1s forwards;
}

.judge-attr {
  color: rgba(255, 180, 180, 0.65);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  opacity: 0;
  animation: judge-appear 0.6s ease 0.35s forwards;
}

@keyframes judge-wash-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes judge-appear {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes judge-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.shooting-star:nth-child(2),
.shooting-star:nth-child(5) {
  background: #33b5b5;
}
.shooting-star:nth-child(2)::before,
.shooting-star:nth-child(5)::before {
  background: linear-gradient(90deg, rgba(51, 181, 181, 0.6), transparent);
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1rem 0;
  align-items: start;
}

.page-layout-full {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.page-layout-full > main.page {
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-layout > main.page {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0;
}

.page-sidebar {
  padding-top: 2.5rem;
  min-width: 0;
  align-self: start;
}

.page-sidebar .home-link-list a.active {
  color: var(--primary);
}

.burger-btn {
  display: none;
}

.burger-nav {
  display: none;
}

@media only screen and (max-width: 720px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .page-sidebar {
    display: none;
  }
  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.4rem;
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    cursor: pointer;
    backdrop-filter: blur(6px);
  }
  .burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger-btn.open span:nth-child(2) {
    opacity: 0;
  }
  .burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .burger-nav {
    display: block;
    position: fixed;
    top: 3.75rem;
    right: 1rem;
    z-index: 99;
    background: rgba(24, 24, 24, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 180px;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.15s, transform 0.15s;
  }
  .burger-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .burger-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .burger-nav li {
    margin: 0;
    padding: 0;
  }
  .burger-nav a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    font-family: var(--fontFamilyHeading);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .burger-nav a::after {
    display: none !important;
  }
  .burger-nav a:hover {
    color: #fff;
  }
  .burger-nav a.active {
    color: var(--primary);
  }
  .burger-nav li:last-child a {
    border-bottom: none;
  }
}
.home-main {
  max-width: 900px !important;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.home-intro {
  margin-bottom: 2rem;
  padding-top: 0;
}
.home-intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 12px rgba(var(--primaryRgb), 0.4), 0 0 30px rgba(var(--primaryRgb), 0.15);
}
.home-intro h1 .site-logo-hero {
  display: block;
  filter: drop-shadow(0 0 14px rgba(var(--primaryRgb), 0.8));
}
.home-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  border-left: 2px solid var(--secondaryLight);
  padding-left: 1rem;
  margin: 0;
  max-width: 560px;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 3rem;
  align-items: start;
}

.home-grid > .page-sidebar {
  padding-top: 2.5rem;
}

.home-section {
  margin-bottom: 2rem;
}
.home-section h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
}
.home-section h2:before {
  display: none;
}
.home-section h2 .direct-link {
  opacity: 0.6;
  font-size: 0.75rem;
}

.featured-articles {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.featured-article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid var(--primary);
  border-radius: 5px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.15s, color 0.15s;
}
.featured-article:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.featured-article:hover .featured-article-arrow {
  color: var(--secondaryLight);
}
.featured-article::after {
  display: none !important;
}
.featured-article .featured-article-title {
  font-size: 1rem;
}
.featured-article .featured-article-arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: color 0.15s;
}

.home-link-list {
  list-style: none;
  padding: 0;
}
.home-link-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}
.home-link-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.9rem;
}
.home-link-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.home-link-list a:hover {
  color: #fff;
}
.home-link-list a::after {
  display: none !important;
}

.home-reading-mobile {
  display: none;
}
@media only screen and (max-width: 720px) {
  .home-reading-mobile {
    display: block;
  }
}

.sidebar-book-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.sidebar-book-card::after {
  display: none !important;
}
.sidebar-book-card:hover .sidebar-book-title {
  color: #fff;
}

.sidebar-book-cover {
  width: 52px;
  flex-shrink: 0;
  border-radius: 3px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
}
.sidebar-book-cover--placeholder {
  height: 78px;
  background: rgba(var(--primaryRgb), 0.15);
  border: 1px solid rgba(var(--primaryRgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.sidebar-book-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.sidebar-book-title {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  transition: color 0.12s;
}

.sidebar-book-author {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.home-feed {
  display: flex;
  flex-direction: column;
}

.feed-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.feed-item:last-child {
  border-bottom: none;
}

.feed-quote-text {
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}
.feed-quote-text::after {
  display: none !important;
}
.feed-quote-text:hover {
  color: #fff;
}

.feed-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

@media only screen and (max-width: 720px) {
  .home-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.booklist-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.booklist-section {
  margin-bottom: 2.5rem;
}

.booklist-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booklist-heading:before {
  display: none;
}

.booklist-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  letter-spacing: 0;
}

.booklist-link-line {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.booklist-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.book-card-cover {
  width: 32px;
  height: 48px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.9;
}

.book-card-cover-placeholder {
  width: 32px;
  height: 48px;
  border-radius: 2px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.12s;
}
.book-card:hover {
  background: rgba(255, 255, 255, 0.07);
}
.book-card--reading {
  border-left-color: var(--primary);
  background: rgba(51, 181, 181, 0.06);
}
.book-card--dnf {
  opacity: 0.4;
  filter: grayscale(0.6);
}

.book-card-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.book-title {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.book-author {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.book-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.book-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.book-badge {
  font-size: 0.68rem;
  font-family: var(--fontFamilyHeading);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
}

.book-rating {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #c9a227;
}

.book-detail-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.book-detail-header h1 {
  margin-top: 0;
}

.book-detail-cover {
  width: 100px;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.book-detail-cover--color {
  height: 150px;
}

.book-detail-info {
  flex: 1;
  min-width: 0;
}

.book-detail-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.3rem 0 1rem;
}

.book-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.book-badge--reading {
  color: var(--primary);
  border-color: rgba(var(--primaryRgb), 0.4);
}

.book-badge--dnf {
  color: rgba(255, 255, 255, 0.4);
}

.book-no-content {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  font-size: 0.9rem;
}

.book-quotes {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}
.book-quotes h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
}
.book-quotes h2:before {
  display: none;
}

.week-feed {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.week-feed h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
}
.week-feed h2:before {
  display: none;
}
.week-feed .feed-post {
  margin-bottom: 0.75rem;
}

.sidebar-feed h2 a {
  color: inherit;
  text-decoration: none;
}
.sidebar-feed h2 a:hover {
  color: var(--primary);
}

.sidebar-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.4;
  padding: 0.5rem 0.6rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.sidebar-feed-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-feed-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.sidebar-feed-meta {
  flex: 1;
}

.home-feed-posts {
  columns: 2;
  column-gap: 1.25rem;
}
.home-feed-posts .feed-post {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}
.home-feed-posts .feed-all-link {
  column-span: all;
  display: block;
}
@media only screen and (max-width: 720px) {
  .home-feed-posts {
    columns: 1;
  }
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.feed-post {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}
.feed-post--single {
  border: none;
  padding: 0;
  background: none;
}
.feed-post--image.feed-post--home .feed-post-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.feed-post-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.feed-post-image {
  width: 100%;
  border-radius: 6px;
  display: block;
  margin-bottom: 0.5rem;
}

.feed-post-image-link {
  display: block;
}

.feed-post-caption {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin: 0.25rem 0 0;
}

.feed-post-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}
.feed-post-text p {
  margin: 0;
}
.feed-post-text a {
  color: var(--primary);
}

.feed-post-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.feed-post-actions a {
  color: var(--primary);
  font-size: 0.9rem;
}

.feed-all-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-size: 0.85rem;
}

.book-quote-item {
  font-style: italic;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  border-left: 2px solid var(--secondary);
  margin: 0 0 1rem;
  padding: 0.25rem 0 0.25rem 1rem;
}

@keyframes ee-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ee-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes ee-text-rise {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ee-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  cursor: pointer;
  pointer-events: auto;
  background: none;
  border: none;
  padding: 0.35rem 0.5rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  line-height: 1;
  transition: color 0.18s;
}
.ee-close:hover {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .ee-close {
    top: auto !important;
    bottom: 1.5rem !important;
  }
}

.friend-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background: rgba(7, 7, 12, 0.93);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: ee-in 0.3s ease forwards;
}

.friend-overlay--fade {
  animation: ee-out 1.2s ease forwards;
}

.friend-mask {
  opacity: 0;
  filter: drop-shadow(0 0 55px rgba(210, 200, 182, 0.08));
  animation: friend-mask-in 0.7s ease 0.2s forwards;
}

.friend-caption {
  margin-top: 2rem;
  font-style: italic;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  color: rgba(175, 165, 148, 0.6);
  opacity: 0;
  animation: ee-text-rise 0.7s ease 0.5s forwards;
}

@keyframes friend-mask-in {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.tristero-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background: rgba(5, 5, 9, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: ee-in 0.4s ease forwards;
}

.tristero-overlay--fade {
  animation: ee-out 1.2s ease forwards;
}

.tristero-horn {
  opacity: 0;
  animation: tristero-stamp 0.32s cubic-bezier(0.1, 0, 0.4, 1.5) 0.5s forwards;
}

.tristero-caption {
  margin-top: 1.6rem;
  font-style: italic;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: rgba(160, 118, 80, 0.72);
  opacity: 0;
  animation: ee-text-rise 0.7s ease 0.5s forwards;
}

@keyframes tristero-stamp {
  from {
    opacity: 0;
    transform: scale(1.7) rotate(-7deg);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.jest-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background: rgba(2, 9, 3, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: ee-in 0.3s ease forwards;
}

.jest-overlay--fade {
  animation: ee-out 1.2s ease forwards;
}

.jest-title {
  color: rgba(200, 228, 0, 0.72);
  letter-spacing: 0.44em;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(0.65rem, 1.7vw, 0.95rem);
  font-weight: 700;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: ee-text-rise 0.7s ease 0.15s forwards;
}

.jest-court {
  position: relative;
  width: min(82vw, 580px);
  height: 190px;
  margin-bottom: 2.6rem;
}

.jest-baseline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(200, 228, 0, 0.2);
}

.jest-net {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.jest-ball-x {
  position: absolute;
  bottom: 6px;
  left: 0;
  animation: jest-ball-x 2.6s linear infinite alternate;
}

.jest-ball-y {
  animation: jest-ball-y 2.6s infinite alternate;
}

.jest-ball {
  filter: drop-shadow(0 0 12px rgba(196, 226, 0, 0.75)) drop-shadow(0 0 3px rgba(196, 226, 0, 0.5));
}

.jest-caption {
  font-style: italic;
  text-align: center;
  font-size: clamp(0.72rem, 1.9vw, 0.88rem);
  color: rgba(170, 200, 0, 0.38);
  opacity: 0;
  animation: ee-text-rise 0.7s ease 0.35s forwards;
}

@keyframes jest-ball-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(min(82vw, 580px) - 44px));
  }
}
@keyframes jest-ball-y {
  0% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  50% {
    transform: translateY(-152px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
  }
}
.shrike-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background: rgba(10, 2, 2, 0.93);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 4.5rem;
  animation: ee-in 0.3s ease forwards;
}

.shrike-overlay--fade {
  animation: ee-out 1.2s ease forwards;
}

.shrike-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0;
  animation: shrike-rise 1s ease 0.3s forwards;
}

.shrike-quote {
  position: relative;
  z-index: 1;
  font-style: italic;
  text-align: center;
  max-width: 480px;
  padding: 0 2rem;
  color: rgba(195, 158, 138, 0.75);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  opacity: 0;
  animation: ee-text-rise 0.7s ease 0.45s forwards;
}

.shrike-attr {
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(150, 115, 95, 0.42);
  opacity: 0;
  animation: ee-text-rise 0.7s ease 0.7s forwards;
}

@keyframes shrike-rise {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(35px);
  }
  to {
    opacity: 0.88;
    transform: translateX(-50%) translateY(0);
  }
}
body.dark-mode.alch-active {
  --primary: #c8903a;
  --primaryRgb: 200, 144, 58;
  --primaryLight: #7a5218;
  --primaryLightRgb: 122, 82, 24;
  --secondary: #d4a55a;
  --secondaryRgb: 212, 165, 90;
  --secondaryLight: #e8c880;
  --secondaryLightRgb: 232, 200, 128;
  --headerColor: #eedcb0;
  --bodyTextColor: #d8c498;
  --lightgray: #1c0e05;
  background: #0d0803;
}

body.alch-active .aurora-blob--teal {
  background: radial-gradient(circle, rgba(200, 140, 40, 0.06) 0%, transparent 70%);
}

body.alch-active .aurora-blob--orange {
  background: radial-gradient(circle, rgba(210, 95, 20, 0.05) 0%, transparent 70%);
}

body.alch-active .aurora-blob--teal2 {
  background: radial-gradient(circle, rgba(185, 120, 28, 0.04) 0%, transparent 70%);
}

body.alch-active hr {
  border: none !important;
  height: 1px;
  position: relative;
  margin: 1.8rem 0;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 145, 42, 0.7) 25%, rgb(225, 175, 55) 50%, rgba(200, 145, 42, 0.7) 75%, transparent 100%) !important;
}
body.alch-active hr::after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: rgba(225, 175, 55, 0.9);
  line-height: 1;
}

.alch-horizon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 9996;
  opacity: 0;
  animation: ee-in 1.8s ease 0.3s forwards;
}

body.alch-active footer {
  position: relative;
  z-index: 9997;
}

.alch-bird-carrier--ltr {
  display: inline-block;
  animation: alch-bird-ltr linear forwards;
}

.alch-bird-carrier--rtl {
  display: inline-block;
  animation: alch-bird-rtl linear forwards;
}

.alch-bird-soar {
  animation: alch-bird-soar 3.2s ease-in-out infinite alternate;
}

.alch-sand {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  animation: alch-sand linear both;
}

@keyframes alch-bird-ltr {
  from {
    transform: translateX(-140px);
  }
  to {
    transform: translateX(calc(100vw + 140px));
  }
}
@keyframes alch-bird-rtl {
  from {
    transform: translateX(calc(100vw + 140px));
  }
  to {
    transform: translateX(-140px);
  }
}
@keyframes alch-bird-soar {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-12px);
  }
}
@keyframes alch-sand {
  from {
    transform: translate(-80px, 0);
  }
  to {
    transform: translate(calc(100vw + 80px), 30px);
  }
}
body.dark-mode.meridian-active {
  --primary: #922010;
  --primaryRgb: 146, 32, 16;
  --primaryLight: #4a0e06;
  --primaryLightRgb: 74, 14, 6;
  --secondary: #7a1c10;
  --secondaryRgb: 122, 28, 16;
  --secondaryLight: #a03020;
  --secondaryLightRgb: 160, 48, 32;
  --headerColor: #c09080;
  --bodyTextColor: #a87868;
  --lightgray: #180604;
  background: #080200;
}

body.meridian-active .aurora-blob--teal {
  background: radial-gradient(circle, rgba(140, 20, 10, 0.07) 0%, transparent 70%);
}

body.meridian-active .aurora-blob--orange {
  background: radial-gradient(circle, rgba(160, 30, 10, 0.06) 0%, transparent 70%);
}

body.meridian-active .aurora-blob--teal2 {
  background: radial-gradient(circle, rgba(120, 15, 8, 0.05) 0%, transparent 70%);
}

body.meridian-active hr {
  border: none !important;
  height: 1px;
  position: relative;
  margin: 1.8rem 0;
  background: linear-gradient(90deg, transparent 0%, rgba(140, 30, 12, 0.6) 25%, rgba(180, 40, 15, 0.9) 50%, rgba(140, 30, 12, 0.6) 75%, transparent 100%) !important;
}
body.meridian-active hr::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.45rem;
  color: rgba(180, 40, 15, 0.85);
  line-height: 1;
}

.meridian-horizon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 9996;
  opacity: 0;
  animation: ee-in 2.5s ease 0.4s forwards;
}

body.meridian-active footer {
  position: relative;
  z-index: 9997;
}

.meridian-vulture-carrier--ltr {
  display: inline-block;
  animation: meridian-vulture-ltr linear forwards;
}

.meridian-vulture-carrier--rtl {
  display: inline-block;
  animation: meridian-vulture-rtl linear forwards;
}

.meridian-vulture-drift {
  animation: meridian-vulture-drift 6s ease-in-out infinite alternate;
}

.meridian-bg-quote {
  position: fixed;
  bottom: 160px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 2rem;
  pointer-events: none;
  z-index: 9995;
  opacity: 0;
  animation: ee-in 3s ease 1.2s forwards;
}
.meridian-bg-quote span {
  display: block;
  font-style: italic;
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  color: rgba(200, 80, 60, 0.22);
  line-height: 1.5;
}
.meridian-bg-quote cite {
  display: block;
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  color: rgba(180, 60, 40, 0.16);
  margin-top: 0.4rem;
  letter-spacing: 0.06em;
}

.meridian-blood {
  pointer-events: none;
  z-index: 9999;
  animation: meridian-blood ease-in both;
}

@keyframes meridian-vulture-ltr {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(calc(100vw + 200px));
  }
}
@keyframes meridian-vulture-rtl {
  from {
    transform: translateX(calc(100vw + 200px));
  }
  to {
    transform: translateX(-200px);
  }
}
@keyframes meridian-vulture-drift {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes meridian-blood {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(100vh + 80px));
  }
}
.hol-word {
  color: #1a3fff;
  transition: color 0.6s ease;
}

.hol-ghost {
  position: fixed;
  bottom: 32vh;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 2rem;
  pointer-events: none;
  z-index: 9989;
  font-size: clamp(0.65rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.45em;
  font-weight: 700;
  text-transform: uppercase;
  user-select: none;
  opacity: 0;
  animation: ee-in 3s ease 0.3s forwards;
}

.hol-measure {
  position: fixed;
  bottom: 2.4rem;
  left: 1.8rem;
  pointer-events: none;
  z-index: 9991;
  font-family: monospace;
  font-size: 0.62rem;
  line-height: 1.7;
  color: rgba(120, 120, 180, 0.28);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: ee-in 2s ease forwards;
  white-space: pre;
}
.hol-measure .hol-measure-line {
  color: rgba(80, 80, 140, 0.22);
}

.burger-nav-separator,
.sidebar-nav-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
  list-style: none;
  pointer-events: none;
}
.burger-nav-separator::before,
.sidebar-nav-separator::before {
  content: none !important;
}

.burger-nav a.burger-nav-stoeber,
.home-link-list a.sidebar-nav-stoeber {
  color: rgba(255, 255, 255, 0.8) !important;
}
.burger-nav a.burger-nav-stoeber:hover,
.home-link-list a.sidebar-nav-stoeber:hover {
  color: #fff !important;
}

.home-link-list .sidebar-nav-separator::before,
.home-link-list li.sidebar-nav-separator::before {
  content: none !important;
}

.footer-quote {
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.footer-divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--secondaryLight);
  margin: 1.5rem auto;
  border: none;
  opacity: 0.7;
}

.footer-stoeber-hint {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.5rem 0 0;
}

.footer-stoeber-hint .footer-stoeber-link {
  font-size: 0.85rem !important;
}

.footer-stoeber-link {
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.footer-stoeber-link:hover {
  color: #fff !important;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.footer-stoeber-link::after {
  display: none !important;
}

.intro-stoeber-link {
  color: var(--primary) !important;
  text-decoration: underline;
  text-decoration-color: rgba(var(--primaryRgb, 0, 102, 102), 0.5);
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.intro-stoeber-link:hover {
  color: var(--primaryLight) !important;
}
.intro-stoeber-link::after {
  display: none !important;
}

body.stoebermodus-active .stoeber-nav-item {
  display: none !important;
}

.stoeber-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10010;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: ee-in 0.25s ease forwards;
}

.stoeber-modal {
  background: rgba(18, 18, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem 2rem 1.75rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.stoeber-modal-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.stoeber-modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.stoeber-modal-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.stoeber-modal-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.stoeber-modal-start {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.4rem;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.stoeber-modal-start:hover {
  opacity: 0.85;
}

.stoeber-modal-cancel {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}
.stoeber-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.14);
}

.stoeber-floating {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10003;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(10, 10, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 0.45rem 0.6rem 0.45rem 0.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  animation: ee-in 0.4s ease forwards;
}

.stoeber-next {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.stoeber-next:hover {
  opacity: 0.85;
}

.stoeber-stop {
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  border: none;
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 1rem;
  transition: color 0.15s ease;
}
.stoeber-stop:hover {
  color: rgba(255, 255, 255, 0.8);
}

.verwandlung-carrier--ltr {
  display: inline-block;
  animation: verwandlung-ltr linear forwards;
}

.verwandlung-carrier--rtl {
  display: inline-block;
  animation: verwandlung-rtl linear forwards;
}

@keyframes verwandlung-ltr {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(calc(100vw + 100px));
  }
}
@keyframes verwandlung-rtl {
  from {
    transform: translateX(calc(100vw + 100px));
  }
  to {
    transform: translateX(-100px);
  }
}

/*# sourceMappingURL=local-2.css.map */
