/* Grundstil für die Seite */
body {
  background-color: #000;
  color: #ff0000;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 20px;
  line-height: 1;
}

/* Terminal-Header-Stil */
.terminal-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ff0000;
  padding-bottom: 10px;
}

/* LK-Counter-Stil */
.lk-counter {
  font-family: monospace;
  font-size: 0.9em;
  color: #ffff00;
  margin: 10px 0;
}

/* Blink-Animation */
.blink {
  animation: blink 3s infinite;
  font-weight: bold;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Menü-Stil */
.navigation {
  background-color: #111;
  border: 1px solid #ff0000;
  padding: 10px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
}

.navigation a {
  color: #ff0000;
  text-decoration: none;
}

.navigation a:hover {
  text-decoration: underline;
}

/* Content-Bereich-Stil */
.content {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ff0000;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
}

/* Videoplayer-Stil */
.video-container {
  background-color: #ffffff;
  border: 2px solid #ff0000; 
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  font-family: 'Courier New', monospace;
}

.video-player {
  background-color: #ffffff;
  border: 2px solid #ff0000;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  position: relative;
}

.video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

turnierbaum {
  margin: 20px auto;
  max-width: 600px;
  font-size: 0.9em;
}

.turnierbaum table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.turnierbaum td {
  color: #ffffff;
  font-weight: bold;
  border: 5px solid #000000;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}

.turnierbaum hr {
  border: 0;
  height: 1px;
  background: #ff0000;
  margin: 5px 0;
}