/* ========================================
   Globale Variablen – Dark Mode
======================================== */
:root {
  --background:        #1e1e1e;
  --foreground:        #ffffff;
  --card-bg:           #282828;
  --accent-color:      #ff4500;
  --border-color:      #444;
  --input-bg:          #333;
  --input-border:      #555;
  --footer-header-bg:  #121212;
  --shadow-color:      rgba(0, 0, 0, 0.1);
  --success-bg:        #2a4d2a;
  --success-border:    #3c6b3c;
  --success-color:     #a7d7a7;
  --error-bg:          #5c1a1a;
  --error-border:      #7a2828;
  --error-color:       #f6b3b3;
  --link-hover:        #ffa07a;
  --transition-speed:  0.3s;
}

/* ========================================
   Globales Basis-Styling
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  user-select: none;
}

input,
textarea,
select,
button {
  user-select: text;
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* ========================================
   Canvas
======================================== */

#techCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  /* Optional, falls dein Canvas Inhalt nicht verzerrt sein soll: */
  display: block;  /* verhindert extra whitespace unter canvas */
}

/* ========================================
   Layout: Container & Struktur
======================================== */

.container {
  max-width: 1200px;
  width: 90vw;
  margin: 20px auto;
  padding: 20px 20px 60px;
  flex-grow: 1;
  z-index: 1;
}
/* ========================================
   Header & Navigation
======================================== */

nav {
  background-color: var(--footer-header-bg);
  color: var(--foreground);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  box-shadow: 0 4px 8px var(--shadow-color);
  z-index: 999;
  position: sticky;
  top: 0;
  transition: box-shadow var(--transition-speed) ease, background-color 0.3s ease;
}

nav:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  background-color: #1a1a1a;
}

nav .menu {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--foreground);
  text-decoration: none;
  padding: 1rem 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition-speed);
}

/* Hover und aktive Links haben dieselbe Farbe */
nav a:hover,
nav a.active {
  color: var(--accent-color);
  font-weight: bold; /* Fett bei aktivem Link */
}

/* Hamburger-Menü für Mobilgeräte */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1.2rem;
  z-index: 1100;

  perspective: 600px; /* Perspektive für 3D */
}

.hamburger div {
  background-color: var(--foreground);
  height: 3.5px;
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background-color 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Verschiedene Breiten für etwas Dynamik */
.hamburger div:nth-child(1) {
  width: 100%;
  transform-origin: left center;
}

.hamburger div:nth-child(2) {
  width: 80%;
  align-self: flex-end;
  transform-origin: right center;
}

.hamburger div:nth-child(3) {
  width: 60%;
  transform-origin: left center;
}

/* Active / open Zustand mit 3D Flip Animation */
.hamburger.open div:nth-child(1) {
  transform: rotateY(90deg) translateX(5px);
  box-shadow: none;
}

.hamburger.open div:nth-child(2) {
  transform: rotateX(180deg);
  box-shadow: none;
}

.hamburger.open div:nth-child(3) {
  transform: rotateY(-90deg) translateX(-5px);
  box-shadow: none;
}

/* Hover-Effekt mit Glow */
.hamburger:hover div {
  box-shadow: 0 0 8px var(--accent-color);
  background-color: var(--accent-color);
}

/* Mobile Menü Styling */
@media (max-width: 768px) {
  nav {
    justify-content: flex-end;
  }

  nav .menu {
    display: none;
    flex-direction: column;
    background-color: var(--footer-header-bg);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  nav .menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  nav a {
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: block;
    text-align: center;
    color: var(--foreground);
  }

  /* Für mobile aktiven und hover Zustand Hintergrund + weiße Schrift */
  nav a:hover,
  nav a.active {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: bold;
  }
}

/* ========================================
   Footer
======================================== */

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--footer-header-bg);
  text-align: center;
  padding: 8px 0;
  font-size: 0.9em;
  box-shadow: 0 -4px 8px var(--shadow-color);
  z-index: 10;
  transition: box-shadow var(--transition-speed), background-color var(--transition-speed);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer:hover {
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.35);
  background-color: #1a1a1a;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 1.5rem;
  color: var(--foreground);
  font-weight: 500;
}

.user-ip, .visitor-count, .copyright {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Standard Abstand */
.user-ip {
  gap: 6px;
  transition: gap 0.3s ease;
  display: flex;
  align-items: center;
}

/* Mehr Abstand beim Hover auf user-ip (inkl. Link) */
.user-ip:hover {
  gap: 12px;
}

.user-ip a, .copyright a {
  color: var(--foreground);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  transition: color var(--transition-speed), transform var(--transition-speed);
}

/* Hover-Effekt für Links */
.user-ip a:hover, .copyright a:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

/* Besucherzahl: Text weiß, Zahl Akzentfarbe */
.visitor-count {
  color: white;
}

.visitor-count .visitor-number {
  color: white;
}

/* Flaggen-Container als Flexbox */
#country-flag-container {
  display: flex;
  align-items: center;
}

#country-flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  display: block;
  position: relative;
  top: -2px;
}

/* ===== Mobile Styles ===== */
@media (max-width: 600px) {
  footer {
    position: static;
    padding: 10px 0;
    font-size: 0.75em;
    box-shadow: none;
  }

  body {
    padding-bottom: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 6px;
    padding: 0 10px;
    align-items: center;
  }

  .user-ip, .visitor-count, .copyright {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .user-ip {
    gap: 4px;
  }

  #country-flag {
    position: static;
    top: 0;
    vertical-align: middle;
  }
}

/* ========================================
   Inhalt: Text + Bild
======================================== */

.text-image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}

.text-container {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  flex: 1 1 60%;
  min-width: 300px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

.logo-container {
  flex: 0 0 35%;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container,
.square-image-container {
  width: 220px;
  height: 220px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--card-bg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.image-container {
  border-radius: 50%;
}

.square-image-container {
  border-radius: 12px;
}

.image-container img,
.square-image-container img.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: none;
  padding: 0;
}

.rounded-logo {
    border-radius: 20px; /* Macht die Ecken rund – passe den Wert nach Wunsch an */
    width: 100%;         /* Optional: Bild passt sich dem Container an */
    max-width: 400px;    /* Optional: maximale Breite */
    height: auto;        /* Erhält das Seitenverhältnis */
    display: block;      /* Entfernt evtl. unerwünschten Leerraum */
    margin: 0 auto;      /* Zentriert das Bild, wenn der Container größer ist */
}

.no-border {
    border: none;
}

ul.no-bullets {
  list-style-type: none;  /* keine Aufzählungszeichen */
  padding-left: 0;        /* links kein Einzug */
  margin-left: 0;         /* kein Außenabstand links */
}

#script-logo {
    width: 55%;
    height: auto;
    border-radius: 15%;
    display: block;
    margin: 0 auto;
}

/* ZENTRIERUNG DER BILDER BEI MOBILER ANSICHT */
@media (max-width: 768px) {
  .text-image-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-container,
  .logo-container {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Formulare
======================================== */

.form-card {
    background: #1e1e1e;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 0 auto;
}

.form-card label {
    display: block;
    margin-bottom: 0.3em;
    margin-top: 1em;
    font-weight: bold;
    color: #fff;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8em;
    background: #2c2c2c;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    transition: border 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #ff4500;
    outline: none;
}

.form-button {
    background-color: #ff4500;
    color: white;
    padding: 0.8em 2em;
    margin-top: 1.5em;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-button:hover {
    background-color: #e03d00;
}

.message {
    padding: 1em;
    margin: 1.5em auto;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    max-width: 600px;         /* zentriert wie das Formular */
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.message.success {
    background-color: #2e7d32;
    margin-top: 2em;
}

.message.error {
    background-color: #c62828;
    margin-top: 2em;
}

.privacy-link {
    text-align: center;
    margin-top: 2em;
}

.privacy-link a {
    color: #888;
    font-size: 0.9em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link a:hover {
    color: #fff;
}

.g-recaptcha {
    margin-top: 1.5em;
    transform: scale(0.90);
    transform-origin: 0 0;
    width: 304px; /* Originalbreite */
    height: 78px; /* Originalhöhe */
    overflow: hidden;
}

/* Für kleine Bildschirme ggf. noch kleiner */
@media (max-width: 600px) {
  .g-recaptcha {
    transform: scale(0.85);
    width: 304px;
    height: 78px;
  }
}

/* ========================================
   Galerie – Modernes Dark-Design
======================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
  padding-bottom: 40px;
  place-items: center;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-sections {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding: 0 10px;
}

.gallery-sections a {
  background-color: var(--card-bg);
  color: var(--foreground);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease-in-out;
}

.gallery-sections a:hover,
.gallery-sections a.active {
  background-color: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.page-info {
  text-align: center;
  margin: 20px 0 10px;
  color: var(--foreground-muted);
  font-size: 0.95rem;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.pagination a {
  background-color: var(--card-bg);
  color: var(--foreground);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.pagination a:hover,
.pagination a.active {
  background-color: var(--accent-color);
  color: #fff;
}

.modal {
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}


/* ========================================
   Nachrichten / Modals / Scripts
======================================== */

.message {
  margin: 20px 0;
  padding: 15px;
  border-radius: 5px;
  font-size: 1.1rem;
}

.message.success {
  background-color: var(--success-bg);
  color: var(--success-color);
  border: 1px solid var(--success-border);
}

.message.error {
  background-color: var(--error-bg);
  color: var(--error-color);
  border: 1px solid var(--error-border);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  left: 25px;
  color: var(--foreground);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: var(--foreground);
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-speed);
}

.prev:hover,
.next:hover {
  color: var(--accent-color);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ========================================
   Script-Boxen & Links
======================================== */

.script-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.script-box {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color); /* von 2px auf 1px ändern für leichteren Look wie Tabelle */
  padding: 15px 20px;
  border-radius: 16px; /* wie Tabelle */
  margin-bottom: 15px;
  box-shadow: 0 0 10px var(--shadow-color);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.script-box:hover {
  background-color: var(--hover-bg, rgba(255, 69, 0, 0.1));
  box-shadow: inset 5px 0 0 var(--accent-color);
  border-color: var(--accent-color);
  color: var(--foreground);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.script-link {
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.1em;
  display: block;
  font-weight: 600;
  transition: color var(--transition-speed);
}

.script-link:hover {
  color: var(--accent-color);
}

.scripts-title {
  text-align: left;
  margin-left: 0;
}

/* Einheitliche Links */
a,
a:visited {
  color: var(--foreground);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover,
a:focus {
  color: var(--link-hover);
}

.pagination {
  text-align: center;
  margin: 20px 0;
}

.pagination a {
  color: var(--foreground);
  background-color: var(--card-bg);
  padding: 8px 12px;
  margin: 0 5px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color var(--transition-speed);
}

.pagination a:hover {
  background-color: var(--input-bg);
  color: var(--accent-color);
}

.pagination a.active {
  font-weight: bold;
  background-color: var(--accent-color);
  color: #fff;
}

@media (max-width: 768px) {
  .text-image-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-container {
    justify-content: center;
    margin-top: 20px;
  }

  .text-container {
    flex: unset;
    width: 100%;
  }
}
/* ========================================
   Heading-Style angleichen (h1 wie h2)
======================================== */

h1 {
  font-size: 1.5em; 
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--foreground);
  line-height: 1.3;
}

/* ========================================
   Scripts Filter und Searchbox
======================================== */

/* Filter Container */
.script-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: var(--text-color);
}

/* Label */
.script-filters label {
  font-weight: 600;
  white-space: nowrap;
}

/* Select Dropdown */
#filterCategory {
  padding: 0.4em 0.6em;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #121212;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-color) 50%),
    linear-gradient(135deg, var(--text-color) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

#filterCategory:focus {
  outline: none;
  border-color: #ff6f00;
  box-shadow: 0 0 4px 1px rgba(255, 111, 0, 0.35);
}

/* Search Box Container */
.search-box {
  margin-left: auto;
  max-width: 220px;
  width: 100%;
}

/* Search Input */
#searchScripts {
  width: 100%;
  padding: 0.5em 0.75em;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-color);
  background-color: #121212;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  caret-color: var(--primary-color);
}

#searchScripts::placeholder {
  color: var(--placeholder-color);
  font-style: italic;
}

#searchScripts:focus {
  outline: none;
  border-color: #ff6f00;
  box-shadow: 0 0 4px 1px rgba(255, 111, 0, 0.35);
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
  .script-filters {
    flex-direction: column;
    align-items: stretch;
  }

  #filterCategory {
    width: 100%;
  }

  .search-box {
    display: none; /* ← Suchbox wird in Mobile-Ansicht ausgeblendet */
  }
}

/* ========================================
   Wetterseite – moderner Grid- & Gauge-Stil
======================================== */

/* Gruppen-Wrapper und Titel */
.sensor-group-wrapper {
  width: 60%;
  margin: 20px auto 2rem auto;
}

.group-title {
  font-size: 1.5rem;
  color: #fff; /* Weiß statt Orange */
  margin-bottom: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
}

/* Sensoren-Grid */
.sensor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

/* Sensor-Karten im Chip-Stil */
.sensor-card {
  background-color: var(--card-bg);
  color: var(--foreground);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px var(--shadow-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.sensor-card:hover {
  background-color: var(--hover-bg, rgba(255, 69, 0, 0.1));
  box-shadow: inset 5px 0 0 var(--accent-color), 0 0 5px rgba(255, 69, 0, 0.3);
  border-left: 1px solid var(--accent-color);
  cursor: default;
  transform: translateY(-2px);
}

.sensor-icon {
  font-size: 1.8rem;
}

.sensor-info {
  display: flex;
  flex-direction: column;
}

.sensor-name {
  font-size: 0.95rem;
  color: #ccc;
}

.sensor-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

/* Fehleranzeige für nicht verfügbare Sensoren */
.sensor-error {
  color: #ff4500;
  background-color: #2a1a1a;
  border-left: 5px solid #b00020;
  padding: 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-style: italic;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .sensor-group-wrapper {
    width: 100%;
    padding: 0 10px;
  }
}

/* Gauge-Anzeige */
.gauge-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.gauge {
  background-color: var(--card-bg);
  color: var(--foreground);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 170px;
  padding: 20px;
  box-shadow: 0 0 10px var(--shadow-color);
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.gauge:hover {
  background-color: var(--hover-bg, rgba(255, 69, 0, 0.1));
  box-shadow: inset 5px 0 0 var(--accent-color);
  cursor: default;
}

.gauge-value {
  font-size: 3rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-family: monospace, monospace;
  letter-spacing: 0.02em;
  color: var(--accent-color);
}

.gauge-unit {
  font-size: 1.3rem;
  margin-left: 0.2em;
  color: var(--accent-color);
}

.gauge-label {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foreground);
}
