/* WHY: Fort Soot's public site presents a single "front door" and gradually opens into a simple directory. */
/* WHY: We keep the atmosphere consistent while adding lightweight pages (directory/about) over time. */
/* WHY: The UI should feel quiet and uncertain; avoid decorative frames that "explain" structure. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cinzel', serif;
  overflow-x: hidden;
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #0d1a0d 0%, #081208 50%, #030603 100%);
  color: #e8e8e8;
}

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Deep dark forest background */
.dark-atmosphere {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

/* Forest floor mist */
.fog-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, 
    rgba(15, 25, 15, 0.8) 0%, 
    rgba(10, 20, 10, 0.6) 30%, 
    rgba(5, 15, 5, 0.3) 60%, 
    transparent 100%);
  animation: driftForestMist 25s ease-in-out infinite;
}

@keyframes driftForestMist {
  0%, 100% { 
    opacity: 0.6; 
    transform: translateX(0px) scaleY(1); 
  }
  33% { 
    opacity: 0.8; 
    transform: translateX(-30px) scaleY(1.1); 
  }
  66% { 
    opacity: 0.7; 
    transform: translateX(40px) scaleY(0.9); 
  }
}

/* Layered forest silhouettes */
.star-field {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Distant tree line */
    linear-gradient(to bottom, transparent 0%, transparent 15%, #0a1a0a 20%, #0a1a0a 25%, transparent 30%),
    /* Mid-distance trees */
    linear-gradient(to bottom, transparent 0%, transparent 25%, #061806 30%, #061806 40%, transparent 45%),
    /* Closer tree silhouettes */
    linear-gradient(to bottom, transparent 0%, transparent 35%, #041404 45%, #041404 60%, transparent 65%),
    /* Forest undergrowth */
    linear-gradient(to bottom, transparent 0%, transparent 70%, #021202 75%, #021202 85%, transparent 90%),
    /* Scattered fireflies */
    radial-gradient(1px 1px at 80px 40px, rgba(255, 255, 100, 0.6), transparent),
    radial-gradient(1px 1px at 220px 60px, rgba(100, 255, 100, 0.4), transparent),
    radial-gradient(1px 1px at 150px 80px, rgba(255, 255, 150, 0.5), transparent),
    radial-gradient(1px 1px at 300px 45px, rgba(150, 255, 150, 0.3), transparent),
    radial-gradient(1px 1px at 50px 70px, rgba(255, 255, 200, 0.4), transparent);
  background-repeat: repeat-x, repeat-x, repeat-x, repeat-x, repeat, repeat, repeat, repeat, repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 400px 400px, 350px 350px, 450px 450px, 380px 380px, 420px 420px;
  animation: forestGlow 20s infinite ease-in-out;
}

@keyframes forestGlow {
  0%, 100% { opacity: 0.7; filter: brightness(0.8); }
  50% { opacity: 0.9; filter: brightness(1.1); }
}

/* Layered forest silhouettes */
.forest-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.distant-trees {
  bottom: 40%;
  z-index: -10;
  animation: gentleBreeze 30s ease-in-out infinite;
}

.mid-trees {
  bottom: 25%;
  z-index: -9;
  animation: gentleBreeze 25s ease-in-out infinite reverse;
}

.close-trees {
  bottom: 10%;
  z-index: -8;
  animation: gentleBreeze 35s ease-in-out infinite;
}

.undergrowth {
  bottom: 0%;
  z-index: -7;
  animation: gentleBreeze 20s ease-in-out infinite reverse;
}

.tree-silhouettes, .undergrowth-silhouettes {
  width: 100%;
  height: 100%;
  filter: blur(0.5px);
}

@keyframes gentleBreeze {
  0%, 100% { 
    transform: translateX(0px) scaleX(1);
    filter: blur(0.5px);
  }
  25% { 
    transform: translateX(-10px) scaleX(1.02);
    filter: blur(0.3px);
  }
  50% { 
    transform: translateX(5px) scaleX(0.98);
    filter: blur(0.7px);
  }
  75% { 
    transform: translateX(-5px) scaleX(1.01);
    filter: blur(0.4px);
  }
}

/* Complex particle system with atmospheric effects */
.particle-system {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
  animation: globalWindShift 60s infinite ease-in-out;
}

/* Global atmospheric wind effects */
@keyframes globalWindShift {
  0% { transform: translateX(0px) scale(1); }
  20% { transform: translateX(8px) scale(1.01); }
  40% { transform: translateX(-12px) scale(0.99); }
  60% { transform: translateX(15px) scale(1.02); }
  80% { transform: translateX(-6px) scale(0.98); }
  100% { transform: translateX(0px) scale(1); }
}

.particle {
  position: absolute;
  pointer-events: none;
}

/* Firefly base styles */
.firefly {
  border-radius: 50%;
  position: absolute;
  top: 105%; /* Start completely off-screen */
  opacity: 0; /* Start completely invisible */
  animation: fireflyFloat 15s infinite ease-in-out, fireflyBlink 3s infinite ease-in-out, windCurrent1 20s infinite ease-in-out;
}

/* Large golden fireflies */
.firefly-large {
  width: 6px;
  height: 6px;
  animation-duration: 18s, 4s, 25s;
}

.firefly-golden {
  background: radial-gradient(circle, #FFD700, rgba(255, 215, 0, 0.1));
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Medium green fireflies */
.firefly-medium {
  width: 4px;
  height: 4px;
  animation-duration: 20s, 2.5s, 18s;
}

.firefly-green {
  background: radial-gradient(circle, #9ACD32, rgba(154, 205, 50, 0.1));
  box-shadow: 0 0 10px rgba(154, 205, 50, 0.8), 0 0 16px rgba(154, 205, 50, 0.3);
}

/* Small yellow fireflies */
.firefly-small {
  width: 3px;
  height: 3px;
  animation-duration: 16s, 2s, 22s;
}

.firefly-yellow {
  background: radial-gradient(circle, #FFFF80, rgba(255, 255, 128, 0.1));
  box-shadow: 0 0 8px rgba(255, 255, 128, 0.9), 0 0 14px rgba(255, 255, 128, 0.3);
}

/* Lightning bugs (bright) */
.firefly-lightning {
  width: 5px;
  height: 5px;
  animation-duration: 12s, 1.5s, 15s;
}

.firefly-white {
  background: radial-gradient(circle, #FFFACD, rgba(255, 250, 205, 0.1));
  box-shadow: 0 0 15px rgba(255, 250, 205, 1), 0 0 25px rgba(255, 250, 205, 0.5);
}

/* Tiny forest sprites */
.firefly-tiny {
  width: 2px;
  height: 2px;
  animation-duration: 14s, 1.8s, 12s;
}

.firefly-sprite {
  background: radial-gradient(circle, #98FB98, rgba(152, 251, 152, 0.1));
  box-shadow: 0 0 6px rgba(152, 251, 152, 0.7), 0 0 10px rgba(152, 251, 152, 0.2);
}

/* Individual firefly positioning and timing */
.firefly-1 { left: 15%; animation-delay: 0s, 1s, 2s; }
.firefly-2 { left: 65%; animation-delay: 8s, 3s, 5s; }
.firefly-3 { left: 85%; animation-delay: 16s, 6s, 8s; }

.firefly-4 { left: 25%; animation-delay: 4s, 0.5s, 3s; }
.firefly-5 { left: 45%; animation-delay: 12s, 2s, 7s; }
.firefly-6 { left: 75%; animation-delay: 6s, 4s, 1s; }
.firefly-7 { left: 90%; animation-delay: 18s, 1.5s, 9s; }

.firefly-8 { left: 10%; animation-delay: 2s, 0.2s, 4s; }
.firefly-9 { left: 35%; animation-delay: 10s, 1.8s, 6s; }
.firefly-10 { left: 55%; animation-delay: 14s, 0.8s, 2s; }
.firefly-11 { left: 80%; animation-delay: 7s, 2.5s, 8s; }
.firefly-12 { left: 20%; animation-delay: 20s, 1.2s, 5s; }

.firefly-13 { left: 40%; animation-delay: 5s, 0.3s, 3s; animation-duration: 10s, 1s, 12s; }
.firefly-14 { left: 70%; animation-delay: 15s, 1s, 7s; animation-duration: 14s, 1.8s, 16s; }
.firefly-15 { left: 95%; animation-delay: 9s, 0.7s, 4s; animation-duration: 11s, 1.3s, 13s; }

.firefly-16 { left: 5%; animation-delay: 3s, 0.4s, 1s; }
.firefly-17 { left: 30%; animation-delay: 11s, 1.6s, 6s; }
.firefly-18 { left: 60%; animation-delay: 17s, 0.9s, 9s; }
.firefly-19 { left: 88%; animation-delay: 13s, 2.2s, 3s; }

/* Procedural vector field wind system */
@keyframes windCurrent1 {
  0% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(40px) translateY(-20px); }
  50% { transform: translateX(-30px) translateY(-40px); }
  75% { transform: translateX(60px) translateY(-60px); }
  100% { transform: translateX(20px) translateY(-80px); }
}

@keyframes windCurrent2 {
  0% { transform: translateX(0px) translateY(0px); }
  20% { transform: translateX(-50px) translateY(-15px); }
  40% { transform: translateX(70px) translateY(-35px); }
  60% { transform: translateX(-40px) translateY(-55px); }
  80% { transform: translateX(80px) translateY(-75px); }
  100% { transform: translateX(-20px) translateY(-95px); }
}

@keyframes windCurrent3 {
  0% { transform: translateX(0px) translateY(0px); }
  15% { transform: translateX(60px) translateY(-10px); }
  35% { transform: translateX(-70px) translateY(-30px); }
  55% { transform: translateX(90px) translateY(-50px); }
  75% { transform: translateX(-50px) translateY(-70px); }
  100% { transform: translateX(40px) translateY(-90px); }
}

@keyframes turbulence {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(0.9); }
  75% { transform: rotate(270deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes vortex {
  0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
  25% { transform: translateX(30px) translateY(-20px) rotate(90deg); }
  50% { transform: translateX(0px) translateY(-40px) rotate(180deg); }
  75% { transform: translateX(-30px) translateY(-60px) rotate(270deg); }
  100% { transform: translateX(0px) translateY(-80px) rotate(360deg); }
}

/* Firefly animation keyframes */
@keyframes fireflyFloat {
  0% {
    top: 105%;
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0.5);
  }
  8% {
    top: 100%;
    opacity: 0;
    transform: translateX(5px) translateY(-5px) scale(0.7);
  }
  15% {
    top: 95%;
    opacity: 1;
    transform: translateX(20px) translateY(-15px) scale(1);
  }
  30% {
    top: 75%;
    opacity: 0.8;
    transform: translateX(-15px) translateY(-40px) scale(1.1);
  }
  45% {
    top: 55%;
    opacity: 1;
    transform: translateX(35px) translateY(-60px) scale(0.9);
  }
  65% {
    top: 35%;
    opacity: 0.6;
    transform: translateX(-25px) translateY(-80px) scale(1.2);
  }
  80% {
    top: 15%;
    opacity: 1;
    transform: translateX(40px) translateY(-95px) scale(0.8);
  }
  90% {
    top: 5%;
    opacity: 0.7;
    transform: translateX(10px) translateY(-100px) scale(1);
  }
  95% {
    top: 0%;
    opacity: 0.3;
    transform: translateX(15px) translateY(-105px) scale(0.7);
  }
  100% {
    top: -10%;
    opacity: 0;
    transform: translateX(25px) translateY(-110px) scale(0.3);
  }
}

@keyframes fireflyBlink {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  25% { 
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% { 
    opacity: 1;
    transform: scale(1.2);
  }
  75% { 
    opacity: 0.7;
    transform: scale(0.9);
  }
}

/* Main content */
.main-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  width: 100%;
}

.main-content.is-door-locked {
  cursor: pointer;
}

/* Dark Castle */
.castle-container {
  width: 400px;
  height: 300px;
  margin: 0 auto 60px;
  opacity: 0;
  animation: fadeInCastle 3s ease-in-out 1s forwards;
}

.castle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(34, 139, 34, 0.4));
}

.castle-svg rect {
  shape-rendering: crispEdges; /* Maintain blocky/pixelated aesthetic */
}

@keyframes fadeInCastle {
  to { opacity: 1; }
}

/* Fluffy Soot Silhouette */
.soot-container {
  width: 200px;
  height: 150px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeInSoot 2s ease-in-out 4s forwards;
}

.soot-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.cat-silhouette {
  animation: breathe 5s ease-in-out infinite;
}

.cat-silhouette.fuzzy-outer {
  animation-delay: 0s;
}

.cat-silhouette.fuzzy-mid {
  animation-delay: 0.2s;
}

.cat-silhouette.fuzzy-inner {
  animation-delay: 0.4s;
}

.cat-silhouette.main {
  animation-delay: 0.6s;
}

.cat-ear {
  animation: breathe 5s ease-in-out infinite;
}

.cat-ear.fuzzy-outer {
  animation-delay: 0.1s;
}

.cat-ear.fuzzy-mid {
  animation-delay: 0.3s;
}

.cat-ear.main {
  animation-delay: 0.5s;
}

.cat-tail {
  animation: breathe 5s ease-in-out infinite;
}

.cat-tail.fuzzy-outer {
  animation-delay: 0.2s;
}

.cat-tail.fuzzy-mid {
  animation-delay: 0.4s;
}

.cat-tail.main {
  animation-delay: 0.6s;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes fadeInSoot {
  to { opacity: 1; }
}

/* Text content */
.text-content {
  opacity: 0;
  animation: fadeInText 2s ease-in-out 6s forwards;
}

.coming-soon {
  font-size: 2.2rem;
  font-weight: 600;
  color: #f0d0a0;
  text-shadow: 0 0 25px rgba(34, 139, 34, 0.8);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.02);
  }
}

@keyframes fadeInText {
  to { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
  .coming-soon {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }
  
  .castle-container {
    width: 300px;
    height: 225px;
    margin-bottom: 40px;
  }
  
  .soot-container {
    width: 160px;
    height: 120px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .coming-soon {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  
  .castle-container {
    width: 250px;
    height: 188px;
    margin-bottom: 30px;
  }
  
  .soot-container {
    width: 130px;
    height: 98px;
    margin-bottom: 25px;
  }
  
  .container {
    padding: 15px;
  }
}

/* Subtle aesthetic elements */
.mystery-orb {
  filter: drop-shadow(0 0 15px #4ecdc4);
}

.eye-glow {
  filter: drop-shadow(0 0 8px #FFD700);
}

/* Add some mysterious hover effects */
.castle-container:hover .castle-svg {
  filter: drop-shadow(0 0 40px rgba(34, 139, 34, 0.8));
  transform: scale(1.02);
  transition: all 0.5s ease;
}

.soot-container:hover .soot-svg {
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
  transform: scale(1.05);
  transition: all 0.5s ease;
} 

/* Password "front door" overlay */
.door-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 999;
}

.door-overlay.is-active {
  display: flex;
}

.door-modal {
  width: 100%;
  max-width: 420px;
  background: rgba(10, 14, 10, 0.92);
  border: none;
  border-radius: 0;
  padding: 22px 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.door-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-size: 1.35rem;
  color: #f0d0a0;
  margin-bottom: 6px;
}

.door-form {
  display: grid;
  gap: 10px;
}

.door-label {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.8);
  letter-spacing: 0.5px;
}

.door-input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 0;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #e8e8e8;
  font-size: 1rem;
}

.door-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.12);
}

.door-button {
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.door-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.door-error {
  min-height: 1.2em;
  color: #ffb4b4;
  font-size: 0.9rem;
}

.door-overlay.has-error .door-modal {
  animation: doorShake 0.25s ease-in-out 1;
}

@keyframes doorShake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

/* Screen-reader only text for accessibility without visual noise */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Directory/About pages */
.page-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  padding: 24px 10px;
}

.page-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: #f0d0a0;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(34, 139, 34, 0.5);
}

.page-lede {
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.6;
  margin-bottom: 18px;
}

.admin-info-panel {
  margin-top: 32px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(240, 208, 160, 0.18);
}

.admin-info-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: rgba(240, 208, 160, 0.95);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.admin-info-content {
  color: rgba(232, 232, 232, 0.82);
  line-height: 1.6;
}

.admin-info-content p {
  margin: 8px 0;
}

.admin-info-content a {
  color: rgba(240, 208, 160, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.4);
}

.admin-info-content a:hover {
  color: rgba(240, 208, 160, 1);
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

.directory-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.directory-item {
  border: none;
  border-radius: 0;
  background: transparent;
}

.directory-link {
  display: inline-block;
  padding: 0;
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: #f0d0a0;
  text-decoration: none;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
}

.directory-link:hover {
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

/* Events page */
.events-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.events-item {
  border: none;
  border-radius: 0;
  background: transparent;
}

.events-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: #f0d0a0;
}

.events-where {
  margin-top: 6px;
  color: rgba(240, 208, 160, 0.9);
}

.events-when {
  margin-top: 6px;
  color: rgba(232, 232, 232, 0.85);
  font-size: 0.95rem;
}

.events-details {
  margin-top: 10px;
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.6;
  max-width: 52ch;
}

.events-details-spacer {
  height: 10px;
}

.events-rsvp {
  color: rgba(240, 208, 160, 0.95);
}

.page-nav {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* WHY: The exit link must stay visible for shared-device resets. */
.page-exit {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
}

.page-nav a {
  color: rgba(240, 208, 160, 0.9);
  text-decoration: none;
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
}

.page-nav a:hover {
  color: #f0d0a0;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

/* Calendar + admin events UI */
/* WHY: Events are read-mostly for most visitors; the UI should be quiet and scannable. */
.events-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.events-lede {
  margin-bottom: 0;
}

.events-admin-cta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.events-admin-button {
  padding: 10px 12px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.events-admin-button:hover {
  background: rgba(240, 208, 160, 0.2);
}

.events-admin-status {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: rgba(232, 232, 232, 0.75);
}

.calendar-shell {
  margin-top: 10px;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.calendar-nav-button {
  width: 44px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: rgba(240, 208, 160, 0.12);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  cursor: pointer;
}

.calendar-nav-button:hover {
  background: rgba(240, 208, 160, 0.18);
}

.calendar-month {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: rgba(240, 208, 160, 0.95);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}

.calendar-weekday {
  color: rgba(232, 232, 232, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-align: right;
  padding-right: 6px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  border: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.25);
  color: rgba(232, 232, 232, 0.92);
  padding: 6px 6px;
  min-height: 68px;
  text-align: left;
  cursor: pointer;
}

.calendar-day:hover {
  background: rgba(0, 0, 0, 0.33);
}

.calendar-day.is-outside-month {
  opacity: 0.45;
}

.calendar-day.is-today {
  box-shadow: 0 0 0 1px rgba(240, 208, 160, 0.25);
  background: rgba(240, 208, 160, 0.05);
}

.calendar-day.is-today:hover {
  background: rgba(240, 208, 160, 0.1);
}

.calendar-day.is-selected {
  outline: 2px solid rgba(240, 208, 160, 0.55);
  outline-offset: -2px;
  background: rgba(240, 208, 160, 0.14);
}

.calendar-day.is-selected:hover {
  background: rgba(240, 208, 160, 0.18);
}

.calendar-day-header {
  display: flex;
  justify-content: flex-end;
  font-size: 0.95rem;
  color: rgba(240, 208, 160, 0.9);
  letter-spacing: 0.5px;
}

.calendar-day-events {
  margin-top: 6px;
  display: grid;
  gap: 4px;
}

.calendar-day-event {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-legend {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-legend-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(240, 208, 160, 0.12);
  color: rgba(232, 232, 232, 0.85);
  font-size: 0.85rem;
  line-height: 1.2;
}

.calendar-legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6);
  flex: 0 0 auto;
}

.calendar-legend-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 22ch;
}

.calendar-day-dots {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.calendar-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65), 0 0 10px rgba(240, 208, 160, 0.08);
  filter: saturate(1.15);
}

.calendar-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.25);
}

.calendar-tooltip {
  position: absolute;
  z-index: 2000;
  max-width: min(280px, calc(100vw - 16px));
  padding: 8px 10px;
  background: rgba(10, 14, 10, 0.96);
  border: 1px solid rgba(240, 208, 160, 0.18);
  color: rgba(232, 232, 232, 0.92);
  font-size: 0.85rem;
  line-height: 1.3;
  pointer-events: none;
}

.calendar-day-more {
  font-size: 0.8rem;
  color: rgba(240, 208, 160, 0.8);
}

.events-day-panel {
  margin-top: 14px;
  background: rgba(0, 0, 0, 0.18);
  padding: 14px 14px;
}

.events-day-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: rgba(240, 208, 160, 0.95);
  margin-bottom: 8px;
}

.events-day-list {
  display: grid;
  gap: 10px;
}

.events-day-empty {
  color: rgba(232, 232, 232, 0.7);
}

.events-day-item-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  color: rgba(240, 208, 160, 0.95);
}

.events-day-item-link {
  display: inline-block;
  text-decoration: none;
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
}

.events-day-item-link:hover {
  color: #f0d0a0;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

.events-day-item-details {
  margin-top: 6px;
  color: rgba(232, 232, 232, 0.82);
  line-height: 1.6;
  white-space: pre-wrap;
  max-width: 70ch;
}

.events-day-item-details a {
  color: rgba(240, 208, 160, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
  word-break: break-word;
}

.events-day-item-details a:hover {
  color: #f0d0a0;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

/* Event detail page */
/* WHY: Event pages should be linkable and quiet, with RSVPs visible but not noisy. */
.event-when {
  margin-top: 6px;
  color: rgba(232, 232, 232, 0.85);
  font-size: 0.95rem;
}

.event-panel {
  margin-top: 14px;
  background: rgba(0, 0, 0, 0.18);
  padding: 14px 14px;
}

.event-panel-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: rgba(240, 208, 160, 0.95);
  margin-bottom: 10px;
}

.event-details {
  color: rgba(232, 232, 232, 0.82);
  line-height: 1.6;
  white-space: pre-wrap;
  max-width: 70ch;
}

.event-details a {
  color: rgba(240, 208, 160, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
  word-break: break-word;
}

.event-details a:hover {
  color: #f0d0a0;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

.event-rsvp-count {
  color: rgba(240, 208, 160, 0.95);
  margin-bottom: 10px;
}

.event-rsvp-details summary {
  color: rgba(240, 208, 160, 0.9);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
  list-style: none;
}

.event-rsvp-details summary:hover {
  color: #f0d0a0;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

.event-rsvp-names {
  margin-top: 10px;
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.6;
}

.event-rsvp-form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.event-rsvp-label {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.75);
  letter-spacing: 0.5px;
}

.event-rsvp-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 0;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #e8e8e8;
  font-size: 1rem;
}

.event-rsvp-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.12);
}

.event-rsvp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.event-rsvp-button {
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.event-rsvp-button:hover {
  background: rgba(240, 208, 160, 0.2);
}

.event-rsvp-button.is-secondary {
  background: rgba(240, 208, 160, 0.08);
  color: rgba(240, 208, 160, 0.85);
}

.event-rsvp-button.is-secondary:hover {
  background: rgba(240, 208, 160, 0.16);
}

.event-rsvp-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.event-rsvp-error {
  min-height: 1.2em;
  color: #ffb4b4;
  font-size: 0.9rem;
}

.events-admin-panel {
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.18);
  padding: 14px 14px;
}

.events-admin-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: rgba(240, 208, 160, 0.95);
  margin-bottom: 10px;
}

.events-admin-form {
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.events-admin-label {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.75);
  letter-spacing: 0.5px;
}

.events-admin-input,
.events-admin-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 0;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #e8e8e8;
  font-size: 1rem;
}

.events-admin-input:focus,
.events-admin-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.12);
}

.events-admin-submit {
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
  justify-self: start;
}

.events-admin-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.events-admin-error {
  min-height: 1.2em;
  color: #ffb4b4;
  font-size: 0.9rem;
}

/* WHY: Admins need lightweight controls to manage stays inline. */
.events-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.events-admin-secondary {
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.08);
  color: rgba(240, 208, 160, 0.85);
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.events-admin-secondary:hover {
  background: rgba(240, 208, 160, 0.16);
}

.events-admin-secondary[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.events-admin-divider {
  height: 1px;
  background: rgba(240, 208, 160, 0.12);
  margin: 16px 0;
}

.stays-admin-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.stays-admin-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(240, 208, 160, 0.12);
}

.stays-admin-item.is-editing {
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.22);
}

.stays-admin-item-details {
  display: grid;
  gap: 4px;
}

.stays-admin-name {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  color: rgba(240, 208, 160, 0.95);
}

.stays-admin-dates {
  color: rgba(232, 232, 232, 0.82);
  font-size: 0.9rem;
}

.stays-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.stays-admin-action {
  padding: 6px 10px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.12);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.stays-admin-action:hover {
  background: rgba(240, 208, 160, 0.2);
}

.stays-admin-action.is-danger {
  background: rgba(255, 180, 180, 0.16);
  color: #ffb4b4;
}

.stays-admin-action.is-danger:hover {
  background: rgba(255, 180, 180, 0.26);
}

.stays-admin-action[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Admin password modal */
.admin-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 999;
}

.admin-overlay.is-active {
  display: flex;
}

.admin-modal {
  width: 100%;
  max-width: 420px;
  background: rgba(10, 14, 10, 0.92);
  border: none;
  border-radius: 0;
  padding: 22px 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.admin-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-size: 1.35rem;
  color: #f0d0a0;
  margin-bottom: 6px;
}

.admin-form {
  display: grid;
  gap: 10px;
}

.admin-input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 0;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #e8e8e8;
  font-size: 1rem;
}

.admin-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.12);
}

.admin-button {
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.admin-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.admin-error {
  min-height: 1.2em;
  color: #ffb4b4;
  font-size: 0.9rem;
}

.admin-overlay.has-error .admin-modal {
  animation: doorShake 0.25s ease-in-out 1;
}

@media (max-width: 600px) {
  .events-header {
    flex-direction: column;
    align-items: stretch;
  }
  .events-admin-cta {
    justify-items: start;
  }
  .calendar-day {
    min-height: 58px;
    padding: 5px 5px;
  }
  .calendar-weekday {
    font-size: 0.75rem;
  }
  .calendar-dot {
    width: 13px;
    height: 13px;
  }
}

/* Media page */
/* WHY: Embeds should feel present without adding a "frame" that over-explains structure. */
.media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.media-item {
  margin: 0;
  padding: 0;
}

.media-caption {
  color: rgba(232, 232, 232, 0.85);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.media-embed {
  width: 100%;
  margin-top: 0;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.25);
}

.media-embed-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.media-consent {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 16px;
}

.media-consent-button {
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.media-consent-button:hover {
  background: rgba(240, 208, 160, 0.2);
}

.media-consent-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.media-consent-text {
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.6;
}

.media-consent-text a {
  color: rgba(240, 208, 160, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
}

.media-consent-text a:hover {
  color: #f0d0a0;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

.media-section + .media-section {
  margin-top: 22px;
}

/* Watchlist page */
/* WHY: Watchlist is a shared editable list; UI stays quiet and scannable like events/stays. */
.watchlist-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.watchlist-identity {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 160px;
}

.watchlist-identity-label {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.7);
  letter-spacing: 0.5px;
}

.watchlist-identity-value {
  color: rgba(240, 208, 160, 0.95);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
}

.watchlist-identity-button {
  padding: 8px 10px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.10);
  color: rgba(240, 208, 160, 0.9);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.watchlist-identity-button:hover {
  background: rgba(240, 208, 160, 0.18);
}

.watchlist-panel {
  margin-top: 14px;
  background: rgba(0, 0, 0, 0.18);
  padding: 14px 14px;
}

.watchlist-panel-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: rgba(240, 208, 160, 0.95);
  margin-bottom: 10px;
}

.watchlist-add-form {
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.watchlist-label {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.75);
  letter-spacing: 0.5px;
}

.watchlist-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 0;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #e8e8e8;
  font-size: 1rem;
}

.watchlist-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.12);
}

.watchlist-button {
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
  justify-self: start;
}

.watchlist-button:hover {
  background: rgba(240, 208, 160, 0.2);
}

.watchlist-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.watchlist-button.is-secondary {
  background: rgba(240, 208, 160, 0.08);
  color: rgba(240, 208, 160, 0.85);
}

.watchlist-button.is-secondary:hover {
  background: rgba(240, 208, 160, 0.16);
}

.watchlist-button-inline {
  margin-top: 0;
  padding: 9px 12px;
  justify-self: auto;
}

.watchlist-input-inline {
  padding: 9px 12px;
}

.watchlist-error {
  min-height: 1.2em;
  color: #ffb4b4;
  font-size: 0.9rem;
}

.watchlist-empty {
  margin-top: 10px;
  color: rgba(232, 232, 232, 0.75);
}

.watchlist-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.watchlist-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(240, 208, 160, 0.12);
}

.watchlist-item-main {
  display: grid;
  gap: 6px;
}

.watchlist-item-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  color: rgba(240, 208, 160, 0.95);
}

.watchlist-item-meta {
  display: grid;
  gap: 2px;
  color: rgba(232, 232, 232, 0.8);
  font-size: 0.9rem;
}

.watchlist-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: start;
  justify-content: flex-end;
}

.watchlist-action {
  padding: 8px 10px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.10);
  color: rgba(240, 208, 160, 0.9);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.watchlist-action:hover {
  background: rgba(240, 208, 160, 0.18);
}

.watchlist-action.is-active {
  background: rgba(240, 208, 160, 0.18);
  color: #f0d0a0;
}

.watchlist-action[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.watchlist-item-details {
  grid-column: 1 / -1;
}

.watchlist-item-details summary {
  color: rgba(240, 208, 160, 0.9);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(240, 208, 160, 0.25);
  text-underline-offset: 4px;
  list-style: none;
}

.watchlist-item-details summary:hover {
  color: #f0d0a0;
  text-decoration-color: rgba(240, 208, 160, 0.6);
}

.watchlist-details-body {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.5;
}

.watchlist-detail-line {
  color: rgba(232, 232, 232, 0.75);
}

.watchlist-detail-block {
  display: grid;
  gap: 6px;
}

.watchlist-detail-label {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.7);
  letter-spacing: 0.5px;
}

.watchlist-detail-value {
  color: rgba(232, 232, 232, 0.85);
}

.watchlist-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* Identity modal */
.identity-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 999;
}

.identity-overlay.is-active {
  display: flex;
}

.identity-modal {
  width: 100%;
  max-width: 420px;
  background: rgba(10, 14, 10, 0.92);
  border: none;
  border-radius: 0;
  padding: 22px 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.identity-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-size: 1.35rem;
  color: #f0d0a0;
  margin-bottom: 6px;
}

.identity-form {
  display: grid;
  gap: 10px;
}

.identity-label {
  font-size: 0.85rem;
  color: rgba(232, 232, 232, 0.8);
  letter-spacing: 0.5px;
}

.identity-input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 0;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #e8e8e8;
  font-size: 1rem;
}

.identity-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 208, 160, 0.12);
}

.identity-button {
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  cursor: pointer;
}

.identity-button:hover {
  background: rgba(240, 208, 160, 0.2);
}

.identity-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.identity-error {
  min-height: 1.2em;
  color: #ffb4b4;
  font-size: 0.9rem;
}

/* Remember-me banner */
/* WHY: Offer durable identity only after intentful actions, and keep it easy to dismiss. */
.remember-banner {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(240, 208, 160, 0.12);
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.remember-banner-text {
  color: rgba(232, 232, 232, 0.85);
}

.remember-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.remember-banner-button {
  padding: 9px 12px;
  border-radius: 0;
  border: none;
  background: rgba(240, 208, 160, 0.14);
  color: #f0d0a0;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.remember-banner-button:hover {
  background: rgba(240, 208, 160, 0.2);
}

.remember-banner-button.is-secondary {
  background: rgba(240, 208, 160, 0.08);
  color: rgba(240, 208, 160, 0.85);
}

.remember-banner-button.is-secondary:hover {
  background: rgba(240, 208, 160, 0.16);
}

.remember-banner-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .watchlist-header {
    flex-direction: column;
    align-items: stretch;
  }
  .watchlist-identity {
    justify-items: start;
  }
  .watchlist-item {
    grid-template-columns: 1fr;
  }
  .watchlist-item-actions {
    justify-content: flex-start;
  }
}
