/* ============================================
   社長室（開発ログ）専用スタイル
   legal.css の上に追加で読み込む
   ============================================ */

/* 社長の挨拶 */
.ceo-greeting {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0 24px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2;
}

/* 公式リンク */
.official-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 24px;
}

.official-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.official-link:hover {
  border-color: var(--tie-blue-light);
}

.link-icon {
  font-size: 22px;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.link-x .link-icon {
  color: var(--text-main);
}

.link-text {
  font-size: 14px;
  color: var(--text-main);
}

.link-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* セクション説明 */
.section-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 12px;
}

/* 投票リスト */
.vote-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.vote-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  gap: 12px;
}

.vote-item.voted {
  border-color: var(--tie-blue);
}

.vote-info {
  flex: 1;
  min-width: 0;
}

.vote-label {
  font-size: 13px;
  color: var(--text-main);
  font-weight: bold;
}

.vote-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.vote-btn {
  font-family: 'DotGothic16', cursive;
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: transparent;
  color: var(--text-sub);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.vote-btn:hover {
  border-color: var(--tie-blue-light);
  color: var(--tie-blue-light);
}

.vote-btn.voted {
  background: var(--tie-blue);
  border-color: var(--tie-blue);
  color: #fff;
}

/* チェンジログ */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.changelog-entry {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 16px;
}

.changelog-ver {
  font-size: 14px;
  font-weight: bold;
  color: var(--tie-blue-light);
  margin-bottom: 6px;
}

.changelog-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 8px;
}

.changelog-title {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.changelog-body ul {
  margin: 0;
  padding-left: 18px;
}

.changelog-body li {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 3px;
  line-height: 1.6;
}
