/* 見出し装飾: 左ボーダー + 背景色（深海テーマ: シアン/ティール系） */
.content main h2 {
    border-left: 4px solid #2ec4b6;
    background: rgba(46, 196, 182, 0.08);
    padding: 0.5em 0.8em;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    border-radius: 0 4px 4px 0;
}

.content main h3 {
    border-left: 3px solid #4a90d9;
    background: rgba(74, 144, 217, 0.06);
    padding: 0.4em 0.7em;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    border-radius: 0 3px 3px 0;
}

.content main h4 {
    border-left: 2px solid #f0932b;
    padding: 0.3em 0.6em;
    margin-top: 1.2em;
    margin-bottom: 0.4em;
}

/* リリース前情報の注意ブロック */
.pre-release-notice {
    border-left: 4px solid #f0932b;
    background: rgba(240, 147, 43, 0.08);
    padding: 0.8em 1em;
    margin: 1em 0 1.5em;
    border-radius: 0 4px 4px 0;
    font-size: 0.92em;
}

/* Ko-fi サイドバーリンク */
#kofi-sidebar {
    padding: 1em 1.2em;
    margin-top: 1em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
#kofi-sidebar a {
    color: #ff5e5b;
    text-decoration: none;
    font-size: 0.85em;
    opacity: 0.8;
    transition: opacity 0.2s;
}
#kofi-sidebar a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ページ内見出しをサイドバーに表示しない */
.on-this-page { display: none !important; }

/* サイトフッター */
#site-footer {
    margin-top: 4em;
    padding: 1.5em 0 1em;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    text-align: center;
    font-size: 0.85em;
    opacity: 0.75;
}
#site-footer nav a {
    color: inherit;
    text-decoration: none;
    margin: 0 0.5em;
}
#site-footer nav a:hover {
    text-decoration: underline;
}
#site-footer .sep {
    opacity: 0.4;
}
#site-footer .copyright {
    margin-top: 0.5em;
    font-size: 0.9em;
    opacity: 0.7;
}
