:root {
  --color-bg: #f5f7fa;
  --color-dark: #1e1e1e;
  --color-light: #ffffff;
  --color-text: #222;
  --color-text-dark: #e6e6e6;
  --color-primary: #66b3ff;
  --color-primary-light: #99d1ff;
  --color-accent: #ffcc00;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #e9f3ff 0%, #f6f6f6 100%);
  color: var(--color-text);
  padding-top: 80px;
  text-align: center;
}

h2 {
	margin-top: 1px;
	margin-bottom: 1px;
}

header {
  background-color: var(--color-dark);
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.logo a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-size: 1.8em;
  font-weight: bold;
  transition: all 0.4s ease;
}

.logo a:hover {
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary),
               0 0 20px var(--color-accent),
               0 0 30px var(--color-primary);
  transform: scale(1.07);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-size: 1.1em;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-accent);
}

.Sky-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
  justify-items: center;
}

.Tabelle {
  display: block;
  background-color: var(--color-light);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Tabelle:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.Tabelle img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background-color: #fafafa;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.Tabelle img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background-color: #fafafa;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px;
}

.Tabelle h2 {
  font-size: 1.2em;
  margin: 10px 0 5px 0;
  color: var(--color-dark);
}

.Tabelle p {
  font-size: 0.95em;
  color: #555;
  padding: 0 10px 15px 10px;
}

.Mitteltext {
  background-color: var(--color-light);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin: 40px auto;
  padding: 20px 30px;
  text-align: left;
}

.Mitteltext h2 {
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.Mitteltext p {
  color: #555;
  font-size: 1em;
  line-height: 1.6;
}

footer {
  background-color: var(--color-dark);
  color: var(--color-text-dark);
  text-align: center;
  padding: 20px 10px;
  margin-top: 60px;
  font-size: 0.9em;
}

footer a {
  color: var(--color-primary);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-accent);
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .Sky-container {
    padding: 20px;
  }

  .news-section {
    width: 90%;
    padding: 15px;
  }
}

.highlight-link {
  color: #66b3ff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.highlight-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffaa, #66b3ff);
  transition: width 0.3s ease;
}

.highlight-link:hover {
  color: #00ffaa;
  text-shadow: 0 0 8px #66b3ff, 0 0 16px #00ffaa;
}

.highlight-link:hover::after {
  width: 100%;
}

.table-section {
      width: 85%;
      margin: 100px auto;
      background-color: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      animation: fadeIn 0.6s ease;
    }

    .table-section h2 {
      text-align: center;
      color: #222;
      margin-bottom: 25px;
      text-shadow: 0 0 5px rgba(102, 179, 255, 0.3);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1em;
      margin-bottom: 40px;
    }

    th, td {
      padding: 14px 20px;
      text-align: left;
      border-bottom: 1px solid #e2e2e2;
    }

    th {
      background: linear-gradient(90deg, #2a2a2a, #444);
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    tr:hover {
      background-color: #f7faff;
      transition: background-color 0.3s ease;
    }

    td {
      color: #333;
    }

    .rank-1 td {
      background: linear-gradient(90deg, #ffd700, #ffef8a);
      font-weight: bold;
    }

    .rank-2 td {
      background: linear-gradient(90deg, #c0c0c0, #e6e6e6);
      font-weight: bold;
    }

    .rank-3 td {
      background: linear-gradient(90deg, #cd7f32, #f3b777);
      font-weight: bold;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
