@charset "UTF-8";

/* 未購入動画のオーバーレイスタイル */
.movie-not-purchase-area {
    position: relative;
}

.movie-not-purchase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    z-index: 10;
}

.movie-not-purchase-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

.movie-not-purchase-button a {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.movie-not-purchase-button a:hover {
    background: #0056b3;
}
