.shortcut-section { margin-top: 48px; margin-bottom: 8px; }
.shortcut-section .section-header { margin-bottom: 20px; }
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .shortcut-grid { grid-template-columns: 1fr; }
}
.shortcut-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.shortcut-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.14); transform: translateY(-2px); }
.shortcut-card__head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  font-size: 22px; font-weight: 700; color: #fff;
  text-decoration: none;
}
.shortcut-card__head:hover { color: #fff; opacity: 0.92; }
.shortcut-card--health .shortcut-card__head  { background: linear-gradient(135deg,#43a047,#66bb6a); }
.shortcut-card--games  .shortcut-card__head  { background: linear-gradient(135deg,#1e88e5,#42a5f5); }
.shortcut-card--tools  .shortcut-card__head  { background: linear-gradient(135deg,#e53935,#ef9a9a); }
.shortcut-card--today  .shortcut-card__head  { background: linear-gradient(135deg,#f57c00,#ffb74d); }
.shortcut-card__head .sc-icon { font-size: 22px; flex-shrink: 0; }
.shortcut-card__body { background: var(--bg-alt,#f9f9f9); padding: 10px 14px 14px; }
.shortcut-card__body a {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 6px; font-size: 20px; color: #444;
  border-radius: 6px; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.shortcut-card__body a:hover { background: #e8f5e9; color: #2e7d32; }
.shortcut-card--games  .shortcut-card__body a:hover { background: #e3f2fd; color: #1565c0; }
.shortcut-card--tools  .shortcut-card__body a:hover { background: #fce4ec; color: #b71c1c; }
.shortcut-card--today  .shortcut-card__body a:hover { background: #fff3e0; color: #e65100; }
.shortcut-card__body a .sc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ccc; flex-shrink: 0;
}
.shortcut-card--health .shortcut-card__body a .sc-dot { background: #66bb6a; }
.shortcut-card--games  .shortcut-card__body a .sc-dot { background: #42a5f5; }
.shortcut-card--tools  .shortcut-card__body a .sc-dot { background: #ef9a9a; }
.shortcut-card--today  .shortcut-card__body a .sc-dot { background: #ffb74d; }