/* 再生ボタンの強化スタイル */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(100, 149, 237, 0.6);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
}

#pv-play {
    animation: pulse-glow 2s infinite;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 1px;
}

#pv-play:before {
    content: "▶";
    margin-right: 8px;
    font-size: 1.2em;
}

/* スマートフォン対応 */
@media (max-width: 768px) {
    #pv-play {
        padding: 10px 20px;
        font-size: 16px;
    }
}
