:root {
  color-scheme: dark;
  --font-display: ui-serif, Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --gold-50: #fbf6e9;
  --gold-100: #f5ebc9;
  --gold-200: #eddaa0;
  --gold-300: #e3c26a;
  --gold-400: #d8ac47;
  /* Bardziej "prestizowe", metaliczne zloto zamiast poprzedniego --gold-600
     (#b8860b, "goldenrod") — ten odcien przy niskiej jasnosci czesto
     wyglada na monitorach jak braz, zwlaszcza w duzych naglowkach
     (.text-gold-gradient) i przyciskach (.btn-gold). */
  --gold-600: #c9a227;
  --gold-900: #4a3410;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background-color: #050403;
}

body {
  font-family: var(--font-sans);
  color: var(--gold-50);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-party {
  background-color: #050403;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(216, 172, 71, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(216, 172, 71, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(201, 162, 39, 0.10) 0%, transparent 55%);
}

.font-display { font-family: var(--font-display); }

.text-gold-gradient {
  /* Konczylo sie na --gold-900 (ciemny braz) — na duzych naglowkach
     ("Adam18", "Galeria" itd.) czesc liter wypadala wtedy brazowo zamiast
     zlota. Teraz konczy sie na bogatszym, ale wciaz wyraznie zlotym
     odcieniu. */
  background-image: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-400) 45%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-gold {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  background-image: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-400) 50%, var(--gold-600) 100%);
  color: #1a1206;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  border-radius: 1rem;
  padding: 1.15rem 1.5rem;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-align: center;
  text-decoration: none;
}
.btn-gold:active { transform: scale(0.98); filter: brightness(0.96); }

.btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 1rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(216, 172, 71, 0.4);
  color: var(--gold-200);
  background: transparent;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.card-glass {
  background: rgba(20, 16, 9, 0.6);
  border: 1px solid rgba(216, 172, 71, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 1.5rem;
}

.wrap {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.watermark {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.watermark span {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  font-size: 42vw;
  color: rgba(216, 172, 71, 0.08);
  user-select: none;
}

.hero { text-align: center; margin-bottom: 2rem; }
.hero .kicker {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(227, 194, 106, 0.8);
}
.hero .big-18 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  margin: 0.25rem 0;
}
.hero .event-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 235, 201, 0.6);
  margin-top: 0.25rem;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 0 1px rgba(216, 172, 71, 0.35), 0 8px 30px rgba(0, 0, 0, 0.55);
}

.panel h1 {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  margin: 0;
}

.panel .lead {
  margin-top: 1rem;
  text-align: center;
  color: rgba(245, 235, 201, 0.85);
  line-height: 1.5;
}

.upload-area { margin-top: 2rem; }
.nickname-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(245, 235, 201, 0.6);
  margin-bottom: 0.35rem;
}
.required-mark { color: var(--gold-300); font-weight: 700; }
.nickname-input {
  display: block;
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(216, 172, 71, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: var(--gold-50);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.nickname-input:focus { outline: none; border-color: var(--gold-400); }
.upload-hint {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 235, 201, 0.7);
  line-height: 1.4;
}

/* Zbiorczy pasek postepu calej tury wysylki (po kliknieciu "Wyslij") —
   jeden pasek + procent, bez statusu kazdego pliku z osobna. */
.upload-progress { margin-top: 1.5rem; }
.upload-progress-track { height: 0.6rem; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.upload-progress-fill { height: 100%; width: 0%; border-radius: 999px; background-image: linear-gradient(135deg, var(--gold-100), var(--gold-400), var(--gold-600)); background-size: 200% 100%; animation: upload-progress-shimmer 1.6s linear infinite; transition: width 0.25s ease-out; }
@keyframes upload-progress-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.upload-progress-label { margin: 0.6rem 0 0; text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--gold-200); font-variant-numeric: tabular-nums; }

.upload-errors { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.upload-error-item { border-radius: 0.85rem; padding: 0.7rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.upload-error-item .error-msg { font-size: 0.8rem; color: #fca5a5; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.retry-btn { flex-shrink: 0; border-radius: 999px; border: 1px solid rgba(216, 172, 71, 0.4); background: none; color: var(--gold-200); font-size: 0.75rem; padding: 0.25rem 0.75rem; cursor: pointer; }

/* ------------------------------------------------------------------ */
/* Panel administratora — ekran logowania (wysrodkowany w pionie i w   */
/* poziomie) oraz wspolna powloka z menu po lewej dla stron panelu.    */
/* ------------------------------------------------------------------ */
.admin-login-shell {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  text-align: center;
}
.admin-login-shell h1 { font-family: var(--font-display); font-size: 1.9rem; margin: 0 0 1.5rem; }
.admin-login-card { width: 100%; max-width: 22rem; padding: 1.75rem; text-align: left; }
.admin-login-card label { font-size: 0.85rem; color: rgba(245, 235, 201, 0.8); }

.admin-shell { position: relative; z-index: 10; display: flex; align-items: stretch; min-height: 100vh; }
.admin-sidebar { width: 14.5rem; flex-shrink: 0; display: flex; flex-direction: column; padding: 1.5rem 1rem; border-right: 1px solid rgba(216, 172, 71, 0.15); background: rgba(10, 8, 4, 0.55); }
.admin-sidebar-brand { padding: 0 0.4rem 1.5rem; }
.admin-sidebar-brand .name { font-family: var(--font-display); font-size: 1.2rem; }
.admin-sidebar-brand .sub { display: block; margin-top: 0.15rem; font-size: 0.7rem; color: rgba(245, 235, 201, 0.5); letter-spacing: 0.02em; }
.admin-nav { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0.8rem; border-radius: 0.7rem; color: rgba(245, 235, 201, 0.75); text-decoration: none; font-size: 0.87rem; transition: background 0.15s ease, color 0.15s ease; }
.admin-nav a:hover { background: rgba(216, 172, 71, 0.1); color: var(--gold-100); }
.admin-nav a.active { background-image: linear-gradient(135deg, var(--gold-100), var(--gold-400)); color: #1a1206; font-weight: 700; }
.admin-sidebar-logout { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(216, 172, 71, 0.12); }
.admin-sidebar-logout button { width: 100%; border: 1px solid rgba(216, 172, 71, 0.3); background: transparent; color: var(--gold-200); border-radius: 0.7rem; padding: 0.6rem; font-size: 0.85rem; cursor: pointer; }

.admin-main { flex: 1; min-width: 0; padding: 2rem 2.25rem; max-width: 54rem; }
.admin-main h1 { font-family: var(--font-display); font-size: 1.45rem; margin: 0 0 0.25rem; }
.admin-main .page-sub { color: rgba(245, 235, 201, 0.6); font-size: 0.85rem; margin: 0 0 1.5rem; }

.stat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr)); gap: 0.75rem; margin-top: 1rem; }
.stat-tile { padding: 1rem 1.15rem; }
.stat-tile .stat-label { font-size: 0.72rem; color: rgba(245, 235, 201, 0.55); }
.stat-tile .stat-value { font-family: var(--font-display); font-size: 1.35rem; margin-top: 0.2rem; }

@media (max-width: 860px) {
  .admin-shell { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; align-items: center; padding: 0.75rem 0.9rem; border-right: 0; border-bottom: 1px solid rgba(216, 172, 71, 0.15); overflow-x: auto; gap: 0.5rem; }
  .admin-sidebar-brand { display: none; }
  .admin-nav { flex-direction: row; flex: 1; }
  .admin-nav a span { display: none; }
  .admin-nav a { font-size: 1.1rem; padding: 0.55rem 0.7rem; }
  .admin-sidebar-logout { margin: 0; padding: 0; border-top: 0; flex-shrink: 0; }
  .admin-sidebar-logout button { width: auto; padding: 0.55rem 0.9rem; font-size: 1.1rem; }
  .admin-main { padding: 1.5rem 1.1rem; }
}

.global-error {
  margin-top: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(248, 113, 113, 0.3);
  background: rgba(60, 10, 10, 0.4);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: #fecaca;
}

.done-state { text-align: center; margin-top: 2rem; animation: fade-in 0.4s ease-out; }
.done-state .thanks { font-family: var(--font-display); font-size: 1.6rem; }
.done-state .thanks-sub { margin-top: 0.5rem; color: rgba(245, 235, 201, 0.85); }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Podglad wybranych plikow przed wyslaniem (opis + nick) ------------- */

.preview-section { margin-top: 1.25rem; animation: fade-in 0.35s ease-out; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.preview-card {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(216, 172, 71, 0.18);
  display: flex;
  flex-direction: column;
}
.preview-card .thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.preview-card .thumb-box img,
.preview-card .thumb-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preview-card .video-badge {
  position: absolute;
  bottom: 0.35rem;
  left: 0.35rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold-100);
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  pointer-events: none;
}
.preview-card .remove-btn {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: none;
  background: rgba(10, 8, 4, 0.75);
  color: var(--gold-100);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-card .caption-input {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(216, 172, 71, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: var(--gold-50);
  font-size: 0.72rem;
  padding: 0.4rem 0.5rem;
  box-sizing: border-box;
}
.preview-card .caption-input:focus { outline: none; background: rgba(0, 0, 0, 0.4); }
.preview-card .caption-input::placeholder { color: rgba(245, 235, 201, 0.4); }

#send-btn { margin-top: 0.25rem; }
#nickname-required-hint { color: var(--gold-300); font-weight: 600; }

/* --- Wow-intro na stronie glownej --------------------------------------- */

.hero .kicker { animation: intro-rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero .big-18 {
  animation: intro-pop 0.85s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  position: relative;
}
.hero .event-date { animation: intro-rise 0.7s 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.panel { animation: intro-panel 0.75s 0.25s cubic-bezier(0.16, 0.9, 0.2, 1) both; }

@keyframes intro-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes intro-pop {
  0% { opacity: 0; transform: scale(0.55) rotate(-6deg); filter: drop-shadow(0 0 0 rgba(216, 172, 71, 0)); }
  60% { opacity: 1; transform: scale(1.08) rotate(2deg); }
  80% { filter: drop-shadow(0 0 22px rgba(216, 172, 71, 0.55)); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 rgba(216, 172, 71, 0)); }
}
@keyframes intro-panel {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Jednorazowe przemiecenie zlotego blasku przez karte, po wjezdzie panelu. */
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  background-size: 250% 250%;
  background-position: 200% 0;
  pointer-events: none;
  animation: intro-shine 1.4s 0.9s ease-out both;
  mix-blend-mode: overlay;
}
@keyframes intro-shine {
  from { background-position: 200% 0; opacity: 1; }
  to { background-position: -60% 0; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------------------------
   Efekty "wow": kula podazajaca za kursorem (desktop), sztuczne ognie
   podazajace za kursorem (desktop: sledza kursor; dotyk/mobile: plyna
   same ambientowo) i latajace balony + iskierki. Wszystko wylaczane
   automatycznie przy prefers-reduced-motion. Fajerwerki i balony siedza
   NISKO w warstwach (patrz z-index nizej) — nigdy nie zaslaniaja
   tekstu/przyciskow/kart.
   ------------------------------------------------------------------- */

.cursor-ball {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-400);
  opacity: 0.18;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-ball { display: block; }
}

#cursor-fireworks-canvas {
  position: fixed;
  inset: 0;
  /* Nisko w stosie warstw: fajerwerki maja "podplywac pod" tresc, a nie ja
     zaslaniac. Tlo (.watermark) jest na z-index:0, glowna tresc (.wrap,
     .admin-wrap, .gallery-wrap, .mod-wrap) na z-index:10 — canvas lezy
     miedzy nimi, wiec jest widoczny na czarnym tle, ale nigdy nad
     tekstem/przyciskami/kartami (dodatkowo JS w ogole nie zapala iskier w
     obszarze karty — patrz effects.js). */
  z-index: 2;
  pointer-events: none;
  /* Delikatna, tania (GPU-composited) poswiata wokol calej warstwy iskier
     — bardziej "premium" wyglad bez kosztu per-pixel shadowBlur na canvasie. */
  filter: drop-shadow(0 0 5px rgba(216, 172, 71, 0.35));
}

/* --- Latajace balony ---------------------------------------------------- */

#balloons {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Kazdy balon siedzi w "slocie" — nieanimowanym kontenerze na cala wysokosc
   ekranu, ktory JS przesuwa (translate) niezaleznie od animacji wznoszenia,
   zeby balon mogl "uciekac" spod kursora (patrz effects.js initBalloons).
   Oba transformy (sloty + balon) skladaja sie wizualnie, wiec ucieczka
   dziala plynnie w trakcie calego lotu balonu. */
.balloon-slot {
  position: absolute;
  top: 0;
  bottom: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.balloon {
  position: absolute;
  left: 0;
  bottom: -22vh;
  width: 100%;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
  animation-iteration-count: infinite;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
  will-change: transform, opacity;
}
.balloon::before {
  /* polyskliwy "highlight" — daje efekt szklanej/gumowej powloki */
  content: "";
  position: absolute;
  top: 16%;
  left: 20%;
  width: 30%;
  height: 22%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  filter: blur(2px);
}
.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 1.5px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(216, 172, 71, 0.55), transparent);
  transform: translateX(-50%);
}
.balloon.gold {
  background: radial-gradient(circle at 32% 26%, #fdf3d6 0%, #e3c26a 45%, #b8860b 85%, #7a5a0a 100%);
}
.balloon.cream {
  background: radial-gradient(circle at 32% 26%, #fffdf7 0%, #f5ebc9 45%, #d8ac47 90%, #a9791e 100%);
}
.balloon.dark {
  background: radial-gradient(circle at 32% 26%, #4a3f30 0%, #201808 60%, #0b0906 100%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}

/* Trzy warianty krzywej wznoszenia — daja organiczna roznorodnosc ruchu
   zamiast jednego, powtarzalnego wzorca. */
@keyframes balloon-rise-a {
  0%   { transform: translate(0, 0) rotate(-3deg); opacity: 0; }
  8%   { opacity: 1; }
  25%  { transform: translate(22px, -30vh) rotate(3deg); }
  50%  { transform: translate(-16px, -58vh) rotate(-3deg); }
  75%  { transform: translate(24px, -86vh) rotate(3deg); }
  92%  { opacity: 1; }
  100% { transform: translate(-12px, -114vh) rotate(-2deg); opacity: 0; }
}
@keyframes balloon-rise-b {
  0%   { transform: translate(0, 0) rotate(2deg); opacity: 0; }
  10%  { opacity: 1; }
  30%  { transform: translate(-26px, -34vh) rotate(-4deg); }
  55%  { transform: translate(18px, -62vh) rotate(4deg); }
  80%  { transform: translate(-20px, -90vh) rotate(-3deg); }
  92%  { opacity: 1; }
  100% { transform: translate(14px, -116vh) rotate(2deg); opacity: 0; }
}
@keyframes balloon-rise-c {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  9%   { opacity: 1; }
  35%  { transform: translate(14px, -40vh) rotate(-2deg); }
  60%  { transform: translate(-22px, -68vh) rotate(3deg); }
  85%  { transform: translate(10px, -96vh) rotate(-2deg); }
  93%  { opacity: 1; }
  100% { transform: translate(-8px, -118vh) rotate(1deg); opacity: 0; }
}
.balloon-a { animation-name: balloon-rise-a; }
.balloon-b { animation-name: balloon-rise-b; }
.balloon-c { animation-name: balloon-rise-c; }

/* --- Iskierki ------------------------------------------------------------ */

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-100);
  box-shadow: 0 0 6px 1px rgba(245, 235, 201, 0.8);
  animation-name: spark-twinkle;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes spark-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.9; transform: scale(1.3); }
}

/* --- Ksiega gosci (strona glowna) ----------------------------------------- */

.guestbook-panel { margin-top: 1.5rem; }
.guestbook-title { text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin: 0; }
.guestbook-form { margin-top: 1.25rem; }
.guestbook-textarea {
  display: block;
  width: 100%;
  min-height: 5.5rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(216, 172, 71, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: var(--gold-50);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 1rem;
  resize: vertical;
  box-sizing: border-box;
}
.guestbook-textarea:focus { outline: none; border-color: var(--gold-400); }

.guestbook-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.guestbook-entry {
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(20, 16, 9, 0.55);
  border: 1px solid rgba(216, 172, 71, 0.16);
}
.guestbook-entry-nick { font-size: 0.72rem; font-weight: 700; color: var(--gold-300); text-transform: uppercase; letter-spacing: 0.04em; }
.guestbook-entry-msg { margin-top: 0.3rem; font-size: 0.9rem; color: rgba(245, 235, 201, 0.92); line-height: 1.45; word-wrap: break-word; }
.guestbook-entry-new { animation: fade-in 0.4s ease-out; }
.guestbook-empty { text-align: center; color: rgba(245, 235, 201, 0.55); font-size: 0.85rem; margin-top: 1.5rem; }
