.live-stream-feature {
    margin: 20px auto;
    max-width: 500px;
    padding: 2px;
    background: linear-gradient(45deg, #a020f0, #ff007f);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.4); 
}

.live-inner-box {
    display: block;
    background: #121212; /* 真っ黒より少し明るい黒 */
    padding: 20px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.3s;
}

.live-inner-box:hover {
    background: #1a1a1a;
}

.live-status-tag {
    font-size: 11px;
    color: #ff007f;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff007f;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 5px #ff007f;
    animation: blink 1.2s infinite; /* 点滅アニメーション */
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.live-title {
    color: #fff;
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.live-desc {
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.live-action-btn {
    background: linear-gradient(90deg, #a020f0, #ff007f);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.3);
}

@media (max-width: 480px) {
    .live-stream-feature {
        margin: 15px;
    }
    .live-title {
        font-size: 16px;
    }
}