.fifteenday-restricted-video {
    position: relative;
    margin: 0 auto;
    background-color: #000;
    border-radius: 6px;
    overflow: hidden;
}

.fifteenday-restriction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.fifteenday-restriction-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.fifteenday-lock-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.fifteenday-lock-icon svg {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.fifteenday-restriction-message {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
    max-width: 80%;
}

.fifteenday-restriction-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.fifteenday-restriction-message p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

.fifteenday-action-button {
    display: inline-block;
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.fifteenday-action-button:hover {
    background-color: #005c87;
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}