/* =============================================================
   profile.css — ゆきねこ プロフィールページ
   ============================================================= */

.profile-main {
  padding: 24px 20px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ヒーローバナー */
.profile-hero {
  text-align: center;
  margin-bottom: 32px;
  padding: 32px 20px 24px;
  background: linear-gradient(135deg, rgba(124,58,237,.15) 0%, rgba(59,130,246,.15) 100%);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(168,85,247,.18) 0%, transparent 65%);
  pointer-events: none;
}
.profile-hero-name {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.profile-hero-ruby {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.profile-hero-catch {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(124,58,237,.12);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(124,58,237,.2);
}

/* メインレイアウト */
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .profile-layout { grid-template-columns: 1fr; }
}

/* キャラクター画像カード */
.profile-image-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-image-wrap {
  background: linear-gradient(160deg, #1e1040 0%, #0d1a3a 50%, #1a0d2e 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.profile-image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(168,85,247,.25) 0%, transparent 65%);
  border-radius: 50%;
}
.profile-image-wrap img {
  position: relative;
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 24px rgba(168,85,247,.4));
}
.profile-image-label {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.profile-status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}
.profile-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse 2s infinite;
}

/* プロフィール情報カード */
.profile-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profile-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

/* 基本情報グリッド */
.profile-basics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .profile-basics { grid-template-columns: 1fr; }
}
.profile-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.profile-item.full-width { grid-column: 1 / -1; }
.profile-item-icon { font-size: 18px; flex-shrink: 0; line-height: 1.4; }
.profile-item-label { font-size: 10px; color: var(--text-dim); margin-bottom: 2px; }
.profile-item-value { font-size: 13px; color: var(--text); font-weight: 500; line-height: 1.4; }

/* 口癖 */
.profile-phrases {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.phrase-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--text);
}
.phrase-bubble-tag {
  font-size: 10px;
  color: var(--accent-light);
  background: rgba(124,58,237,.15);
  padding: 2px 6px;
  border-radius: 10px;
}

/* 好き/苦手 */
.profile-likes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .profile-likes-grid { grid-template-columns: 1fr; }
}
.profile-list-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.profile-list-header {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.profile-list-header.likes { color: #f472b6; }
.profile-list-header.dislikes { color: #94a3b8; }
.profile-list-items { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.profile-list-items li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-list-items li::before { content: '♪'; font-size: 11px; color: var(--accent-light); flex-shrink: 0; }
.profile-list-items.dislikes li::before { content: '~'; color: var(--text-dim); }

/* 夢バナー */
.profile-dream-banner {
  background: linear-gradient(135deg, rgba(124,58,237,.12) 0%, rgba(59,130,246,.12) 100%);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-dream-icon { font-size: 28px; flex-shrink: 0; }
.profile-dream-text { font-size: 13px; color: var(--text); line-height: 1.6; }
.profile-dream-text strong { color: #c084fc; }

/* バックストーリー */
.profile-story-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.profile-story-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.profile-story-text em { color: #c084fc; font-style: normal; font-weight: 600; }

/* SNSリンク */
.profile-sns-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.profile-sns-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  border: 1px solid transparent;
}
.sns-link:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.sns-link.youtube { background: rgba(255,0,0,.12); border-color: rgba(255,0,0,.3); color: #f87171; }
.sns-link.twitter { background: rgba(29,161,242,.12); border-color: rgba(29,161,242,.3); color: #60a5fa; }
.sns-link.tiktok { background: rgba(0,0,0,.3); border-color: rgba(255,255,255,.1); color: var(--text); }
.sns-link-icon { font-size: 18px; }

/* フッター */
.profile-footer-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
