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

body {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  height: 100vh;
}

.cluster-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 20px;
}

.gauge-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 1;
}

.gauge {
  position: relative;
  width: 200px;
  height: 200px;
  text-align: center;
}

.gauge-inner {
  width: 180px;
  height: 180px;
  border: 8px solid #333;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, #2a2a2a, #1a1a1a);
  margin: 0 auto;
}

.gauge-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 70px;
  background: linear-gradient(to top, #ff4444, #ffaa44);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.gauge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #666;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.gauge-value {
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.gauge-label {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.status-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px 0;
}

.indicator {
  font-size: 24px;
  padding: 10px;
  border-radius: 5px;
  background: #333;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff8800;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.6);
}

.fuel-gauge {
  width: 100px;
  height: 20px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
}

.fuel-bar {
  height: 100%;
  background: linear-gradient(to right, #ff4444, #ffaa44, #44ff44);
  width: 75%;
  transition: width 0.5s ease;
}

.info-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 18px;
}

.time-display {
  font-size: 24px;
  font-weight: bold;
  color: #00aaff;
}

/* Animationen */
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.indicator.blink {
  animation: blink 1s infinite;
}
