body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: #00ff66; /* サイバー・マトリックス風のグリーン */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

#stream-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* 1つの記事データカード */
.data-card {
    position: relative;
    width: 100%;
    min-height: 50vh; /* テキスト量に合わせて可変、最低でも画面半分 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    box-sizing: border-box;
    border-bottom: 1px solid #111;
}

/* 記事タイトル */
.wiki-title {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* 記事の概要テキスト */
.wiki-extract {
    font-size: 18px;
    line-height: 1.8;
    color: #888;
    max-width: 800px;
}

/* メタ情報 */
.wiki-meta {
    font-family: monospace;
    font-size: 12px;
    color: #00ff66;
    margin-bottom: 10px;
    opacity: 0.7;
}

#sentinel {
    height: 10px;
    width: 100%;
}