@charset "UTF-8";

/* 全体リセットと基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffb0d0; /* 淡いピンクの文字 */
    font-family: "MS PGothic", "ＭＳ Ｐゴシック", "Osaka", Arial, sans-serif;
    font-size: 12px; /* 当時らしい小さめのフォント */
    line-height: 1.4;
    background-image: 
        linear-gradient(0deg, transparent 24%, #1a1a1a 25%, #1a1a1a 26%, transparent 27%, transparent 74%, #1a1a1a 75%, #1a1a1a 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, #1a1a1a 25%, #1a1a1a 26%, transparent 27%, transparent 74%, #1a1a1a 75%, #1a1a1a 76%, transparent 77%, transparent);
    background-size: 50px 50px; /* グリッド背景 */
}

/* リンク設定 */
a {
    color: #ff69b4; /* 濃いピンク */
    text-decoration: none;
    border-bottom: 1px dotted #ff69b4;
}

a:hover {
    color: #ffffff;
    background-color: #ff1493;
    text-decoration: none;
    cursor: help; /* カーソルを？マークにする遊び心 */
}

/* コンテナ（横幅固定） */
.container {
    width: 800px; /* 2010年頃の標準的な幅 */
    margin: 0 auto;
    background-color: #0a0a0a;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
}

/* ヘッダー */
header {
    text-align: center;
    padding: 30px 0;
    background: repeating-linear-gradient(
        45deg,
        #000,
        #000 10px,
        #111 10px,
        #111 20px
    );
    border-bottom: 3px double #ff69b4;
}

header h1 {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 0 0 10px #ff1493, 0 0 5px #ff69b4;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 10px;
    color: #aaa;
}

/* マーキーエリア */
.marquee-box {
    background-color: #ff1493;
    color: #fff;
    font-weight: bold;
    padding: 3px;
    font-size: 11px;
}

/* レイアウト（サイドバー + メイン） */
.main-area {
    display: flex;
    padding: 10px;
    gap: 10px;
}

/* サイドバー */
.sidebar {
    width: 200px;
    flex-shrink: 0;
}

.box {
    border: 1px dashed #ff69b4;
    margin-bottom: 15px;
    background-color: #000;
    padding: 5px;
}

.box h3 {
    background-color: #333;
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 3px;
    margin-bottom: 5px;
    border-left: 3px solid #ff69b4;
}

.profile-pic {
    text-align: center;
    margin-bottom: 5px;
}

.dummy-img {
    width: 100px;
    height: 100px;
    background-color: #222;
    border: 1px solid #444;
    color: #555;
    line-height: 100px;
    margin: 0 auto;
    font-size: 10px;
}

.sidebar ul {
    list-style: none;
    padding-left: 5px;
}

.sidebar li {
    font-size: 11px;
    margin-bottom: 3px;
}

.sidebar li::before {
    content: "† ";
    color: #ff1493;
}

/* カウンター */
.counter-display {
    background-color: #000;
    border: 1px inset #555;
    color: #ff1493;
    font-family: "Courier New", monospace;
    text-align: center;
    font-size: 14px;
    letter-spacing: 3px;
    margin: 5px 0;
}

.counter-text {
    font-size: 10px;
    text-align: center;
}

/* メインコンテンツ */
.content {
    flex-grow: 1;
}

.entry {
    margin-bottom: 20px;
    border: 1px solid #333;
    background-color: #050505;
}

.entry-header {
    background-color: #111;
    border-bottom: 1px dotted #333;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.entry-header h2 {
    font-size: 13px;
    color: #ffcae0;
}

.entry-header .date {
    font-size: 10px;
    color: #666;
}

.entry-body {
    padding: 15px;
    font-size: 12px;
}

/* 隠し文字（当時の文化） */
.hidden-text {
    color: #050505; /* 背景色と同じにして隠す */
}

.hidden-text::selection {
    background: #ff1493;
    color: #fff;
}

/* バナーエリア */
.banner-area {
    text-align: center;
    margin-top: 10px;
}

.banner {
    display: inline-block;
    width: 200px;
    height: 40px;
    background-color: #ff69b4;
    color: #000;
    line-height: 40px;
    font-weight: bold;
    border: 1px solid #fff;
    font-size: 10px;
}

/* フッター */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #555;
    font-size: 10px;
}

/* スクロールバーのカスタマイズ (Webkit系) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #000; 
}
::-webkit-scrollbar-thumb {
    background: #ff1493; 
    border-radius: 5px;
}