/* 全体のベース設定（漆黒の背景と白文字） */
body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.kuzu-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #000;
    padding-bottom: 30px;
}

/* ヒーロー画像用スタイル */
.hero-section {
    width: 100%;
    text-align: center;
    background-color: #000;
}
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 共通タイトル */
.section-title { 
    text-align: center; 
    color: #FFD700; 
    font-size: 1.8em; 
    margin: 40px 0 20px; 
    letter-spacing: 2px; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); 
    border-bottom: 1px solid #333; 
    padding-bottom: 10px; 
}

/* ABOUT セクション */
.about-box { 
    background: rgba(0,0,0,0.8); 
    border: 1px solid #333; 
    padding: 20px; 
    margin: 0 15px; 
    border-radius: 10px; 
    line-height: 1.8; 
    font-size: 0.9em; 
}
.about-highlight {
    text-align: center; 
    font-weight: bold; 
    color: #FFD700; 
    margin-top: 20px;
}

/* メンバーセクション（縦並び） */
.members-container { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    padding: 0 15px; 
}
.member-card {
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    padding: 20px;
}
.orange-neon { border: 1px solid #FFA500; box-shadow: inset 0 0 10px #FFA500, 0 0 10px #FFA500;}
.red-neon    { border: 1px solid #FF0000; box-shadow: inset 0 0 10px #FF0000, 0 0 10px #FF0000;}
.blue-neon   { border: 1px solid #0088FF; box-shadow: inset 0 0 10px #0088FF, 0 0 10px #0088FF;}
.green-neon  { border: 1px solid #00FF00; box-shadow: inset 0 0 10px #00FF00, 0 0 10px #00FF00;}
.purple-neon { border: 1px solid #8A2BE2; box-shadow: inset 0 0 10px #8A2BE2, 0 0 10px #8A2BE2;}
.recruit-card { border-style: dashed; text-align: center; }

.member-name { font-size: 1.5em; margin: 0 0 10px 0; }

.live-badge {
    color: #fff;
    font-size: 0.8em;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 15px;
}
.king-badge { background-color: #f00; }
.mother-badge { background-color: #ff1493; }
.recruit-badge { background-color: #0088FF; }
.green-badge { background-color: #00FF00; color: #000; }
.blue-badge { background-color: #0088FF; }
.purple-badge { background-color: #8A2BE2; }

/* Kick埋め込みプレイヤーをレスポンシブにする魔法 */
.kick-player-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9の比率を維持 */
    height: 0;
    overflow: hidden;
    margin: 15px 0;
    border-radius: 5px;
    background: #000;
}

.kick-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.member-desc { text-align: left; font-size: 0.85em; line-height: 1.6; margin: 0 0 15px 0; color: #ddd; }
.member-catch { font-weight: bold; color: #fff; display: block; margin-bottom: 10px; font-size: 1.1em;}

/* SNS & ボタン群 */
.sns-links { display: flex; gap: 10px; justify-content: center; /* 中央寄せ */ }
.sns-btn {
    display: inline-block; /* リンクタグ化に対応 */
    text-decoration: none; /* リンクの下線を消す */
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 8px 15px;
    font-size: 0.85em;
    border-radius: 3px;
    cursor: pointer;
    box-sizing: border-box; /* パディングを含めたサイズ計算 */
    text-align: center; /* テキストを中央寄せ */
}
.sns-btn:hover {
    opacity: 0.8; /* ホバー時に少し透明にする演出 */
}
.kick-btn { background: #00FF00 !important; color: #000 !important; border: none !important; font-weight: bold !important;}
.x-btn { background: #000; border: 1px solid #fff;}

.recruit-btn {
    display: inline-block;
    background: linear-gradient(45deg, #8b0000, #ff0000);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    width: 80%;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px auto 0;
    box-shadow: 0 0 15px #f00;
}
.recruit-btn:hover {
    box-shadow: 0 0 25px #f00; /* ホバー時に光を強くする */
}

/* DIARY セクション */
.diary-box { 
    text-align: center; 
    padding: 30px; 
    background: rgba(0,0,0,0.5); 
    border: 1px dashed #555; 
    margin: 0 15px; 
    color: #888; 
}

/* フッター */
footer { 
    text-align: center; 
    padding: 20px; 
    margin-top: 40px; 
    border-top: 1px solid #333; 
    color: #888; 
    font-size: 0.8em; 
}
.footer-links { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; padding: 0 10px; }