/* リンク一覧ページ専用のスタイル */

.page-title {
  margin: 1rem 0 2.5rem;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-align: center;
  background: linear-gradient(120deg, #fff 30%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* 各リンクアイテムのカード */
.link-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s, border-color 0.2s;
}

.link-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.link-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.link-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ボタン横並びレイアウト */
.link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* YouTube動画リンク用サブボタン */
.btn-youtube-secondary {
  background: rgba(255, 77, 109, 0.15);
  color: #ff4d6d;
  border: 1px solid rgba(255, 77, 109, 0.4);
}

.btn-youtube-secondary:hover {
  background: rgba(255, 77, 109, 0.3);
  color: #ffffff;
}