/* ============================================================
   1. IMPORTS + VARIABLES
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Nunito:wght@700&display=swap');

:root {
  --ui-font: "Inter", "Frutiger", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display-font: "Nunito", var(--ui-font);

  --panel-radius: 14px;
  --panel-border: rgba(255,255,255,0.98);
  --panel-bg-top: rgba(255,255,255,0.88);
  --panel-bg-bottom: rgba(255,255,255,0.30);
}

/* ============================================================
   DARK MODE THEME VARIABLES
============================================================ */

html[data-theme="light"] {
  --bg: #f5f5f5;
  --text: #141b1b;

  --panel-bg-top: rgba(255,255,255,0.88);
  --panel-bg-bottom: rgba(255,255,255,0.30);
  --panel-border: rgba(255,255,255,0.98);
}

html[data-theme="dark"] {
  --bg: #0a0a0a;
  --text: #f0f0f0;

  --panel-bg-top: rgba(20,20,20,0.85);
  --panel-bg-bottom: rgba(20,20,20,0.35);
  --panel-border: rgba(255,255,255,0.15);
}

/* Smooth theme transition */
html {
  transition: background 0.3s ease, color 0.3s ease;
  background: var(--bg);   /* only html gets the theme bg */
  color: var(--text);
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html, body, .aero-container, .stat-box, #like-button {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


/* ============================================================
   2. RESET + BASE
============================================================ */

html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  font-family: var(--ui-font);
  line-height: 1.6;
  position: relative;
}

/* body keeps your skybox background later in section 3 */
body {
  color: var(--text); /* but NO background here */
}



/* ============================================================
   3. BACKGROUND LAYERS
============================================================ */

body {
  background:
    url("../assets/img/foreground/foregrounds_66.png") bottom center / 100% 300px no-repeat,
    url("../assets/img/bg/skyboxes_9.png") top center / cover no-repeat;
  background-attachment: fixed, fixed;
  filter: brightness(1);
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/img/bg/skyboxes_13.png") top center / cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

html[data-theme="dark"] body {
  background:
    url("../assets/img/foreground/foregrounds_69.png") bottom center / 100% 300px no-repeat,
    url("../assets/img/bg/liam_30.jpg") top center / cover no-repeat;
  background-attachment: fixed, fixed;
}

html[data-theme="dark"] .pretztail {
  content: url("../assets/img/char/sour_macaracoon.webp");
}


/* ============================================================
   4. HEADER (TITLE CARD)
============================================================ */

.header-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 550px;
  padding: 12px 16px;
  border-radius: 12px;
}

/* Header layout: left zone, centered title, right zone */
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* centers the title */
  text-align: center;
}

/* Title stays centered no matter what */
.site-title {
  font-family: var(--display-font);
  font-weight: 700;
  margin: 0;
  font-size: 32px;
}

/* Left and right header zones */
.header-left,
.header-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.header-left {
  left: 0;
}

.header-right {
  right: 0;
}

/* Admin Panel button (left side) */
.admin-link {
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;

  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: inherit;

  transition: background 0.15s ease, border-color 0.15s ease;
}

.admin-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

/* Login / Logout cluster (right side) */
.auth-status {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.auth-status a {
  color: inherit;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;

  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);

  transition: background 0.15s ease, border-color 0.15s ease;
}

.auth-status a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}


/* ============================================================
   5. MAIN LAYOUT WRAPPER
============================================================ */

.content-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* ============================================================
   6. PANELS (Aero OS Windows)
============================================================ */

.aero-container {
  background: linear-gradient(180deg, var(--panel-bg-top), var(--panel-bg-bottom));
  border: 6px solid var(--panel-border);
  border-radius: var(--panel-radius);
  padding: 15px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 20px 50px rgba(2,6,23,0.35),
    inset 0 1px 0 rgba(255,255,255,0.65);
  position: absolute;
  overflow: visible;
}

.aero-container > .window-content,
.aero-container > .stats-panel-inner,
.aero-container > .directory-inner,
.aero-container > .home-inner,
.aero-container > .widgets-inner {
  padding-top: 36px;
  box-sizing: border-box;
}


.content-container {
  padding-top: 60px;
  padding-bottom: 40px;
  box-sizing: border-box;
}

/* Pretztail Panel (center) */
.content-container.pretztail-panel {
  width: 600px;
  height: 450px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Directory Panel (left) */
.content-container.directory-panel {
  width: 260px;
  height: 450px;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% - 300px - 140px - 260px);
}

/* Stats Panel (right) */
.content-container.stats-panel {
  width: 350px;
  height: 450px;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% + 300px + 90px);
}

/* Every window's content should sit below the separator */
.aero-container > .window-content,
.aero-container > .stats-panel-inner,
.aero-container > .directory-inner,
.aero-container > .home-inner,
.aero-container > .widgets-inner {
  padding-top: 36px; /* or 32px if you want it tighter */
  box-sizing: border-box;
}


/* ============================================================
   7. COMPONENTS
============================================================ */

.window-title {
  position: absolute;
  top: 16px;
  left: 20px;
  font-weight: bold;
  font-size: 18px;
  opacity: 0.9;
}

.window-separator {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.98) 25%,
    rgba(255,255,255,0.98) 75%,
    rgba(255,255,255,0) 100%);
  box-shadow:
    0 6px 18px rgba(2,6,23,0.12),
    inset 0 -2px 6px rgba(0,0,0,0.06);
}

.directory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.directory-list li {
  padding: 6px 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.directory-list li:hover {
  opacity: 0.7;
}

.directory-list li.active {
  opacity: 1;
  font-weight: 700;
  text-decoration: underline;
}

.pretztail {
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 120px;
  pointer-events: none;
}

/* ============================================================
   8. LAST.FM — MOBILE FLOATING WIDGET
============================================================ */

.lastfm-widget {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 260px;
  padding: 12px 16px;
  z-index: 20;
  border-radius: 12px;
}

#lastfm-widget a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

#lastfm-track-link:hover,
#lastfm-artist-link:hover {
  text-decoration: underline;
}

#lastfm-link {
  position: absolute;
  bottom: 6px;
  right: 6px;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

#lastfm-link:hover {
  opacity: 1;
}

#lastfm-logo {
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

.lastfm-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

#lastfm-art {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255,255,255,0.4);
}

.lastfm-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.2;
}

#lastfm-track {
  font-weight: 700;
}

#lastfm-status {
  font-size: 12px;
  opacity: 0.7;
}



/* ============================================================
   10. MOBILE OVERRIDES — CLEAN + FINAL
============================================================ */

@media (max-width: 700px) {

  /* Allow full-height scrolling */
  html, body {
    height: auto !important;
    min-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  /* Reset desktop window positioning — BUT NOT pretztail-panel */
  .aero-container,
  .content-container,
  .content-wrapper,
  .directory-panel,
  .stats-panel,
  #main-content {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    height: auto !important;
    width: 100% !important;
    max-height: none !important;
    min-height: auto !important;
    margin: 0 !important;
    transform: none !important;
  }

  /* Stack inner panels vertically */
  .content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding-bottom: 2rem !important;
  }

  /* Header stays at the top */
  .header-container {
    width: 100% !important;
    padding: 16px 0 !important;
    text-align: center !important;
  }

  .site-title {
    font-size: 24px;
  }

  /* Marquee directly under header (DOM order) */
  body .stamp-scroller {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;

    width: 100% !important;
    margin: 12px 0 0 0 !important;
    padding: 0 !important;

    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  /* Stats panel comes after marquee (inside wrapper) */
  .stats-panel {
    order: 1 !important;
  }

  /* Main panel comes after stats */
  .pretztail-panel {
    order: 2 !important;
    display: block !important;
    position: relative !important; /* drawer anchor */
    width: 100% !important;
    height: auto !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    min-height: 60vh !important;
  }

  /* Hamburger button */
  .pretztail-panel .mobile-menu-button {
    display: block !important;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 50; /* above clipper */
  }

  /* Drawer clipping container — must NOT block clicks */
  .drawer-clipper {
    position: absolute !important;
    inset: 0 !important;
    overflow: hidden !important;
    z-index: 1 !important;
    pointer-events: none !important; /* CRITICAL */
  }

  /* Drawer (JS toggles .open) */
  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    width: 0 !important; /* closed */
    z-index: 10000 !important;
    transition: width 0.25s ease;
  }

  .mobile-drawer.open {
    width: 260px !important; /* open */
  }

  /* Backdrop */
  .mobile-drawer-backdrop {
    position: fixed !important;
    inset: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 9998 !important;
    transition: opacity 0.25s ease;
  }

  .mobile-drawer-backdrop.open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Hide desktop directory panel */
  .directory-panel {
    display: none !important;
  }
}



/* ============================================================
   11. STATS PANEL LAYOUT + SCROLLING
============================================================ */

.stats-panel {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.stats-panel-inner {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  padding-bottom: 0 !important;
}

.stats-panel-inner::-webkit-scrollbar {
  width: 6px;
}

.stats-panel-inner::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.stats-panel-inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.stats-panel-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.stats-panel .stats-panel-inner {
  padding-top: 0px;
  box-sizing: border-box;
}


/* ============================================================
   12. STAT WIDGETS — CLEAN + CORRECT
============================================================ */

.stat-box {
  background: var(--panel-bg-top);
  border: 2px solid var(--panel-border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  /* flex-shrink: 0;  ← REMOVED */
}

.stat-header {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  color: var(--text);
}

.status-box {
  outline: none;
  font-size: 14px;
  color: var(--text);
  min-height: 24px;
}

.status-updated {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 6px;
  margin-top: -4px;
}

/* Reaction bar */
.stat-likes {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

/* Emoji button */
.like-emoji {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.like-emoji:hover {
  opacity: 0.8;
}

.like-emoji:active {
  transform: scale(0.9);
}

.like-emoji.liked {
  transform: scale(1.2);
}

/* Yeah-name label */
.yeah-name {
  font-weight: 600;
  opacity: 0.85;
}

/* Like count */
.like-count {
  font-weight: 600;
  opacity: 0.9;
}

/* Mood */

.mood-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mood-emoji {
  font-size: 1.6rem;
}

.mood-updated {
  opacity: 0.6;
  font-size: 0.9rem;
}

.mood-edit-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.mood-edit-btn:hover {
  opacity: 1;
  transform: rotate(20deg);
}

.mood-expire-btn {
  position: absolute;
  top: 6px;
  right: 34px; /* offset from the cog */
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.mood-expire-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* Make the whole mood widget a positioning context */
.mood-box {
  position: relative;
}

/* Position the cog in the top-right corner */
.mood-edit-btn {
  position: absolute;
  top: 6px;
  right: 6px;

  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.mood-edit-btn:hover {
  opacity: 1;
  transform: rotate(20deg);
}

.like-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 4px 8px;
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.08); /* light mode fallback */
  backdrop-filter: blur(4px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: background 0.15s ease, border-color 0.15s ease;
}

body.dark .like-box {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.like-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}



/* ============================================================
   13. LAST.FM — DESKTOP STATS WIDGET (CLEANED)
============================================================ */

.stats-lastfm-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.stats-lastfm-logo {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
  transition: opacity 0.15s ease, filter 0.2s ease;
  pointer-events: none;
}

#stats-lastfm-logo-link:hover .stats-lastfm-logo {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
}

.stats-lastfm-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stats-art {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.stats-lastfm-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
}

.stats-status {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0;
  line-height: 1.0;
  letter-spacing: 0.3px;
}

#stats-track {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: -3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#stats-artist {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.05;
  margin-top: -2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#stats-lastfm a {
  text-decoration: none;
  color: inherit;
}

/* Ensure the status widget never scrolls internally */
#stats-status-widget {
  overflow: visible;
}

.status-editor {
  width: 100%;
  min-height: 60px;
  font-size: 14px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid var(--panel-border);
  background: var(--panel-bg-bottom);
  color: var(--text);
}

.status-save-btn {
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--panel-border);
  background: var(--panel-bg-top);
  cursor: pointer;
}


/* ============================================================
   13. STAMP TRACK (RETRO SCROLLING BUTTONS)
============================================================ */

/* Outer container */
.stamp-scroller {
  position: absolute;
  top: calc(53% + 260px);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  pointer-events: auto;
  opacity: 0.9;

  overflow: visible;

  /* fade mask */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* Wrapper holds two tracks side by side */
.stamp-track-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  gap: 30px;
  overflow: visible;

  /* back to percentage-based, but working */
  animation: stamp-scroll var(--scroll-speed, 20s) linear infinite;
}

/* Each track is itself a horizontal flex row of stamps */
.stamp-track {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 30px;
  overflow: visible;

  /* ❌ removed: animation: scroll 120s linear infinite; */
}

/* Stamps are fixed-size flex items, never wrapping */
.stamp-track img {
  height: 110px;
  width: auto;
  image-rendering: pixelated;
}

.stamp {
  position: relative;
  display: inline-block;
}

/* Tooltip bubble */
.stamp::after {
  content: attr(data-credit);
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 9999;
  backdrop-filter: blur(6px);

  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition-delay: 0.6s;
}

/* Tooltip arrow */
.stamp::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  z-index: 9998;

  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition-delay: 0.6s;
}

/* Hover state */
.stamp:hover::after,
.stamp:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes stamp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}








/* ============================================================
   13. ADMIN
============================================================ */

/* Center panels */
.admin-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

/* Logout link */
.logout-link {
  font-size: 0.85em;
  text-decoration: none;
  margin-left: 12px;
}

/* Labels */
.admin-label {
  margin-top: 16px;
  margin-bottom: 4px;
  display: block;
  font-weight: 500;
}

/* Inputs */
.admin-input,
.admin-textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.admin-textarea {
  height: 130px;
  resize: vertical;
}

/* Buttons */
.admin-button {
  margin-top: 12px;
  width: 100%;
}

/* Result text */
.admin-result {
  margin-top: 14px;
  min-height: 20px;
  text-align: center;
}

/* Only apply padding to admin/login content */
.admin-panel .window-content,
.login-panel .window-content {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

/* ADMIN + LOGIN TITLE BAR */
.admin-window-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-weight: bold;
  font-size: 1.15em;
  position: static; /* prevents overriding OS absolute positioning */
}

/* ADMIN + LOGIN PANEL CONTAINER */
.admin-window {
  width: 380px;
  padding: 24px;
  box-sizing: border-box;
  position: static;
}

.back-home-button {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  text-decoration: none;
  color: #141b1b;
}

.back-home-button:hover {
  opacity: 1;
  text-decoration: underline;
}

.admin-back-home {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;

  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: inherit;

  transition: background 0.15s ease, border-color 0.15s ease;
}

.admin-back-home:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}


/* Auth Status (Login / Welcome Back / Admin Panel / Logout) */
.auth-status {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 0.9rem;
  opacity: 0.85;

  white-space: nowrap;
  pointer-events: auto;
}

.auth-status a {
  color: inherit;
  text-decoration: none;

  padding: 3px 8px;
  border-radius: 6px;

  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);

  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.auth-status a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  opacity: 1;
}


/* Temporary Dark Mode Toggle */
.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  padding: 8px 12px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;

  background: var(--panel-bg-top);
  border: 2px solid var(--panel-border);
  color: var(--text);

  backdrop-filter: blur(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  padding: 8px 12px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;

  background: var(--panel-bg-top);
  border: 2px solid var(--panel-border);
  color: var(--text);

  backdrop-filter: blur(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       