:root {
  /* Helle Farbpalette (Bier/Gold Theme) */
  --bg-gradient-1: #fdfbf7;
  --bg-gradient-2: #f0e4c8;
  --text-main: #3d2c05;
  --text-muted: #6b5836;

  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --glass-blur: blur(16px);

  /* UI Colors */
  --accent: #e6b32e;
  --accent-hover: #c79618;
  --danger: #d32f2f;
  --success: #388e3c;

  /* Liquid Colors */
  --liquid-light: #ffca28;
  --liquid-dark: #ff6f00;
}

body.dark-mode {
  /* Dunkle Farbpalette (Nacht/Bar Theme) */
  --bg-gradient-1: #1a1a1a;
  --bg-gradient-2: #050505;
  --text-main: #f0f0f0;
  --text-muted: #aaaaaa;

  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

  --accent: #ffc107;
  --accent-hover: #ffca28;
  --danger: #ef5350;
  --success: #66bb6a;

  --liquid-light: #ffd54f;
  --liquid-dark: #ff8f00;
}

/* --- RESET & BASE --- */
* {
  box-sizing: border-box;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top left,
      var(--bg-gradient-1),
      var(--bg-gradient-2));
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition:
    background 0.5s ease,
    color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
}

/* --- HEADER --- */
header {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header #logo {
  height: 35px;
  width: 35px;
  margin-right: 12px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header #logo:hover {
  transform: rotate(15deg) scale(1.1);
}

header h1 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--text-main), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--text-main);
}

@supports (-webkit-background-clip: text) {
  header h1 {
    color: transparent;
  }
}

.controls-container {
  position: absolute;
  right: 1.5rem;
  display: flex;
  gap: 8px;
}

/* --- BUTTONS --- */
button {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

button:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230, 179, 46, 0.3);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.language-switcher button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* --- LAYOUT (Kompakter) --- */
main {
  flex: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
}

.main-content-wrapper {
  display: grid;
  /* Feed Spalte auf 300px verkleinert */
  grid-template-columns: 1fr 300px;
  gap: 25px;
  align-items: start;
}

/* --- GROUP SECTIONS --- */
.group-section {
  margin-bottom: 30px;
}

.group-section summary {
  list-style: none;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.group-section summary:hover {
  opacity: 1;
}

.group-section summary::-webkit-details-marker {
  display: none;
}

.group-title-link {
  text-decoration: none;
  color: inherit;
}

.user-count {
  font-size: 0.5em;
  background: var(--glass-bg);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  vertical-align: middle;
}

/* --- USER CARDS GRID (Kompakter) --- */
.user-cards-grid {
  display: grid;
  /* Min-Width reduziert auf 240px für mehr Spalten */
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* --- USER CARD DESIGN (Kleiner) --- */
.user-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 18px;
  /* Weniger Padding */
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s;
  overflow: hidden;
}

.user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.user-card.stale-data {
  opacity: 0.6;
  filter: grayscale(0.8);
  border-style: dashed;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    border-color: var(--accent);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    border-color: var(--accent);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    border-color: var(--accent);
  }
}

.user-card.boarding-active {
  animation: pulse-gold 2s infinite;
  background: rgba(255, 193, 7, 0.05);
}

/* Card Header */
.user-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  z-index: 2;
}

.user-card h2 {
  margin: 0;
  font-size: 1.1rem;
  /* Kleinerer Titel */
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

/* Status Badges */
.header-widgets {
  display: flex;
  gap: 6px;
}

.status-badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.status-badge.online {
  background: rgba(56, 142, 60, 0.15);
  color: var(--success);
  border: 1px solid rgba(56, 142, 60, 0.3);
}

.status-badge.recently-active-badge {
  background: rgba(239, 108, 0, 0.15);
  color: #ef6c00;
  border: 1px solid rgba(239, 108, 0, 0.3);
}

.heart-rate-info {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--danger);
  background: rgba(211, 47, 47, 0.1);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.heart-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  animation: heart-beat 1s infinite;
}

@keyframes heart-beat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* Visualizer (Kleiner) */
.user-card-background-visualizer {
  height: 120px;
  /* Reduziert von 160px */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0 15px 0;
  z-index: 1;
}

.glass-svg {
  height: 100%;
  width: auto;
  overflow: visible;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.mug-body {
  fill: rgba(255, 255, 255, 0.1);
  stroke: var(--text-main);
  stroke-width: 2;
  stroke-opacity: 0.2;
}

.mug-handle {
  fill: none;
  stroke: var(--text-main);
  stroke-width: 2;
  stroke-opacity: 0.2;
}

.liquid-svg {
  transition: d 0.8s ease-in-out;
}

.foam-svg {
  fill: #fff;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

/* Info Display */
.fill-level-display {
  text-align: center;
  z-index: 2;
  width: 100%;
}

.fill-level-percentage {
  font-size: 2.2rem;
  /* Kleiner */
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, var(--text-main), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--text-main);
  margin-bottom: 2px;
}

@supports (-webkit-background-clip: text) {
  .fill-level-percentage {
    color: transparent;
  }
}

.fill-level-beverages {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
  height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fill-level-volume {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  margin-bottom: 10px;
}

/* Progress Bar */
.progress-bar-container {
  height: 6px;
  width: 85%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--liquid-light), var(--liquid-dark));
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 6px var(--liquid-light);
}

/* Card Footer */
.user-card-footer {
  margin-top: auto;
  padding-top: 15px;
  width: 100%;
  z-index: 2;
}

.prost-button {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border: none;
  color: white;
  padding: 8px;
  /* Button flacher */
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(230, 179, 46, 0.3);
}

.prost-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 15px rgba(230, 179, 46, 0.5);
}

.prost-button--opted-out {
  background: linear-gradient(135deg, #555, #444);
  box-shadow: none;
  opacity: 0.65;
  cursor: pointer;
}

.prost-button--opted-out:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.8;
}

.prost-opt-out-notice {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.3s;
}

/* --- ADDITIONAL SCALES --- */
.additional-scales-container {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 2;
}

body.dark-mode .additional-scales-container {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.additional-scale-item {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
  transition: background 0.2s ease;
}

body.dark-mode .additional-scale-item {
  background: rgba(255, 255, 255, 0.03);
}

.additional-scale-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

body.dark-mode .additional-scale-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.additional-scale-item:last-child {
  margin-bottom: 0;
}

.additional-scale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.additional-scale-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  opacity: 0.8;
}

.additional-scale-glass {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
}

.additional-scale-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
}

.additional-scale-percentage {
  font-weight: 700;
  color: var(--accent);
  min-width: 35px;
}

.additional-scale-progress {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

body.dark-mode .additional-scale-progress {
  background: rgba(255, 255, 255, 0.05);
}

.additional-scale-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--liquid-light), var(--liquid-dark));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-scale-volume {
  font-family: monospace;
  color: var(--text-muted);
  min-width: 55px;
  text-align: right;
}

.additional-scale-beverages {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- FEED SIDEBAR (Kompakter) --- */
#prostFeedContainer {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 15px;
  position: sticky;
  top: 90px;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#prostFeedContainer h2 {
  margin-top: 0;
  color: var(--accent);
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.prost-feed-item {
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s;
  font-size: 0.85rem;
  display: flex;
  /* Wichtig für Icon Layout */
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

body.dark-mode .prost-feed-item {
  background: rgba(0, 0, 0, 0.3);
}

.prost-feed-item:hover {
  transform: translateX(3px);
}

.prost-feed-item-content {
  flex: 1;
  min-width: 0;
}

.prost-actors p {
  margin: 0;
  line-height: 1.3;
}

.prost-actors .sender {
  font-weight: 700;
  color: var(--accent);
}

.prost-actors .recipient {
  font-weight: 700;
  color: #42a5f5;
}

.prost-message {
  font-style: italic;
  opacity: 0.8;
  margin: 3px 0 0 0;
  font-size: 0.8rem;
  word-wrap: break-word;
}

.timestamp {
  font-size: 0.7rem;
  opacity: 0.5;
  text-align: right;
  margin-top: 3px;
  display: block;
}

/* Load More Button */
.load-more-btn {
  margin-top: 10px;
  width: 100%;
  background: transparent;
  border: 1px dashed var(--glass-border);
  font-size: 0.8rem;
  padding: 8px;
  opacity: 0.7;
}

.load-more-btn:hover {
  background: var(--glass-bg);
  opacity: 1;
}

/* --- CHALLENGE ICONS (Wieder da!) --- */
.prost-challenge-status {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prost-challenge-status svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.5;
}

.prost-challenge-status.status-pending svg {
  color: var(--accent);
  animation: spin 1.5s linear infinite;
}

.prost-challenge-status.status-success svg {
  color: var(--success);
}

.prost-challenge-status.status-failure svg {
  color: var(--danger);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* --- BOARDING / TAKEOFF --- */
.boarding-symbol-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.takeoff-icon {
  width: 60px;
  /* Kleiner */
  height: 60px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
  animation: fly-bob 3s ease-in-out infinite;
}

@keyframes fly-bob {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(-5deg);
  }
}

.boarding-text-display {
  font-size: 1.5rem;
  /* Kleiner */
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.2);
  }

  to {
    text-shadow:
      0 0 15px rgba(255, 193, 7, 0.8),
      0 0 20px var(--accent);
  }
}

/* --- MODALS (Kompakter) --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--glass-bg);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  margin: 10% auto;
  padding: 25px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #333;
}

body.dark-mode .modal-content {
  background-color: rgba(30, 30, 30, 0.95);
  color: #f0f0f0;
}

.modal-content h2 {
  margin-top: 0;
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

body.dark-mode .modal-content h2 {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}

.close-button:hover {
  color: var(--accent);
}

.modal-content label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.9rem;
}

.modal-content input[type="text"],
.modal-content textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.05);
  color: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

body.dark-mode .modal-content input[type="text"],
body.dark-mode .modal-content textarea {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.character-counter {
  text-align: right;
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
  font-family: monospace;
}

body.dark-mode .character-counter {
  color: #aaa;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: var(--accent);
  background: transparent;
}

.modal-content textarea {
  resize: vertical;
  min-height: 60px;
}

.privacy-policy {
  background: rgba(0, 0, 0, 0.03);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  margin-top: 15px;
}

.privacy-policy a {
  color: var(--accent);
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-actions button {
  flex: 1;
}

.modal-error {
  background: rgba(211, 47, 47, 0.1);
  color: var(--danger);
  padding: 8px;
  border-radius: 6px;
  border: 1px solid rgba(211, 47, 47, 0.3);
  margin-top: 15px;
  display: none;
  text-align: center;
  font-size: 0.9rem;
}

/* --- FULLSCREEN OVERLAYS --- */
#boarding-event-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 193, 7, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
  pointer-events: none;
}

body.dark-mode #boarding-event-overlay {
  background: rgba(50, 40, 10, 0.9);
}

#boarding-event-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.boarding-content {
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.5s;
}

#boarding-event-overlay.visible .boarding-content {
  transform: scale(1);
}

.boarding-content h2 {
  font-size: 3rem;
  color: white;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.boarding-plane {
  width: 150px;
  height: 150px;
  fill: white;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  animation: fly-across-screen 3s ease-in-out infinite;
}

@keyframes fly-across-screen {
  0% {
    transform: translateX(-50px) translateY(10px) rotate(-5deg);
  }

  50% {
    transform: translateX(50px) translateY(-10px) rotate(5deg);
  }

  100% {
    transform: translateX(-50px) translateY(10px) rotate(-5deg);
  }
}

/* --- ODOMETER / KILOMETERSTAND --- */
.odometer-wrapper {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.odometer-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.odometer-container {
  background: var(--glass-bg);
  padding: 6px 8px;
  border-radius: 8px;
  display: flex;
  gap: 3px;
  box-shadow:
    inset 0 2px 5px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(4px);
}

body.dark-mode .odometer-container {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

.odometer-digit {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  color: var(--text-main);
  font-family: "Courier New", Courier, monospace;
  font-weight: 900;
  font-size: 1rem;
  width: 18px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

body.dark-mode .odometer-digit {
  background: linear-gradient(180deg,
      rgba(30, 30, 30, 0.8) 0%,
      rgba(20, 20, 20, 0.9) 50%,
      rgba(30, 30, 30, 0.8) 100%);
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Pseudo-element for the "roll" effect line - nicer in glass */
.odometer-digit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.dark-mode .odometer-digit::after {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.odometer-unit {
  color: var(--accent);
  font-size: 0.65rem;
  align-self: flex-end;
  margin-bottom: 3px;
  margin-left: 3px;
  font-weight: 800;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .main-content-wrapper {
    grid-template-columns: 1fr;
  }

  #prostFeedContainer {
    position: relative;
    top: 0;
    margin-top: 30px;
    max-height: 400px;
    width: 100%;
  }

  header {
    flex-direction: column;
    gap: 10px;
    padding: 1rem;
  }

  .controls-container {
    position: static;
    margin-top: 5px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.tooltip {
  position: relative;
  display: flex;
  align-items: center;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ============================================================
   SEASONAL / HOLIDAY THEMES
   ============================================================ */

/* --- Shared: admin select styling --- */
.setting-item select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-main);
  font-size: 0.9rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  transition: border-color 0.2s;
}

.setting-item select:focus {
  outline: none;
  border-color: var(--accent);
}

/* --- Particle container (snow/confetti/fireworks injected by JS) --- */
#seasonal-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  overflow: hidden;
}

/* ==============================
   🎄 CHRISTMAS
   ============================== */
body.theme-christmas {
  --accent: #c0392b;
  --accent-hover: #922b21;
  --liquid-light: #f0f0f0;
  --liquid-dark: #b0d0ff;
  --bg-gradient-1: #e8f5e9;
  --bg-gradient-2: #c8e6c9;
  --text-main: #1b5e20;
  --text-muted: #388e3c;
}

body.theme-christmas.dark-mode {
  --bg-gradient-1: #0a1f0a;
  --bg-gradient-2: #061206;
  --text-main: #c8e6c9;
  --text-muted: #81c784;
}

body.theme-christmas .user-card {
  border-color: rgba(192, 57, 43, 0.35);
}

body.theme-christmas .user-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.2);
}

body.theme-christmas header {
  background: rgba(27, 94, 32, 0.15);
}

/* Santa hat decoration on glass cards */
body.theme-christmas .glass-svg::before {
  content: '';
}

.christmas-hat {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 28px solid #c0392b;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
  z-index: 3;
}

.christmas-hat::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -16px;
  width: 32px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
}

.christmas-hat::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.user-card-background-visualizer {
  position: relative;
}

/* Snow particles */
.snow-flake {
  position: absolute;
  top: -20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  animation: snow-fall linear infinite;
}

@keyframes snow-fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(105vh) translateX(var(--drift, 30px)) rotate(360deg);
    opacity: 0;
  }
}

/* ==============================
   🎃 HALLOWEEN
   ============================== */
body.theme-halloween {
  --accent: #e65c00;
  --accent-hover: #b34700;
  --liquid-light: #ff6f00;
  --liquid-dark: #4a0080;
  --bg-gradient-1: #1a0030;
  --bg-gradient-2: #0a0010;
  --text-main: #f5c842;
  --text-muted: #bb86fc;
  --glass-bg: rgba(60, 0, 80, 0.35);
  --glass-border: rgba(230, 92, 0, 0.3);
}

body.theme-halloween .user-card {
  border-color: rgba(230, 92, 0, 0.4);
  box-shadow: 0 0 20px rgba(230, 92, 0, 0.1), inset 0 0 30px rgba(74, 0, 128, 0.05);
}

body.theme-halloween .user-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(230, 92, 0, 0.35);
}

body.theme-halloween header {
  background: rgba(26, 0, 48, 0.7);
  border-bottom-color: rgba(230, 92, 0, 0.3);
}

body.theme-halloween .mug-body,
body.theme-halloween .mug-handle {
  stroke: #f5c842;
  stroke-opacity: 0.6;
}

/* Spooky glow on cards */
@keyframes spooky-pulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(230, 92, 0, 0.15);
  }

  50% {
    box-shadow: 0 0 25px rgba(230, 92, 0, 0.45), 0 0 50px rgba(74, 0, 128, 0.2);
  }
}

body.theme-halloween .user-card {
  animation: spooky-pulse 3s ease-in-out infinite;
}

/* Bat particles */
.bat-particle {
  position: absolute;
  font-size: 1.4rem;
  animation: bat-fly linear infinite;
  opacity: 0.8;
}

@keyframes bat-fly {
  0% {
    transform: translateX(0) translateY(0) scaleX(1);
  }

  25% {
    transform: translateX(25vw) translateY(-8vh) scaleX(1);
  }

  50% {
    transform: translateX(50vw) translateY(4vh) scaleX(-1);
  }

  75% {
    transform: translateX(75vw) translateY(-6vh) scaleX(-1);
  }

  100% {
    transform: translateX(105vw) translateY(2vh) scaleX(-1);
  }
}

/* ==============================
   🥨 OKTOBERFEST
   ============================== */
body.theme-oktoberfest {
  --accent: #0057a8;
  --accent-hover: #003f7d;
  --liquid-light: #ffca28;
  --liquid-dark: #ff8f00;
  --bg-gradient-1: #e3f0ff;
  --bg-gradient-2: #ffffff;
  --text-main: #002244;
  --text-muted: #0057a8;
}

body.theme-oktoberfest.dark-mode {
  --bg-gradient-1: #001133;
  --bg-gradient-2: #000820;
  --text-main: #c8e0ff;
  --text-muted: #80aaee;
  --glass-bg: rgba(0, 30, 80, 0.5);
}

body.theme-oktoberfest body,
body.theme-oktoberfest {
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 40px,
      rgba(0, 87, 168, 0.06) 40px,
      rgba(0, 87, 168, 0.06) 80px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 40px,
      rgba(0, 87, 168, 0.06) 40px,
      rgba(0, 87, 168, 0.06) 80px),
    radial-gradient(circle at top left, var(--bg-gradient-1), var(--bg-gradient-2));
}

body.theme-oktoberfest .user-card {
  border-color: rgba(0, 87, 168, 0.3);
}

body.theme-oktoberfest .user-card:hover {
  border-color: #0057a8;
  box-shadow: 0 10px 30px rgba(0, 87, 168, 0.2);
}

body.theme-oktoberfest header {
  background: rgba(0, 87, 168, 0.12);
  border-bottom-color: rgba(0, 87, 168, 0.25);
}

/* Pretzel particles floating */
.pretzel-particle {
  position: absolute;
  font-size: 1.6rem;
  animation: pretzel-float ease-in-out infinite;
  opacity: 0.7;
}

@keyframes pretzel-float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-18px) rotate(15deg);
    opacity: 1;
  }

  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
}

/* ==============================
   🐣 EASTER
   ============================== */
body.theme-easter {
  --accent: #9c27b0;
  --accent-hover: #7b1fa2;
  --liquid-light: #a5d6a7;
  --liquid-dark: #66bb6a;
  --bg-gradient-1: #fff8e1;
  --bg-gradient-2: #fce4ec;
  --text-main: #4a148c;
  --text-muted: #7b1fa2;
}

body.theme-easter.dark-mode {
  --bg-gradient-1: #1a0026;
  --bg-gradient-2: #0d0019;
  --text-main: #e1bee7;
  --text-muted: #ce93d8;
  --glass-bg: rgba(74, 20, 140, 0.25);
}

body.theme-easter .user-card {
  border-color: rgba(156, 39, 176, 0.25);
  background: linear-gradient(135deg, rgba(255, 248, 225, 0.35), rgba(252, 228, 236, 0.35));
}

body.theme-easter .user-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.15);
}

body.theme-easter header {
  background: rgba(156, 39, 176, 0.08);
}

/* Easter egg glass shape overlay */
body.theme-easter .glass-svg .mug-body {
  fill: linear-gradient(180deg, #f8bbd0, #c8e6c9);
  stroke: #9c27b0;
  stroke-opacity: 0.5;
}

/* Easter bubbles */
.easter-egg-particle {
  position: absolute;
  font-size: 1.5rem;
  animation: egg-float ease-in-out infinite;
}

@keyframes egg-float {
  0% {
    transform: translateY(105vh) rotate(-10deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) rotate(10deg);
    opacity: 0;
  }
}

/* ==============================
   🎭 CARNIVAL / FASCHING
   ============================== */
body.theme-carnival {
  --accent: #e91e63;
  --accent-hover: #c2185b;
  --liquid-light: #ff4081;
  --liquid-dark: #f50057;
  --bg-gradient-1: #fffde7;
  --bg-gradient-2: #e8eaf6;
  --text-main: #1a237e;
  --text-muted: #3949ab;
}

body.theme-carnival.dark-mode {
  --bg-gradient-1: #0d0020;
  --bg-gradient-2: #100030;
  --text-main: #e8eaf6;
  --text-muted: #9fa8da;
  --glass-bg: rgba(30, 0, 60, 0.4);
}

body.theme-carnival .user-card {
  border-color: rgba(233, 30, 99, 0.3);
}

body.theme-carnival .user-card:nth-child(2n) {
  border-color: rgba(33, 150, 243, 0.3);
}

body.theme-carnival .user-card:nth-child(3n) {
  border-color: rgba(76, 175, 80, 0.3);
}

body.theme-carnival .user-card:hover {
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

body.theme-carnival header {
  background: linear-gradient(90deg, rgba(233, 30, 99, 0.1), rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
}

/* Confetti particles */
.confetti-piece {
  position: absolute;
  top: -12px;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  animation: confetti-fall linear infinite;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(105vh) rotate(720deg) translateX(var(--drift, 50px));
    opacity: 0;
  }
}

@keyframes rainbow-border {
  0% {
    border-color: #e91e63;
  }

  16% {
    border-color: #ff5722;
  }

  33% {
    border-color: #ffeb3b;
  }

  50% {
    border-color: #4caf50;
  }

  66% {
    border-color: #2196f3;
  }

  83% {
    border-color: #9c27b0;
  }

  100% {
    border-color: #e91e63;
  }
}

body.theme-carnival .user-card {
  animation: rainbow-border 4s linear infinite;
}

/* ==============================
   🎆 NEW YEAR / SILVESTER
   ============================== */
body.theme-new_year {
  --accent: #ffd700;
  --accent-hover: #ffc107;
  --liquid-light: #ffe082;
  --liquid-dark: #ff8f00;
  --bg-gradient-1: #0d0d0d;
  --bg-gradient-2: #1a1100;
  --text-main: #ffe082;
  --text-muted: #bfaa50;
  --glass-bg: rgba(30, 25, 0, 0.55);
  --glass-border: rgba(255, 215, 0, 0.25);
}

body.theme-new_year .user-card {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.08);
}

body.theme-new_year .user-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3);
}

body.theme-new_year header {
  background: rgba(10, 8, 0, 0.6);
  border-bottom-color: rgba(255, 215, 0, 0.2);
}

@keyframes gold-shimmer {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 193, 7, 0.15);
  }
}

body.theme-new_year .user-card {
  animation: gold-shimmer 2.5s ease-in-out infinite;
}

/* Firework spark particles */
.firework-spark {
  position: absolute;
  border-radius: 50%;
  animation: spark-burst linear forwards;
  opacity: 1;
}

@keyframes spark-burst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--fx, 0), var(--fy, 0)) scale(0);
    opacity: 0;
  }
}

.firework-shell {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  animation: shell-rise ease-out forwards;
}

@keyframes shell-rise {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(var(--height, -200px));
    opacity: 0.5;
  }
}

/* ============================================================
   SEASONAL TITLE in header
   ============================================================ */
.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.seasonal-title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  animation: seasonal-title-pulse 3s ease-in-out infinite;
  text-align: center;
}

@keyframes seasonal-title-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

/* ============================================================
   EASTER – Egg-shaped glass override
   ============================================================ */

/* Hide the regular mug handle handles in Easter mode */
body.theme-easter .mug-handle {
  display: none;
}

/* Make the mug body look egg-like with a pastel gradient */
body.theme-easter .mug-body {
  fill: rgba(255, 240, 255, 0.15);
  stroke: #9c27b0;
  stroke-opacity: 0.55;
  stroke-width: 2;
}

/* The whole glass-svg gets egg-shaped via border-radius clip on the container */
body.theme-easter .user-card-background-visualizer .glass-svg {
  filter: drop-shadow(0 4px 12px rgba(156, 39, 176, 0.25));
}

/* Egg clip via SVG viewBox override – we use a CSS clip approach */
body.theme-easter .glass-svg {
  clip-path: ellipse(47% 50% at 50% 52%);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
}

/* Rainbow pastel stripes on the egg */
body.theme-easter .user-card-background-visualizer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      rgba(255, 182, 193, 0.18) 0px,
      rgba(255, 182, 193, 0.18) 8px,
      rgba(173, 216, 230, 0.18) 8px,
      rgba(173, 216, 230, 0.18) 16px,
      rgba(255, 255, 180, 0.18) 16px,
      rgba(255, 255, 180, 0.18) 24px,
      rgba(198, 255, 198, 0.18) 24px,
      rgba(198, 255, 198, 0.18) 32px);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   NEW YEAR – City skyline at night background
   ============================================================ */
body.theme-new_year::before {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 260' preserveAspectRatio='none'%3E%3Crect width='1440' height='260' fill='%23000615'/%3E%3Crect x='0' y='160' width='60' height='100' fill='%230a0a1a'/%3E%3Crect x='10' y='140' width='40' height='20' fill='%230a0a1a'/%3E%3Crect x='65' y='130' width='50' height='130' fill='%23080818'/%3E%3Crect x='72' y='100' width='8' height='30' fill='%23080818'/%3E%3Crect x='120' y='150' width='70' height='110' fill='%230c0c22'/%3E%3Crect x='130' y='170' width='10' height='8' fill='%23ffd70022'/%3E%3Crect x='148' y='170' width='10' height='8' fill='%23ffd70022'/%3E%3Crect x='130' y='185' width='10' height='8' fill='%23ffd70044'/%3E%3Crect x='195' y='120' width='55' height='140' fill='%230a0a1e'/%3E%3Crect x='203' y='90' width='6' height='32' fill='%230a0a1e'/%3E%3Crect x='255' y='165' width='80' height='95' fill='%23080820'/%3E%3Crect x='260' y='175' width='12' height='10' fill='%23ffd70033'/%3E%3Crect x='280' y='175' width='12' height='10' fill='%23ffd70033'/%3E%3Crect x='300' y='175' width='12' height='10' fill='%23ffd70044'/%3E%3Crect x='338' y='140' width='65' height='120' fill='%230b0b20'/%3E%3Crect x='408' y='155' width='75' height='105' fill='%23090918'/%3E%3Crect x='488' y='125' width='60' height='135' fill='%230c0c22'/%3E%3Crect x='494' y='95' width='8' height='32' fill='%230c0c22'/%3E%3Crect x='553' y='145' width='85' height='115' fill='%230a0a1c'/%3E%3Crect x='560' y='160' width='14' height='10' fill='%23ffd70033'/%3E%3Crect x='582' y='160' width='14' height='10' fill='%23ffd70022'/%3E%3Crect x='643' y='110' width='70' height='150' fill='%23080820'/%3E%3Crect x='650' y='80' width='7' height='32' fill='%23080820'/%3E%3Crect x='718' y='150' width='80' height='110' fill='%230a0a1e'/%3E%3Crect x='803' y='130' width='65' height='130' fill='%230b0b20'/%3E%3Crect x='873' y='145' width='90' height='115' fill='%23090918'/%3E%3Crect x='880' y='158' width='14' height='10' fill='%23ffd70033'/%3E%3Crect x='902' y='158' width='14' height='10' fill='%23ffd70055'/%3E%3Crect x='924' y='158' width='14' height='10' fill='%23ffd70022'/%3E%3Crect x='968' y='120' width='60' height='140' fill='%230a0a1c'/%3E%3Crect x='975' y='92' width='7' height='30' fill='%230a0a1c'/%3E%3Crect x='1033' y='155' width='75' height='105' fill='%230c0c22'/%3E%3Crect x='1113' y='135' width='85' height='125' fill='%23080820'/%3E%3Crect x='1120' y='105' width='8' height='32' fill='%23080820'/%3E%3Crect x='1203' y='150' width='70' height='110' fill='%230a0a1e'/%3E%3Crect x='1278' y='125' width='80' height='135' fill='%230b0b1e'/%3E%3Crect x='1363' y='160' width='77' height='100' fill='%23090918'/%3E%3Crect x='0' y='250' width='1440' height='10' fill='%230a0a1a'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* Fade in from transparent at top so it blends with the dark page background */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 25%, black 55%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 25%, black 55%);
}


/* Make content sit above the skyline */
body.theme-new_year main,
body.theme-new_year header,
body.theme-new_year footer {
  position: relative;
  z-index: 1;
}

/* Star field */
body.theme-new_year::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 12%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 3%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 18%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 25%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 50%, rgba(255, 215, 0, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 55%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 48%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 42%, rgba(255, 215, 0, 0.3) 0%, transparent 100%);
}