body {
  font-family: sans-serif;
  background: #f0f0f0;
  margin: 0;
  padding: 20px 10px;
  position: relative;
  overflow-x: hidden;
}

body::before {

  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('dartsdonnerstaglogo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

#current-time1 {
  background: black;
  color: rgb(0, 255, 0);
  text-align: center;
  font-family: 'Courier New', Courier, monospace; 
  font-weight: bold; 
  font-size: 30px;
}

#current-time {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: rgb(0, 255, 0);
  padding: 10px 30px;
  border-radius: 30px;
  font-family: monospace;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 0 15px rgb(0, 255, 0);
}

h1 {
  font-size: clamp(60px, 6vw, 70px);
  margin: 20px 0 10px;
  text-align: center;
}

h1 .dart-icon {
  height: 2em;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.counter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.counter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.tick {
  font-size: clamp(54px, 9vw, 108px);
  display: inline-block;
  white-space: nowrap;
}

/* Verhindert Umbruch */
.tick>div {
  display: inline-flex;
}

.ranking-section {
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}

.ranking-section h2 {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 16px;
}

.ranking-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: min(90%, 750px);
  font-size: clamp(28px, 3vw, 36px);
}

.ranking-table th,
.ranking-table td {
  border: 1px solid #ccc;
  padding: 10px 16px;
  text-align: center;
}

.ranking-table th {
  background-color: #eee;
  font-weight: bold;
}

#fireworks-container {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  display: none;
}