:root{
  --bg:#0b0f19;
  --panel:#141a2a;
  --panel2:#0f1526;
  --text:#ffffff;
  --muted:rgba(255,255,255,.65);
  --muted2:rgba(255,255,255,.45);
  --accent:#7e7fff;
  --warn:#fffe7e;
  --danger:#ff4d4d;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius:16px;
}

*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 10%, rgba(126,127,255,.22), transparent 60%),
              radial-gradient(1000px 700px at 80% 20%, rgba(255,254,126,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.wrap{
  width:min(980px, 100%);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:44px;height:44px;border-radius:14px;
  background: linear-gradient(135deg, rgba(126,127,255,1), rgba(255,254,126,1));
  box-shadow: 0 10px 35px rgba(126,127,255,.25);
}
.brand h1{
  font-size:18px;
  margin:0;
  letter-spacing:.3px;
}
.brand .sub{
  font-size:12px;
  color:var(--muted2);
}

.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}

.card{
  background: linear-gradient(180deg, rgba(20,26,42,1), rgba(15,21,38,1));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card .hd{
  padding:18px 18px 0 18px;
}
.card .hd h2{
  margin:0;
  font-size:18px;
}
.card .hd p{
  margin:8px 0 0 0;
  color:var(--muted);
  font-size:13px;
}

.card .bd{
  padding:18px;
}

.pills{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:10px;
}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  background: rgba(255,255,255,.03);
}

.btns{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:14px;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-decoration:none;
  padding:14px 14px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:700;
  transition: transform .08s ease, opacity .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(126,127,255,.5);
}
.btn small{
  color:var(--muted);
  font-weight:600;
}

.btn.google{ background: rgba(234,67,53,.12); border-color: rgba(234,67,53,.25); }
.btn.microsoft{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.btn.primary{ background: rgba(126,127,255,.16); border-color: rgba(126,127,255,.35); }

.notice{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size:13px;
}
.notice.warn{
  border-color: rgba(255,254,126,.35);
  background: rgba(255,254,126,.08);
}
.notice.danger{
  border-color: rgba(255,77,77,.35);
  background: rgba(255,77,77,.08);
}

.tilegrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:10px;
}

.tile{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.tile .t{
  font-weight:800;
}
.tile .d{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration:none;
  font-weight:700;
}
.a:hover{ border-color: rgba(126,127,255,.5); }

.footer{
  margin-top:14px;
  color: var(--muted2);
  font-size:12px;
  text-align:center;
  line-height:1.6;
}

@media (max-width: 860px){
  .grid{ grid-template-columns:1fr; }
}
