
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Arial,sans-serif;
}

body{
  background:#0b1020;
  color:#fff;
  min-height:100vh;
}

.app{
  padding:20px;
}

.hero{
  margin-bottom:20px;
}

.hero h1{
  font-size:32px;
  margin-bottom:10px;
}

.hero p{
  opacity:.7;
}

.card{
  background:#141b34;
  border-radius:24px;
  padding:20px;
  margin-bottom:20px;
}

input{
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  margin-bottom:12px;
  background:#1f2745;
  color:#fff;
}

.btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  background:#4f7cff;
  color:#fff;
  font-weight:bold;
  margin-top:10px;
}

.secondary{
  background:#1f2745;
}

.kpis{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:20px;
}

.kpi{
  background:#141b34;
  border-radius:20px;
  padding:16px;
}

.match{
  display:flex;
  align-items:center;
  gap:12px;
}

.ranking-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.alert{
  background:rgba(255,80,80,.16);
  border:1px solid rgba(255,80,80,.35);
  color:#fff;
  padding:14px;
  border-radius:16px;
  margin-bottom:16px;
}
.link-btn{
  display:block;
  text-align:center;
  text-decoration:none;
}
.ranking-item + .ranking-item{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}


.install-gate{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,177,48,.26), transparent 32%),
    linear-gradient(180deg, #070b18 0%, #0b1020 100%);
}

.install-gate.is-hidden,
.is-hidden{
  display:none !important;
}

.install-card{
  width:100%;
  max-width:360px;
  text-align:center;
  background:rgba(20,27,52,.86);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 80px rgba(0,0,0,.45), 0 0 80px rgba(255,177,48,.12);
  border-radius:28px;
  padding:30px 22px;
  backdrop-filter:blur(18px);
}

.install-logo,
.brand-logo{
  width:126px;
  height:126px;
  object-fit:cover;
  border-radius:32px;
  display:block;
  margin:0 auto 18px;
  box-shadow:0 0 36px rgba(255,177,48,.42);
}

.install-card h1,
.brand-splash h1{
  font-size:26px;
  line-height:1.05;
  margin-bottom:10px;
}

.install-card p,
.brand-splash p{
  opacity:.76;
  line-height:1.45;
  margin-bottom:18px;
}

.install-help{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.84);
  font-size:13px;
  line-height:1.45;
}

.login-shell{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.brand-splash{
  text-align:center;
  margin-bottom:22px;
}

.is-blurred{
  filter:blur(10px);
  pointer-events:none;
  user-select:none;
}

.desktop-lock{
  min-height:100vh;
  background:#0b1020;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:32px;
  font-family:Arial,sans-serif;
}

.desktop-lock img{
  width:118px;
  height:118px;
  border-radius:30px;
  margin-bottom:18px;
}
