:root{
  --bg1:#0b1020; --bg2:#050814;
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --good:#43f3a6; --bad:#ff4d6d; --blue:#6aa8ff; --gold:#ffd166;
  --shadow:0 18px 55px rgba(0,0,0,.55);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(106,168,255,.20), transparent 60%),
    radial-gradient(800px 550px at 80% 20%, rgba(67,243,166,.16), transparent 65%),
    radial-gradient(700px 450px at 60% 90%, rgba(255,77,109,.12), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  display:flex; flex-direction:column;
}
a{color:var(--blue); text-decoration:none}
header, footer{
  padding: 14px 18px;
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
footer{
  border-bottom:none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top:auto;
  text-align:center;
  color: var(--muted);
  font-size: 12px;
  line-height:1.4;
}
.container{max-width:1100px; margin:0 auto; width:100%}
.topbar{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.brand{display:flex; align-items:center; gap:10px; min-width:0}
.logo{
  width:38px;height:38px;border-radius:14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 55%),
              linear-gradient(135deg, rgba(106,168,255,.9), rgba(67,243,166,.9));
  box-shadow: 0 10px 28px rgba(67,243,166,.14);
}
.brandTitle b{display:block; font-size:14px}
.brandTitle span{display:block; margin-top:3px; font-size:12px; color:var(--muted)}
.nav{display:flex; gap:10px; flex-wrap:wrap}
.chip, .btn, .input, .card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}
.chip{padding:10px 12px; font-size:12px; font-weight:900}
.btn{
  cursor:pointer; color:var(--text);
  padding:10px 12px; font-size:12px; font-weight:1000;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btnPrimary{
  color:#07101f;
  background: linear-gradient(135deg, rgba(67,243,166,1), rgba(106,168,255,1));
  box-shadow: 0 18px 40px rgba(67,243,166,.14);
  border:none;
}
.page{padding:18px}
.grid2{display:grid; grid-template-columns: 1.25fr .75fr; gap:14px; align-items:start}
@media (max-width:980px){.grid2{grid-template-columns:1fr}}
.cardBox{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow:hidden;
}
.cardHead{padding:11px; border-bottom:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02)}
.cardBody{padding:6px}
.label{font-size:12px; color:var(--muted); font-weight:700}
.input{
  width:100%; padding:12px 12px; border-radius:14px;
  background: rgba(255,255,255,.06); color: var(--text);
  outline:none;
}
.row{display:flex; justify-content:space-between; gap:10px; padding:12px; border-radius:16px;
  border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); margin-bottom:10px}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace}
.badge{padding:6px 10px; border-radius:999px; font-size:11px; font-weight:1000}
.badge.good{background: rgba(67,243,166,.10); color: rgba(67,243,166,.95); border:1px solid rgba(67,243,166,.35)}
.badge.bad{background: rgba(255,77,109,.10); color: rgba(255,77,109,.95); border:1px solid rgba(255,77,109,.35)}
.badge.neu{background: rgba(255,255,255,.08); color: rgba(255,255,255,.90); border:1px solid rgba(255,255,255,.12)}
.table{width:100%; border-collapse:collapse}
.table th,.table td{padding:10px; border-bottom:1px solid rgba(255,255,255,.10); font-size:12px}
.table th{color:var(--muted); text-align:left}
.small{font-size:12px; color:var(--muted); line-height:1.4}

/* ===== Header nav alignment improvements ===== */
.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
      justify-content: center;
}

.nav a.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:38px;
  border-radius:999px;
  padding:10px 14px;
}

@media (max-width: 520px){
  .nav{ width:100%; }
  .nav a.btn, .nav .chip{
    flex: 1 1 calc(50% - 10px);
    text-align:center;
  }
}

/* ===== Timer highlight ===== */
.timerChip strong{
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255,209,102,.22);
}
.timerChip.danger strong{
  color: var(--bad);
  text-shadow: 0 0 18px rgba(255,77,109,.22);
}
.timerChip.pulse{
  animation: pulse 0.9s ease-in-out infinite;
}
@keyframes pulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.04); }
  100%{ transform: scale(1); }
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 42px;
  width: auto;
}

.brandText {
  font-size: 23px;
  font-weight: 700;
  background: linear-gradient(135deg, #43f3a6, #6aa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile */
@media (max-width: 480px) {
  .brand img {
    height: 30px;
  }

  .brandText {
    font-size: 23px;
  }
}
.brandLogo img {
  max-width: 140px;
}

@media (max-width: 480px) {
  .brandLogo img {
    max-width: 110px;
  }
}
.limpoLogo {
  display: flex;
  align-items: center;
  gap: 6px;     /* very small gap */
  padding: 0;
  margin: 0;
}

.logoIcon {
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
}

.logoIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logoText {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  padding: 0;
}