:root{
  --bg:#0b0f17;
  --card:#0f1624;
  --line:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.65);
  --accent:#ff8a00;
}

*{box-sizing:border-box}
body{
  margin:0;
  background:radial-gradient(1200px 600px at 20% -10%, rgba(255,138,0,.18), transparent 60%), var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

main{
  max-width: 980px;
  margin: 28px auto;
  padding: 0 16px 40px;
}

.section{ margin: 18px 0 26px; }

.section-title{
  display:inline-block;
  margin: 0 0 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255,138,0,.95), rgba(255,138,0,.78));
  color:#1b1205;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}

.box{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.row{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-top: 1px solid var(--line);
}
.row:first-child{ border-top: 0; }

.left{
  display:flex;
  gap:12px;
  align-items:center;
  min-width: 0;
}

.logo{
  width:120px;
  height:40px;
  object-fit:contain;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  flex: 0 0 auto;
}

.desc{
  color: var(--muted);
  line-height: 1.35;
  font-size: 14px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width: 640px;
}

.btn{
  flex: 0 0 auto;
  text-decoration:none;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight: 650;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
}

.empty{
  padding: 16px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}
