* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    color: white;
}

/* Video pozadí */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Tmavý + lehký blur overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px); /* 👈 TADY blur */
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
}

/* Obsah */
.content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Glass box */
.stats {
    margin: 20px 0;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.stats div {
    margin: 6px 0;
}

/* Tlačítko */
.join {
    margin-top: 20px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.2s ease;
}

.join:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}
.topbar{max-width:1100px;margin:16px auto;display:flex;gap:14px;align-items:stretch;justify-content:space-between;padding:0 12px}
.links{margin-top:8px;display:flex;gap:10px;justify-content:center}
.btn{display:inline-block;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12);text-decoration:none;color:#fff}
.btn:hover{background:rgba(255,255,255,.18)}
.onlineRow{display:flex;gap:14px;align-items:center;justify-content:space-between}
.label{opacity:.7;font-size:12px}
.value{font-size:22px;font-weight:800}
.heads{display:flex;gap:6px;flex-wrap:wrap;justify-content:flex-end}
.heads img{width:32px;height:32px;border-radius:8px;border:1px solid rgba(255,255,255,.15)}
.searchCard{max-width:1100px;margin:0 auto 12px auto;padding:12px}
#search{width:100%;padding:12px 14px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.25);color:#fff;outline:none}
#search::placeholder{color:rgba(255,255,255,.6)}

.page{
  max-width:1100px;
  margin:0 auto;
  padding:16px 12px 60px;
  height:100vh;
  overflow:auto;
}

.title{font-weight:900;font-size:22px}
.subtitle{opacity:.75;margin-top:4px}

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:12px;
  margin-top:12px;
}

.divider{
  opacity:.15;
  margin:18px 0;
  border:none;
  border-top:1px solid rgba(255,255,255,.18);
}

.headBig{
  width:44px;height:44px;border-radius:12px;
  border:1px solid rgba(255,255,255,.15);
}

.ol{margin:0;padding-left:18px}
.lbRow{display:flex;justify-content:space-between;gap:10px;margin:6px 0}
