body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #d4af37);
  /* background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #d4af37, #0077ff); */
  /* background-size: 400% 400%; */
  /* animation: gradientShift 20s ease infinite; */
  background-size: 200% 200%;
  animation: gradientShift 30s ease infinite;
  color: var(--text-color);
  line-height: 1.6;
  transition: background 0.5s ease, color 0.5s ease;
  overflow-x: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.8;
}

.about p {
  margin-bottom: 20px;
}

.schedule {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1em;
}

.schedule ul {
  list-style: none;
  padding: 0;
}

.schedule li {
  margin: 10px 0;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #111, #222);
}

.avatar {
  width: 120px;
  border-radius: 50%;
  border: 3px solid #d4af37; /* gold */
}



h1 {
  font-size: 2.5em;
  margin: 10px 0;
  color: var(--accent-color);
}


.tagline {
  font-style: italic;
  color: #ccc;
}
.btn a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
  border-bottom: 1px solid #333;
}

.clip-grid iframe,
.merch-grid img,
.avatar {
  border: 2px solid var(--accent-color);
}

.merch-grid img {
  width: 150px;
  margin: 10px;
  border: 2px solid #d4af37;
}
.social {
  text-align: center;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.social-icons a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
}

form {
  max-width: 400px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #222;
  color: #fff;
}

button {
  padding: 10px 20px;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn:hover,
button:hover,
.social-icons a:hover {
  background-color: var(--text-color);
  color: var(--accent-color);
}

.avatar:hover {
  border-color: var(--text-color);
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}
:root {
  --bg-color: #000000;
  --text-color: #f5f5f5;
  --accent-color: #d4af37; /* gold for dark mode */
}
body.light-mode {
  --bg-color: #ffffff;
  --text-color: #000000;
  --accent-color: #0077ff; /* bold blue for light mode */
}
body.light-mode .hero {
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  color: #000;
}
body.light-mode {
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  color: #000;
}
body.light-mode .hero h1 {
  color: var(--accent-color);
}

body.light-mode .tagline {
  color: #555;
}

body.light-mode .avatar {
  border-color: var(--accent-color);
}
body.light-mode footer {
  background-color: #f0f0f0;
  color: #000;
}

body.light-mode form input,
body.light-mode form textarea {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}

body.light-mode form button {
  background-color: var(--accent-color);
  color: var(--bg-color);
}


#theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 15px;
  background-color: var(--accent-color);
  color: var(--bg-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000;
}
.animated {
  cursor: pointer;

}

.animated:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Dark mode footer links (default) */
footer .links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a,
.footer-links a:visited,
.footer-links a:before,
.footer-links a:after {
  color: #fff !important;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff !important;
  text-decoration: underline;
}

/* Light mode overrides */
body.light-mode .footer-links a,
body.light-mode .footer-links a:visited,
body.light-mode .footer-links a:before,
body.light-mode .footer-links a:after {
  color: var(--accent-color) !important; /* use theme accent (blue in light mode) */
  text-decoration: none;
}

body.light-mode .footer-links a:hover,
body.light-mode .footer-links a:focus {
  color: var(--accent-color) !important;
  text-decoration: underline;
}
.clip-grid {
  display: flex;
  flex-wrap: wrap;          /* allows multiple rows */
  justify-content: center;  /* centers horizontally */
  gap: 20px;                /* spacing between clips */
  margin: 20px auto;
}

.clip-grid iframe {
  width: 400px;   /* consistent size */
  height: 225px;  /* 16:9 aspect ratio */
  border: 2px solid var(--accent-color);
  border-radius: 8px;
}
.clips {

  text-align: center;
  font-size: 1.1em;
}

.clips ul {
  list-style: none;
  padding: 0;
}

.clips li {
  margin: 10px 0;
  font-weight: bold;
}
      .error,
	  .thanks {
      text-align: center;
      padding: 50px;
      font-family: Arial, sans-serif;
    }
    .errorpage,
	.thankyou {
      max-width: 600px;
      margin: auto;
      background: #222;
      color: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      text-align: center;
      padding: 50px;
      font-family: Arial, sans-serif;
    }
    .thankyou h1 {
      margin-bottom: 20px;
    }
    .thankyou p {
      font-size: 1.2em;
    }
/* Sections fade and slide in when they become visible */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth hover effect for social icons */
.social-icons .btn img {
  transition: transform 0.3s ease;
}

.social-icons .btn img:hover {
  transform: scale(1.2) rotate(5deg);
}

/* Glow effect for headers */
h1, h2 {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color); }
  to   { text-shadow: 0 0 20px var(--accent-color), 0 0 30px var(--accent-color); }
}

.clip-grid iframe {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clip-grid iframe:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

button.animated {
  position: relative;
  overflow: hidden;
}

button.animated::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: transparent url("https://www.transparenttextures.com/patterns/stardust.png") repeat;
  animation: starScroll 60s linear infinite;
  z-index: -1;
}

@keyframes starScroll {
  from { background-position: 0 0; }
  to   { background-position: 1000px 1000px; }
}

.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #111;
  color: #fff;
  text-align: center;
}
.error-container h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-track iframe {
  flex: 0 0 80%;          /* each clip takes 80% of container width */
  max-width: 400px;
  aspect-ratio: 16 / 9;
  margin: 0 10px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.carousel-btn {
  background: var(--accent-color);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: #444;
}

    #easter-egg {
      display: none;
      margin-top: 40px;
      background: #222;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0,0,0,0.5);
      animation: flash 1s infinite alternate;
    }
    @keyframes flash {
      from { opacity: 0.5; }
      to { opacity: 1; }
    }
    a {
      color: #FFD700;
      text-decoration: underline;
    }

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;   /* centers all text inside */
}

.faq-container details {
  display: inline-block; /* keeps collapsibles neat when centered */
  text-align: left;      /* optional: keeps answers aligned left inside */
  width: 100%;           /* ensures they span the container */
}
.faq-container summary {
  display: block;        /* ensures it takes full width */
  text-align: center;    /* centers the question text */
  font-weight: bold;
  cursor: pointer;
}

.faq-container details p {
  text-align: center;
}
details p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

details[open] p {
  opacity: 1;
  transform: translateY(0);
}
summary {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

summary:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--accent-color);
}
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}
/* ===========================
   Merch Hub Styling
   =========================== */
.merch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
}

.merch-grid .product {
  background: #111;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 180px;
  color: var(--text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-grid .product img {
  max-width: 100%;
  height: auto;          /* keeps proportions */
  object-fit: cover;     /* crops neatly if needed */
  border-radius: 6px;
  margin-bottom: 10px;
  border: 2px solid var(--accent-color);
}

.merch-grid .product:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px var(--accent-color);
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px var(--accent-color); }
  50% { box-shadow: 0 0 20px var(--accent-color); }
  100% { box-shadow: 0 0 5px var(--accent-color); }
}

/* Shop Buttons */
.shop-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: var(--accent-color);
  color: var(--bg-color);
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.shop-btn:hover {
  transform: scale(1.05);
  background: var(--text-color);
  color: var(--accent-color);
}
section#apparel h2 {
  text-align: center;
  font-size: 2rem; /* optional: make it pop */
  margin-bottom: 20px; /* spacing below */
}
.section-banner {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 20px;
  margin-bottom: 30px;
  color: #fff;
  background: linear-gradient(90deg, #d4af37, #ff8c00, #d4af37);
  border-radius: 8px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden; }
/* Optional: add roaring lion motif as faint background */
.section-banner::before {
  content: "";
  background: url("assets/lion-silhouette.png") no-repeat center;
  background-size: 120px;
  opacity: 0.15;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
/* Lore Section Styling */
.lore-section, .section {
  padding: 40px;
  margin: 20px auto;
  max-width: 900px;
  text-align: center;
  background: linear-gradient(90deg, #ff4500, #ff8c00, #ff0000);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* Headings with fiery glow */
.lore-section h2, .section h2 {
  text-shadow: 2px 2px 8px #ff4500;
  margin-bottom: 15px;
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  row-gap: 30px;     /* vertical spacing between boxes */
  column-gap: 20px;  /* horizontal spacing between boxes */
}

.game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #111;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  padding: 10px;
  height: 100%;
  overflow: hidden; /* ensures image doesn’t spill outside */
}

.game-card img {
  width: 100%;
  height: auto;          /* keeps original proportions */
  max-height: 200px;     /* prevents oversized images */
  object-fit: contain;   /* ensures full image is visible */
}
.game-card h3 {
  margin: 0 0 4px;   /* small gap below title */
}

.game-card p {
  margin: 0;         /* remove default spacing */
  line-height: 1.4;  /* tighter line spacing */
}

.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background: var(--accent-color);
  color: var(--bg-color);
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 20px 0;
  width: 50%;
  padding: 20px;
  background: #111;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-date {
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.timeline-content h3 {
  margin: 0;
  color: #fff;
}

.timeline-content p {
  margin: 5px 0;
  color: #ccc;
}

.timeline-content a {
  color: var(--accent-color);
  text-decoration: underline;
}
.timeline-scroll {
  height: 60vh;              /* adjust to match catalogue height */
  overflow-y: auto;          /* vertical scroll */
  padding-right: 8px;        /* space for scrollbar */
  border: 2px solid #333;    /* optional: visual boundary */
  border-radius: 8px;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on mobile */
}

/* Ensure the timeline itself doesn't override scroll */
.timeline {
  list-style: none;
  margin: 40px auto;
  padding: 0;
  max-width: 800px;
  position: relative;
}
#clearFilters {
  background: var(--accent-color);
  color: var(--bg-color);
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

#clearFilters:hover {
  transform: scale(1.05);
  background: var(--text-color);
  color: var(--accent-color);
}
#noResults {
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 40px;
}

#noResults.visible {
  opacity: 1;
  transform: scale(1);
  animation: glowPulse 2s ease-in-out infinite alternate;
}

/* Lion silhouette watermark */
#noResults::before {
  content: "";
  background: url("assets/lion-silhouette.png") no-repeat center;
  background-size: 180px;
  opacity: 0.1; /* faint watermark */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}

#noResults h3 {
  color: var(--accent-color);
  text-shadow: 0 0 10px #ff4500, 0 0 20px #ff8c00;
  font-size: 1.5rem;
}

#noResults p {
  color: #ccc;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px #ff4500, 0 0 20px #ff8c00;
  }
  to {
    text-shadow: 0 0 20px #ff8c00, 0 0 40px #ff0000;
  }
}
/* Filter Controls */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px auto;
}

.filters input[type="search"],
.filters select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex: 1 1 160px;
  background: #111;
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filters select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
}

.filters input[type="search"]:hover,
.filters select:hover {
  box-shadow: 0 0 12px var(--accent-color);
  transform: scale(1.03);
}

.filters input[type="search"]:focus,
.filters select:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 15px #ff4500;
}

.filters select option {
  background: #222;
  color: var(--text-color);
}
/* Scrollable area for the catalogue cards */
.catalogue-scroll {
  height: 60vh;            /* adjust (e.g., 50vh–70vh) */
  overflow-y: auto;        /* vertical scroll inside the box */
  padding-right: 8px;      /* prevents scrollbar overlaying content */
  -webkit-overflow-scrolling: touch; /* smooth on mobile */
}

/* Grid layout stays intact */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch; /* ensures all cards in a row stretch to equal height */
}

/* Optional: ensure the section itself doesn’t force extra scroll issues */
section#completed-grid {
  overflow: hidden;
}
section#completed-grid .catalogue-scroll { 
  height: 60vh !important; 
  overflow-y: auto !important; 
}
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;   /* 👈 move to left */
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

/* Side popup menu (drawer) */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px; /* hidden off-screen on the left */
  width: 250px;
  height: 100%;
  background: var(--accent-color);
  padding-top: 70px;
  transition: left 0.3s ease;
  z-index: 2000;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  margin: 1.5rem;
}

.side-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  transition: color 0.3s;
}

.side-menu a:hover {
  color: #ffd700;
}

.side-menu.show {
  left: 0; /* 👈 slides in from the left */
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;   /* if menu slides from left, use left: 20px */
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.close-btn:hover {
  color: #ffd700;
}
/* Final, high-specificity light mode override for Lore sections */
body.light-mode #awakening,
body.light-mode #pride,
body.light-mode #trials,
body.light-mode #symbols,
body.light-mode #legacy {
  background: linear-gradient(90deg, #0077ff, #66aaff, #0077ff) !important;
  color: var(--text-color) !important;
}

/* Optional: make headings glow in the correct accent in light mode */
body.light-mode #awakening h2,
body.light-mode #pride h2,
body.light-mode #trials h2,
body.light-mode #symbols h2,
body.light-mode #legacy h2 {
  text-shadow: 2px 2px 8px var(--accent-color) !important;
}
/* ===========================
   Light Mode Overrides for Completed Hunts
   =========================== */

/* Filters section */
body.light-mode #filters {
  background: #f9f9f9 !important;
  color: var(--text-color) !important;
}

body.light-mode #filters h2 {
  color: var(--accent-color) !important;
  text-shadow: 2px 2px 8px var(--accent-color) !important;
}

body.light-mode #filters .filters input[type="search"],
body.light-mode #filters .filters select {
  background: #fff !important;
  color: var(--text-color) !important;
  border: 2px solid var(--accent-color) !important;
}

body.light-mode #filters .filters select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%230077ff' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>") !important;
}

body.light-mode #filters #clearFilters {
  background: var(--accent-color) !important;
  color: var(--bg-color) !important;
}

/* Catalogue section */
body.light-mode #completed-grid {
  background: #f9f9f9 !important;
  color: var(--text-color) !important;
}

body.light-mode #completed-grid h2 {
  color: var(--accent-color) !important;
  text-shadow: 2px 2px 8px var(--accent-color) !important;
}

body.light-mode #completed-grid .catalogue-scroll {
  background: #fff !important;
}

body.light-mode #completed-grid .catalogue-grid {
  background: #fff !important;
}

/* Timeline section */
body.light-mode #timeline {
  background: #f9f9f9 !important;
  color: var(--text-color) !important;
}

body.light-mode #timeline h2 {
  color: var(--accent-color) !important;
  text-shadow: 2px 2px 8px var(--accent-color) !important;
}

body.light-mode #timeline .timeline-scroll {
  background: #fff !important;
}

body.light-mode #timeline .timeline {
  background: #fff !important;
}

body.light-mode #timeline .timeline li {
  background: #f9f9f9 !important;
  border: 2px solid var(--accent-color) !important;
  color: var(--text-color) !important;
}
/* Light mode override for catalogue boxes */
body.light-mode .game-card {
  background: #f9f9f9 !important;   /* light background */
  color: var(--text-color) !important; /* black text */
  border: 2px solid var(--accent-color) !important;
  box-shadow: 0 0 15px rgba(0,0,0,0.2) !important;
}

body.light-mode .game-card h3,
body.light-mode .game-card p {
  color: var(--text-color) !important;
}

/* Light mode override for timeline boxes */
body.light-mode .timeline-item {
  background: #f9f9f9 !important;   /* light background */
  color: var(--text-color) !important; /* black text */
  border: 2px solid var(--accent-color) !important;
  box-shadow: 0 0 15px rgba(0,0,0,0.2) !important;
}

body.light-mode .timeline-content h3,
body.light-mode .timeline-content p,
body.light-mode .timeline-date {
  color: var(--text-color) !important;
}

body.light-mode .timeline-date {
  font-weight: bold;
  color: var(--accent-color) !important; /* accent for dates */
}
/* Light mode override for filter dropdowns */
body.light-mode #filters select {
  background: #fff !important;              /* white background */
  color: var(--text-color) !important;      /* black text */
  border: 2px solid var(--accent-color) !important;
}

body.light-mode #filters select option {
  background: #fff !important;              /* white background for options */
  color: var(--text-color) !important;      /* black text inside options */
}

/* Light mode arrow icon (blue instead of gold) */
body.light-mode #filters select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%230077ff' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
}
.timeline-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--accent-color);
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

body.light-mode .timeline-thumb {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}