/* ページ全体の基本設定 */
body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
        url('カオス告白.png') no-repeat center center fixed;
    background-size: cover;
}

header { text-align: center; margin-bottom: 30px; }

h1 { color: #fff; }
h2 { color: #fff; border-bottom: 2px solid #fff; padding-bottom: 5px; }

.card { 
    background: #fff; 
    padding: 20px; 
    margin-bottom: 15px; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    color: #333; 
}

#conclusion { 
    background: #e8f6f3; 
    padding: 20px; 
    border-radius: 8px; 
    margin-top: 30px; 
}

/* ★画像表示用の設定（重要） */
#image-container {
    text-align: center;
    margin-top: 20px;
    /* display: none; はHTML側でインラインで指定するためここでは不要 */
}

#image-container img {
    margin-top: 10px;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 15px;
    max-width: 100%;
}