:root{
      --glass: rgba(40, 45, 70, .32);
      --glass2: rgba(30, 34, 56, .30);
      --border: rgba(255,255,255,.18);
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.72);
      --shadow: 0 18px 60px rgba(0,0,0,.30);
      --radius: 22px;
    }

    *{ box-sizing: border-box; }
    html, body{ height: 100%; }
    body{
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
      color: var(--text);

      /* Hintergrund + leichte Abdunklung für Lesbarkeit */
      background:
        radial-gradient(1200px 650px at 50% 20%, rgba(0,0,0,.10), rgba(0,0,0,.45)),
        url("background.png");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      overflow-x: hidden;
    }

    .wrap{
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 18px 16px 46px;
      gap: 22px;
    }

    .topbar{
      width: min(1200px, 100%);
      padding: 14px 18px;
      border-radius: var(--radius);
      background: var(--glass);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
      display: flex;
    }

    .nav{
      display: flex;
      gap: 18px;
      width: 100%;
    }
    .nav > img{
      margin-left: auto !important;
    }

    .nav a{
      color: var(--muted);
      text-decoration: none;
      padding: 10px 12px;
      border-radius: 14px;
      font-weight: 650;
      letter-spacing: .2px;
      transition: background .15s ease, color .15s ease, transform .15s ease;
      white-space: nowrap;
    }
    .nav a:hover{
      background: rgba(255,255,255,.10);
      color: var(--text);
      transform: translateY(-1px);
    }
    .nav a.active{
      color: var(--text);
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.12);
    }

    /* Spacer damit Buttons eher unten sind */
    .spacer{
      height: 120px;
    }

    /* Status-Kacheln */
    .status-row{
      width: min(980px, 100%);
      display: grid;
      margin-top: 10px;
    }

    .container {
        background: var(--glass);
        width: min(1200px, 100%);
      border-radius: var(--radius);
      border: 1px solid var(--border);
        padding: 10px 50px;
        backdrop-filter: blur(14px);
    }

    .card{
      background: var(--glass2);
      border: 1px solid var(--border);
      border-radius: 18px;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 12px 34px rgba(0,0,0,.22);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 76px;
    }

    .icon{
      width: 44px;
      padding: 5px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255,255,255,.08);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }

    .txt{ line-height: 1.1; }
    .title{
      font-size: 14px;
      font-weight: 800;
      color: rgba(255,255,255,.88);
      margin-bottom: 6px;
    }
    .value{
      font-size: 18px;
      font-weight: 900;
      letter-spacing: .2px;
    }

    /* Farben wie im Mock (leicht) */
    .online .value{ color: rgba(140, 255, 190, .95); }
    .players .value{ color: rgba(190, 220, 255, .95); }
    .discord .value{ color: rgba(220, 200, 255, .95); }

    /* Responsive */
    @media (max-width: 860px){
      .status-row{ grid-template-columns: 1fr; }
      .card{ min-height: 70px; }
    }

    .nav {
        height: 45px;
    }
.nav > a {
    height: 45px;
}

.menu-toggle {
  display: none; 
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  color: white;
}
    @media screen and (max-width: 1000px) {
  .nav a {
    display: none; 
  }
  .menu-toggle {
    display: block; 
  }
  .nav.responsive a {
    display: block;
  }

  .nav > a:first-child {
    margin-top: 60px;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .nav > a {
    width: 100%;
  }
  .nav.responsive img {
    display: block;
    margin-top: 10px;
  }
  .responsive {
    height:400px;

  }
  .nav > img {
    margin-top: -20px;
  }
}
