@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: transparent;
  color: #fff;
  overflow: hidden;
}

.widget {
  position: relative;
  width: var(--w, 460px);
  padding: var(--p, 20px 22px);
  border-radius: var(--r, 16px);
  background: linear-gradient(160deg, rgba(17,20,26,0.92), rgba(11,13,17,0.92));
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--accent, #ff4655);
  box-shadow: 0 18px 50px rgba(0,0,0,0.54), inset 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  font-size: calc(1em * var(--font-scale, 1));
}

.hub { max-width: 820px; margin: 0 auto; padding: 24px; }
.hub h1 { font-size: 1.6em; font-weight: 800; margin-bottom: 6px; }
.hub p.sub { color: #9ca3af; font-size: 0.9em; margin-bottom: 18px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.card {
  background: linear-gradient(160deg, rgba(17,20,26,0.92), rgba(11,13,17,0.92));
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--accent, #ff4655);
  border-radius: var(--r, 16px);
  padding: 18px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px rgba(255,255,255,0.08);
}
.card h3 { font-size: 1.05em; font-weight: 700; margin-bottom: 4px; }
.card p { color: #9ca3af; font-size: 0.85em; }
