/* ①アクセント色（h2の左線など） */
.page-tools{
  --accent: #4dff7a;
}

/* ②カード背景グラデ（色味） */
.page-tools .card{
  background: linear-gradient(135deg,
    rgba(173, 255, 193, 0.6),
    rgba(205, 200, 255, 0.35)
  );
}

/*NEW game 発光カラー*/
.page-tools .tag-new{
  text-shadow:
    0 0 4px #ff79c6,
    0 0 8px #ff79c6,
    0 0 12px #ff79c6,
    0 0 16px #ff1493;
}

.page-tools .section h2{

  border-left: 5px solid var(--accent, #4da3ff);
}