/* =============================================
 * Hatena Blog: Crystal Neon Gold (High-Brightness)
 * ============================================= */

/* 1. 全体のベース：深い闇と光のコントラスト */
body {
    background-color: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, #151515 0%, #000000 100%) !important;
    color: #fff9e6 !important; /* 明るいシャンパンゴールド */
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* 2. メインエリア：透明度の高いブラックスチール */
#content, #main, .entry {
    background: transparent !important;
}

.entry-inner {
    background: rgba(20, 20, 20, 0.6) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    border-radius: 24px;
    padding: 40px !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 1) !important;
    margin-bottom: 50px !important;
}

/* 3. 記事タイトル：眩い光を放つ金色のネオン */
.entry-title, .entry-title a {
    color: #ffffff !important; /* 文字自体を白くして発光を強調 */
    font-weight: 900 !important;
    font-size: 2.2rem !important;
    text-decoration: none !important;
    /* 黒縁 + 多層構造の金色の光 */
    text-shadow: 
        1px 1px 0 #000, -1px -1px 0 #000,
        -1px 1px 0 #000, 1px -1px 0 #000,
        0px 0px 10px #ffd700, 
        0px 0px 25px #ffd700,
        0px 0px 45px rgba(255, 215, 0, 0.6) !important;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* タイトルホバー：光が炸裂する演出 */
.entry-title a:hover {
    color: #ffffff !important;
    text-shadow: 
        1px 1px 0 #000, -1px -1px 0 #000,
        0px 0px 30px #ffffff, 
        0px 0px 60px #ffd700, 
        0px 0px 90px #ffd700 !important;
    letter-spacing: 1px;
}

/* 4. 本文の全文章：クッキリ光るネオンゴールド */
.entry-content p, .entry-content li, .entry-content h1, .entry-content h2, .entry-content h3 {
    color: #fff9e6 !important;
    font-weight: 700 !important;
    line-height: 2.2 !important;
    /* 全文に黒縁と明るい光を反映 */
    text-shadow: 
        1px 1px 0 #000, -1px -1px 0 #000,
        -1px 1px 0 #000, 1px -1px 0 #000,
        0px 0px 8px rgba(255, 215, 0, 0.8) !important;
    margin-bottom: 1.5em;
}

/* 本文ホバー：触れた場所がさらに明るく光る */
.entry-content p:hover, .entry-content li:hover {
    color: #ffffff !important;
    text-shadow: 
        1px 1px 0 #000, -1px -1px 0 #000,
        0px 0px 15px #ffd700 !important;
}

/* 5. リンク：激しく明滅しながら流れる光の線 */
.entry-content a {
    color: #ffffff !important;
    text-decoration: none !important;
    position: relative;
    font-weight: 800;
}

.entry-content a::after {
    content: "";
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #fff, #ffd700, #fff, transparent);
    background-size: 200% 100%;
    animation: gold-flash 1.5s linear infinite;
    box-shadow: 0 0 15px #ffd700;
}

@keyframes gold-flash {
    0% { background-position: 200% 0%; filter: brightness(1); }
    50% { filter: brightness(2); }
    100% { background-position: -200% 0%; filter: brightness(1); }
}

/* 6. サイドバー：クリスタルゴールドパネル */
.hatena-module {
    background: rgba(30, 30, 30, 0.4) !important;
    border: 1px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 15px;
    padding: 20px !important;
    backdrop-filter: blur(10px);
}

.hatena-module-title {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-align: center;
    text-shadow: 1px 1px 0 #000, 0 0 15px #ffd700 !important;
    border: none !important;
    letter-spacing: 4px;
}