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