@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');
:root{
  --bg: #121216;
  --bg-vignette: #1c1c22;
  --crimson: #c81d4a;
  --crimson-bright: #ff3366;
  --silver: #d8dadd;
  --ink: #e9e9ec;
  --muted: #77787f;
}
@font-face {
  font-family: 'MorningTea';
  src: url(/fonts/MorningTea.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'basiic';
  src: url(/fonts/Basiic.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Spirit';
  src: url(/fonts/Spirit.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Cherish';
  src: url(/fonts/Cherish.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Pixel Love';
  src: url(/fonts/pixel-love.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Angeris Disco';
  src: url(/fonts/AngerisDisco.otf);
  font-display: swap;
}
@font-face {
  font-family: 'Primus Script';
  src: url(/fonts/primusscript.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Rainy Hearts';
  src: url(/fonts/rainyhearts.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'American Cursive';
  src: url(/fonts/americancursive.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'Bubbles Standard';
  src: url(/fonts/bubblesstandard.ttf);
  font-display: swap;
}

*{ box-sizing: border-box; }
html, body{
  height: 100%;
  margin: 0;
}
body{
  background-image: url("https://puddingcat.nekoweb.org/images/dscbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stage{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.eyebrow{
  position: fixed;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* --- Camera: pinned dead-center of viewport, fixed pixel size --- */
.camera-wrap{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: auto;
}
.camera-btn{
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.camera-img{
  width: 100%;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
  border-radius: 6px;
  pointer-events: none;
}

/* --- Screen gallery (LCD area on the camera) --- */
/* Adjust these four to line up with your PNG's actual LCD position */
.screen-gallery{
  --screen-top: 30.3%;
  --screen-left: 11.6%;
  --screen-width: 58%;
  --screen-height: 44%;
  position: absolute;
  top: var(--screen-top);
  left: var(--screen-left);
  width: var(--screen-width);
  height: var(--screen-height);
  background: #0a0a0c;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.gallery-track{
  flex: 1;
  height: 100%;
  display: flex;
  gap: 6px;
  padding: 6px;
  overflow-x: scroll;
  overflow: scroll;
  scroll-snap-type: x proximity;
  scrollbar-width: 0px;
}
.gallery-track::-webkit-scrollbar{
  width: 0px;
  height: 0px;
  background: transparent;
}
.gallery-track::-webkit-scrollbar-thumb{
  background: transparent;
}
.gallery-item{
  height: 100%;
  width: auto;
  flex: 0 0 auto;
  border-radius: 2px;
  scroll-snap-align: start;
  object-fit: cover;
  cursor: pointer;
}

/* --- Side images: fixed pixel size, locked to camera-wrap --- */
.side-link{
  position: absolute;
  top: var(--top, 50%);
  left: var(--left, 0);
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transform: translate(0, -50%);
}
.side-img{
  width: 275px;
  display: block;
  border-radius: 4px;
  filter: brightness(0.85);
  transition: filter 0.18s ease;
}
.side-link:hover .side-img,
.side-link:focus-visible .side-img{
  filter: brightness(1.15);
}
.side-label{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Primus Script';
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  text-shadow: 0 1px 4px rgba(0,0,0,0.85);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.18s ease;
  pointer-events: none;
}
.side-link:hover .side-label,
.side-link:focus-visible .side-label{
  opacity: 1;
}

p, marquee {
font-family: 'Basiic';
 color: #4a4a4a;
}

.top-marquee{
  position: absolute;
  top: 50px;         /* pushes it above the camera image — increase to move it higher */
  left: 0;
  width: 100%;
  font-size: 16px;
  color: #4a4a4a;
  z-index: 2;
}

.corner-note{
  position: fixed;
  top: 6%;
  left: 4%;
  width: 180px;
  transition: transform 0.35s ease;
  cursor: default;
}
.corner-note:hover{
  transform: translateX(12px) rotate(-3deg);
}
.note-img{
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.1));
  pointer-events: none;
}
.note-text{
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  font-family: 'MorningTea';
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
  color: #3a3a3a;
  text-align: center;
  width: 80%;
  margin: 0;
  pointer-events: none;
}

.note-pin{
  position: absolute;
  top: 10%;
  left: 48%;
  width: 100px;
  transform: translateX(-50%) rotate(-8deg);
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.45));
  pointer-events: none;
  z-index: 2;
  transition: transform 0.35s ease;
}

.corner-note:hover .note-pin{
  transform: translateX(-50%) rotate(-2deg) translateY(1px);
}