@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=VT323&family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=Bebas+Neue&display=swap');

/* =========================================
   NPG VAULT — stylesheet
   ========================================= */

/* Gold scale:
   #f0c040  brightest highlights / hover
   #d4920a  main body gold
   #8a5e08  muted / secondary
   #3a2205  borders / very dim
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0800;
  color: #d4920a;
  font-family: 'Lora', serif;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* =========================================
   WRAPPER
   ========================================= */

.wrap {
  width: min(100%, 820px);
  margin: 0 auto;
  border-left: 1px solid #3a2205;
  border-right: 1px solid #3a2205;
  background: #000000;
  position: relative;
}

/* =========================================
   MARQUEE
   ========================================= */

.marquee-bar {
  background: #050300;
  border-bottom: 1px solid #3a2205;
  border-top: 1px solid #1e1100;
  padding: 4px 0;
  overflow: hidden;
  font-family: 'VT323', monospace;
  font-size: 15px;
  color: #8a5e08;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee-scroll 30s linear infinite;
  padding-left: 100%;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* =========================================
   HEADER / BANNER
   ========================================= */

.top-banner {
  background: #000;
  border-bottom: 2px solid #8a6a20;
  overflow: hidden;
  position: relative;
}

.banner-bg {
  background: repeating-linear-gradient(
    90deg,
    #0a0800 0px, #0a0800 40px,
    #0c0a00 40px, #0c0a00 41px
  );
  padding: 28px 24px 20px;
  position: relative;
}

.banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(180,130,30,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.banner-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: #8a5e08;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.banner-symbol-img {
  width: 70px;
  height: 70px;
  display: block;
  margin-bottom: 6px;
  opacity: 0.9;
  filter: drop-shadow(0 0 18px rgba(200,150,20,0.35));
}

.banner-sub {
  font-family: 'Special Elite', cursive;
  font-size: 11px;
  color: #8a5e08;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 10px;
}

.banner-right {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  z-index: 2;
}

.banner-right .site-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: #d4920a;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 2px 2px 0 #000, 0 0 20px rgba(180,130,20,0.2);
}

.banner-right .site-title span {
  color: #f0c040;
}

.banner-right .site-sub {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: #8a5e08;
  letter-spacing: 0.25em;
  margin-top: 4px;
}

/* ── Logo stamp ── */
.logo-stamp {
  text-align: center;
  position: relative;
}

.logo-stamp-inner {
  display: inline-block;
  border: 1px solid #8a5e08;
  padding: 10px 18px 8px;
  position: relative;
}

.logo-stamp-inner::before,
.logo-stamp-inner::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid #3a2205;
  pointer-events: none;
}

.logo-npg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: #8a5e08;
  letter-spacing: 0.55em;
  line-height: 1;
  margin-bottom: 4px;
}

.logo-sym {
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto 4px;
  filter: drop-shadow(0 0 10px rgba(240,192,64,0.4));
}

.logo-vault {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: #f0c040;
  letter-spacing: 0.2em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(240,192,64,0.25);
}

.logo-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, #3a2205, transparent);
  margin: 6px 0 4px;
}

.logo-sub {
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: #3a2205;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  background: #040300;
  border-bottom: 2px solid #3a2205;
  display: flex;
  flex-wrap: wrap;
}

.nav a {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #8a5e08;
  text-decoration: none;
  padding: 7px 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-right: 1px solid #1e1100;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover,
.nav a.on {
  color: #f0c040;
  background: #0a0700;
}

.nulluex-bridge {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: #000;
  border-bottom: 1px solid #1e1100;
  padding: 5px 12px;
  font-family: 'VT323', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nulluex-bridge a {
  color: #6a4a10;
  text-decoration: none;
  transition: color 0.15s;
}

.nulluex-bridge a:hover {
  color: #f0c040;
}

/* =========================================
   TWO-COLUMN LAYOUT
   ========================================= */

.layout {
  display: grid;
  grid-template-columns: 175px 1fr;
}

/* =========================================
   SIDEBAR
   ========================================= */

.sidebar {
  background: #030303;
  border-right: 1px solid #1e1100;
}

.sb-block {
  border-bottom: 1px solid #1e1100;
  padding: 12px;
}

.sb-head {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: #8a5e08;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-bottom: 1px dotted #3a2205;
  padding-bottom: 5px;
}

/* Symbol display box */
.symbol-box {
  background: #040300;
  border: 1px solid #3a2205;
  text-align: center;
  padding: 16px 8px 12px;
  margin-bottom: 8px;
}

.symbol-box .sym {
  font-size: 52px;
  color: #f0c040;
  text-shadow: 0 0 20px rgba(196,144,32,0.4);
  display: block;
  line-height: 1;
  font-family: 'Lora', serif;
}

.symbol-box .sym-label {
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: #3a2205;
  letter-spacing: 0.3em;
  margin-top: 6px;
}

/* Quick facts */
.fact {
  font-size: 12px;
  color: #8a5e08;
  padding: 3px 0;
  border-bottom: 1px dotted #1e1100;
  font-family: 'Lora', serif;
  line-height: 1.4;
}

.fact strong {
  color: #d4920a;
  font-weight: 600;
  display: block;
  font-size: 10px;
  font-family: 'VT323', monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Sidebar links */
.sb-links a {
  display: block;
  font-size: 12px;
  color: #8a5e08;
  text-decoration: none;
  padding: 3px 0;
  border-bottom: 1px dotted #1e1100;
  font-family: 'Lora', serif;
  transition: color 0.15s;
}

.sb-links a::before {
  content: '» ';
  color: #3a2205;
}

.sb-links a:hover {
  color: #f0c040;
}

/* Visitor counter */
.counter {
  font-family: 'VT323', monospace;
  font-size: 28px;
  color: #f0c040;
  text-align: center;
  background: #000;
  border: 1px inset #3a2205;
  padding: 4px 8px;
  letter-spacing: 0.2em;
  text-shadow: 0 0 8px rgba(196,144,32,0.6);
  margin-top: 4px;
}

/* Currently obsessing */
.obsess-item {
  font-size: 12px;
  padding: 4px 0;
  border-bottom: 1px dotted #1e1100;
  font-family: 'Lora', serif;
  color: #8a5e08;
  font-style: italic;
}

.obsess-item span {
  display: block;
  color: #8a5e08;
  font-size: 10px;
  font-style: normal;
  font-family: 'VT323', monospace;
  letter-spacing: 0.2em;
}

/* =========================================
   MAIN CONTENT
   ========================================= */

.main {
  padding: 18px 20px;
  min-height: 600px;
}

.section-head {
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: #8a5e08;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  border-bottom: 1px solid #3a2205;
  padding-bottom: 5px;
  margin-bottom: 14px;
  margin-top: 20px;
}

.section-head:first-child {
  margin-top: 0;
}

/* Intro block */
.intro {
  background: #040300;
  border: 1px solid #1e1100;
  border-left: 3px solid #6a4a10;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #d4920a;
  font-style: italic;
  line-height: 1.75;
}

/* Pixel divider */
.divider {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #1e1100 0px, #1e1100 6px,
    #3a2205 6px, #3a2205 7px,
    #1e1100 7px, #1e1100 13px
  );
  margin: 14px 0;
}

/* =========================================
   TIMELINE
   ========================================= */

.tl-entry {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dotted #1e1100;
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #4a3510;
  line-height: 1;
  padding-top: 2px;
  text-align: right;
}

.tl-title {
  font-family: 'Special Elite', cursive;
  font-size: 13px;
  color: #f0c040;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.tl-desc {
  font-size: 13px;
  color: #8a5e08;
  line-height: 1.55;
}

.tl-tag {
  display: inline-block;
  font-family: 'VT323', monospace;
  font-size: 11px;
  color: #3a2205;
  background: #000000;
  border: 1px solid #3a2205;
  padding: 1px 6px;
  letter-spacing: 0.15em;
  margin-right: 4px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* =========================================
   ALBUM GRID
   ========================================= */

.album-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}

.alb {
  background: #040300;
  border: 1px solid #1e1100;
  padding: 8px 6px;
  text-align: center;
  cursor: default;
  transition: border-color 0.15s;
}

.alb:hover {
  border-color: #6a4a10;
}

.alb-sq {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6a4a10;
  border: 1px solid #1e1100;
  margin-bottom: 6px;
}

.alb-sq.c1 { background: linear-gradient(135deg, #0a0600, #1a1000); }
.alb-sq.c2 { background: linear-gradient(135deg, #06080a, #0e1418); }
.alb-sq.c3 { background: linear-gradient(135deg, #0a0800, #201400); }
.alb-sq.c4 { background: linear-gradient(135deg, #080008, #100018); }
.alb-sq.c5 { background: linear-gradient(135deg, #06060a, #0c0c18); }

.alb-name {
  font-family: 'Lora', serif;
  font-size: 10px;
  color: #8a5e08;
  line-height: 1.3;
  font-style: italic;
}

.alb-year {
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: #3a2205;
  margin-top: 2px;
}

/* =========================================
   QUOTE BLOCK
   ========================================= */

.quote {
  margin: 16px 0;
  padding: 14px 18px;
  background: #000;
  border: 1px solid #1e1100;
  position: relative;
}

.quote::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 80px;
  color: #3a2205;
  position: absolute;
  top: -10px;
  left: 8px;
  line-height: 1;
}

.quote p {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-style: italic;
  color: #f0c040;
  line-height: 1.65;
  padding-left: 12px;
}

.quote cite {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: #3a2205;
  letter-spacing: 0.25em;
  margin-top: 8px;
  padding-left: 12px;
  font-style: normal;
}

/* =========================================
   GUESTBOOK
   ========================================= */

.gb {
  border-bottom: 1px dotted #1e1100;
  padding: 10px 0;
}

.gb-who {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: #d4920a;
  letter-spacing: 0.1em;
}

.gb-date {
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: #3a2205;
  margin-left: 10px;
}

.gb-msg {
  font-size: 14px;
  color: #8a5e08;
  margin-top: 4px;
  font-style: italic;
  line-height: 1.5;
}

.gb-actions {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

.gb-actions a {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: #8a5e08;
  text-decoration: none;
  letter-spacing: 0.2em;
  transition: color 0.15s;
}

.gb-actions a:hover {
  color: #f0c040;
}

/* =========================================
   WEBRING
   ========================================= */

.webring {
  background: #030303;
  border-top: 1px solid #1e1100;
  padding: 10px 14px;
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: #3a2205;
  letter-spacing: 0.2em;
}

.webring a {
  color: #8a5e08;
  text-decoration: none;
  transition: color 0.15s;
}

.webring a:hover {
  color: #f0c040;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: #000;
  border-top: 2px solid #1e1100;
  padding: 16px;
  text-align: center;
}

.footer-sym {
  font-size: 28px;
  color: #3a2205;
  display: block;
  margin-bottom: 8px;
}

.footer p {
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: #3a2205;
  letter-spacing: 0.25em;
  line-height: 1.8;
}

.footer-small {
  color: #3a2205;
  font-size: 11px;
}

img {
  max-width: 100%;
}

a:focus-visible {
  outline: 1px dotted #f0c040;
  outline-offset: 2px;
}

/* =========================================
   UTILITIES
   ========================================= */

.blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

@media (max-width: 760px) {
  .wrap {
    border-left: 0;
    border-right: 0;
  }

  .banner-bg {
    padding: 22px 18px 16px;
  }

  .banner-right {
    position: static;
    transform: none;
    text-align: left;
    margin-top: 16px;
  }

  .banner-eyebrow,
  .banner-sub {
    letter-spacing: 0.22em;
  }

  .nav a {
    flex: 1 1 33.333%;
    text-align: center;
    padding: 8px 6px;
    font-size: 17px;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid #1e1100;
  }

  .main {
    padding: 16px 14px;
  }

  .album-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-head {
    letter-spacing: 0.18em;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 13px;
  }

  .nav a {
    flex-basis: 50%;
  }

  .nulluex-bridge {
    display: block;
    line-height: 1.8;
  }

  .tl-entry {
    grid-template-columns: 1fr;
  }

  .tl-year {
    text-align: left;
    margin-bottom: 4px;
  }

  .album-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote p {
    font-size: 16px;
  }
}