:root{
  --bg:#0b0f1a;
  --card:#11172a;
  --text:#e9eef6;
  --muted:#aab5c7;
  --accent:#ffd166;
  --border:rgba(255,255,255,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  background: radial-gradient(1200px 800px at 10% -10%, #172033 0%, var(--bg) 30%) no-repeat;
  color: var(--text);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
}
.container{
  width:100%;
  max-width:980px;
}
.header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
}
.header img{
  width:52px;height:52px;object-fit:contain;border-radius:12px;
}
.header h1{font-size: clamp(22px, 3vw, 32px); margin:0; font-weight:800; letter-spacing:.2px}
.header p{margin:2px 0 0; color: var(--muted); font-size:14px}

.grid{
  display:grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap:14px;
}
@media (min-width: 560px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 900px){
  .grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.card{
  display:flex;align-items:center;gap:14px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  text-decoration:none;
  color:inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.card .logo{
  width:42px;height:42px;border-radius:10px;object-fit:contain;background:#fff;padding:6px;
}
.card .content{flex:1; min-width:0;}
.card h3{margin:0 0 4px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.card .cta{
  padding:8px 12px; border:1px solid var(--border); border-radius:10px; font-size:13px; color:#111; background:var(--accent); font-weight:700;
}

.footer{
  margin-top:22px;
  display:flex; justify-content:space-between; gap:10px; align-items:center; flex-wrap:wrap;
  color:var(--muted); font-size:12px
}
.footer .powered{display:flex; align-items:center; gap:8px}
.footer .powered img{height:22px; width:auto; object-fit:contain; background:#fff; border-radius:6px; padding:2px}
.notice{font-size:12px; color:var(--muted); opacity:.85}