:root {
  --bg: #0A0B0C;
  --text: #B8C1CC;
  --muted: #7C8893;
  --good: #3da37a;
  --bad: #a35b5b;
  --card: #0F1113;
  --bar: #1a1d21;
}
*{box-sizing:border-box}
html,body{height:100%;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",sans-serif;margin:0}
.header{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;border-bottom:1px solid #13161a}
.header h1{font-size:18px;margin:0}
.clock{opacity:.9}
main{max-width:1200px;margin:0 auto;padding:12px 16px}
.headlines{display:flex;flex-direction:column;gap:10px;margin-bottom:12px}
.headline{background:var(--card);padding:12px 14px;border-radius:10px}
.row{display:flex;align-items:center;gap:12px}
.dot{width:10px;height:10px;border-radius:50%;flex:0 0 auto}
.title{flex:1 1 auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.badge{font-size:13px;opacity:.9}
.agebar{height:3px;background:var(--bar);border-radius:3px;margin-top:6px;overflow:hidden}
.agebar-fill{height:100%;}

.market-row{display:flex;gap:12px}
.market-card{flex:1;background:var(--card);padding:10px 12px;border-radius:10px}
.market-title{font-weight:600;margin-bottom:4px}
.market-value{font-size:18px}
.delta{font-size:14px;opacity:.9;margin-left:6px}
.pill{padding:2px 8px;border-radius:999px;background:#1b232b}
.reason{margin-left:8px;opacity:.9}
.market-countdown{margin:6px 0 2px 0;opacity:.9}

@media (max-width: 800px){
  .market-row{flex-direction:column}
}
/* Make links inherit the grey and remove default blue/underline */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

/* Bigger headline text */
.title { 
  font-size: 18px;          /* was default; bump up */
  line-height: 1.3;
}
