/* 外枠：暗闇に溶け込むネオンの縁取り */
.night-neon-panel {
    margin: 20px auto;
    max-width: 500px;
    background: #0a0a0a;
    border: 1px solid #ff7eb9; /* 落ち着いたピンク */
    border-radius: 12px;
    /* 外側への柔らかい発光効果 */
    box-shadow: 0 0 15px rgba(255, 126, 185, 0.2), inset 0 0 10px rgba(255, 126, 185, 0.1);
    overflow: hidden;
}

.neon-anchor {
    display: block;
    padding: 25px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.neon-anchor:hover {
    background: #121212;
    box-shadow: inset 0 0 20px rgba(255, 126, 185, 0.05);
}

/* ライブバッジ：点滅するネオン */
.neon-live-badge {
    color: #ff7eb9;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.neon-pulse {
    width: 8px;
    height: 8px;
    background-color: #ff7eb9;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #ff7eb9;
    animation: neon-blink 1.5s infinite;
}

@keyframes neon-blink {
    0% { opacity: 1; box-shadow: 0 0 8px #ff7eb9; }
    50% { opacity: 0.4; box-shadow: 0 0 2px #ff7eb9; }
    100% { opacity: 1; box-shadow: 0 0 8px #ff7eb9; }
}

/* テキスト部分 */
.neon-title {
    color: #ffffff;
    font-size: 19px;
    margin: 0 0 10px 0;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.neon-text {
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ボタン：ネオンピンクのグローボタン */
.neon-button {
    background: transparent;
    color: #ff7eb9;
    border: 1px solid #ff7eb9;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(255, 126, 185, 0.3);
    transition: all 0.3s ease;
}

/* ホバー時にボタンを塗りつぶして発光させる */
.neon-anchor:hover .neon-button {
    background: #ff7eb9;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 126, 185, 0.6);
}

/* レスポンシブ */
@media (max-width: 480px) {
    .night-neon-panel { margin: 15px; }
    .neon-title { font-size: 17px; }
}